diff --git a/config/production.env b/config/production.env index 7d905d14..5374f99a 100644 --- a/config/production.env +++ b/config/production.env @@ -10,7 +10,7 @@ NYPL_OAUTH_URL=https://isso.nypl.org/ ENCRYPTED_NYPL_OAUTH_ID=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGswaQYJKoZIhvcNAQcGoFwwWgIBADBVBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDMLKVUQA58B6vprNcAIBEIAoaz0lI9EL2M9NyTuEwT8JDmPBt6aXfMiFs027DEuwsCN0wS0qWeFL1g== ENCRYPTED_NYPL_OAUTH_SECRET=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAIcwgYQGCSqGSIb3DQEHBqB3MHUCAQAwcAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyWz91LOP2YP5fg0q0CARCAQ9inO9SV1M8R0Pkkx84r7UdwlU1FxfXvIjk/z6Qs81KBAVELhby2iD5LawQyDrR9tjhuMbotS6QnydwwMR/p8+qJXHI= -NYPL_CORE_VERSION=v2.21 +NYPL_CORE_VERSION=v2.22 LOG_LEVEL=info FEATURES=on-site-edd diff --git a/config/qa.env b/config/qa.env index 29c54603..186c4579 100644 --- a/config/qa.env +++ b/config/qa.env @@ -10,7 +10,7 @@ NYPL_OAUTH_URL=https://isso.nypl.org/ ENCRYPTED_NYPL_OAUTH_ID=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAGswaQYJKoZIhvcNAQcGoFwwWgIBADBVBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDMLKVUQA58B6vprNcAIBEIAoaz0lI9EL2M9NyTuEwT8JDmPBt6aXfMiFs027DEuwsCN0wS0qWeFL1g== ENCRYPTED_NYPL_OAUTH_SECRET=AQECAHh7ea2tyZ6phZgT4B9BDKwguhlFtRC6hgt+7HbmeFsrsgAAAIcwgYQGCSqGSIb3DQEHBqB3MHUCAQAwcAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAyWz91LOP2YP5fg0q0CARCAQ9inO9SV1M8R0Pkkx84r7UdwlU1FxfXvIjk/z6Qs81KBAVELhby2iD5LawQyDrR9tjhuMbotS6QnydwwMR/p8+qJXHI= -NYPL_CORE_VERSION=v2.21 +NYPL_CORE_VERSION=v2.22 LOG_LEVEL=info FEATURES=on-site-edd diff --git a/lib/elasticsearch/config.js b/lib/elasticsearch/config.js index 4427b529..0efe1a30 100644 --- a/lib/elasticsearch/config.js +++ b/lib/elasticsearch/config.js @@ -74,6 +74,7 @@ const SEARCH_SCOPES = { } const FILTER_CONFIG = { + recordType: { operator: 'match', field: 'recordTypeId', repeatable: true }, owner: { operator: 'match', field: 'items.owner_packed', repeatable: true, path: 'items' }, subjectLiteral: { operator: 'match', field: 'subjectLiteral_exploded', repeatable: true }, holdingLocation: { operator: 'match', field: 'items.holdingLocation_packed', repeatable: true, path: 'items' }, diff --git a/lib/jsonld_serializers.js b/lib/jsonld_serializers.js index 6e743478..3f24c06b 100644 --- a/lib/jsonld_serializers.js +++ b/lib/jsonld_serializers.js @@ -1,6 +1,7 @@ 'use strict' const locations = require('@nypl/nypl-core-objects')('by-sierra-location') +const recordTypes = require('@nypl/nypl-core-objects')('by-record-types') const NyplSourceMapper = require('research-catalog-indexer/lib/utils/nypl-source-mapper') const util = require('./util.js') @@ -76,8 +77,9 @@ class JsonLdItemSerializer extends JsonLdSerializer { if (Array.isArray(v)) return v.map(formatVal) else if (v && typeof v === 'object') { const formatted = v - // Reassign id to @id, type to @type, value to @value - ;['id', 'type', 'value'].forEach((specialProp) => { + const properties = ['id', 'type', 'value'] + // Reassign id to @id, type to @type, value to @value + properties.forEach((specialProp) => { if (formatted[specialProp]) { formatted[`@${specialProp}`] = formatted[specialProp] delete formatted[specialProp] @@ -268,6 +270,10 @@ class ResourceSerializer extends JsonLdItemSerializer { stmts.hasItemDates = this.body.numItemDatesParsed[0] / numItems >= parseFloat(process.env.BIB_HAS_DATES_THRESHOLD) } } + if (this.body.recordTypeId) { + stmts.recordType = ResourceSerializer.getFormattedRecordType(this.body.recordTypeId) + delete stmts.recordTypeId + } // DFE depends on this being set to an empty array when null: stmts.electronicResources = stmts.electronicResources || [] @@ -280,6 +286,13 @@ class ResourceSerializer extends JsonLdItemSerializer { } } +ResourceSerializer.getFormattedRecordType = function (recordTypeId) { + return { + '@id': recordTypeId, + prefLabel: recordTypes[recordTypeId].label + } +} + ResourceSerializer.formatElectronicResourceBlankNode = function (link, rdfsType) { // Get the link label (fall back on prefLabel if serialization moved it there) const label = link.label || link.prefLabel @@ -485,6 +498,9 @@ class AggregationSerializer extends JsonLdItemSerializer { } else if (field === 'buildingLocation') { // Build buildingLocation agg labels from nypl-core: v.label = locations[v.value]?.label + } else if (field === 'recordType') { + // Build recordType agg labels from nypl-core: + v.label = recordTypes[v.value]?.label } else { v.label = v.value } diff --git a/lib/resources.js b/lib/resources.js index 0594f3ab..d0a60abd 100644 --- a/lib/resources.js +++ b/lib/resources.js @@ -32,6 +32,7 @@ const ITEM_FILTER_AGGREGATIONS = { // Configures aggregations: const AGGREGATIONS_SPEC = { + recordType: { terms: { field: 'recordTypeId' } }, buildingLocation: { terms: { field: 'buildingLocationIds' } }, owner: { nested: { path: 'items' }, aggs: { _nested: { terms: { field: 'items.owner_packed' } } } }, subjectLiteral: { terms: { field: 'subjectLiteral.raw' } }, diff --git a/swagger.v1.1.x.json b/swagger.v1.1.x.json index b430ca8c..f8082ec5 100644 --- a/swagger.v1.1.x.json +++ b/swagger.v1.1.x.json @@ -97,7 +97,7 @@ { "name": "filters[*]", "in": "query", - "description": "Specify a hash of filters to apply, where key is: 'buildingLocation', 'owner', 'subjectLiteral', 'holdingLocation', 'deliveryLocation', 'language', 'materialType', 'mediaType', 'carrierType', 'publisher', 'contributor', 'creator', 'issuance', 'createdYear', 'dateAfter', or 'dateBefore'", + "description": "Specify a hash of filters to apply, where key is: 'recordType', 'buildingLocation', 'owner', 'subjectLiteral', 'holdingLocation', 'deliveryLocation', 'language', 'materialType', 'mediaType', 'carrierType', 'publisher', 'contributor', 'creator', 'issuance', 'createdYear', 'dateAfter', or 'dateBefore'", "required": false, "type": "string" }, @@ -924,4 +924,4 @@ } } } -} +} \ No newline at end of file diff --git a/test/fixtures/query-527240adac4b952f3b47ee9321ae4fdb.json b/test/fixtures/query-527240adac4b952f3b47ee9321ae4fdb.json new file mode 100644 index 00000000..0682bdfc --- /dev/null +++ b/test/fixtures/query-527240adac4b952f3b47ee9321ae4fdb.json @@ -0,0 +1,18568 @@ +{ + "took": 20, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 287, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10022950", + "_score": 0, + "_source": { + "extent": [ + "224 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Christianity and other religions", + "Christianity and other religions -- Judaism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "[D. Kirshenbaum]" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1974 + ], + "title": [ + "Religion--love or hate?" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "*PGZ 81-1452" + ], + "createdString": [ + "1974" + ], + "creatorLiteral": [ + "Kirshenbaum, D. (David), 1902-" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1974 + ], + "idOclc": [ + "NYPG25881442-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*PGZ 81-1452" + }, + { + "type": "nypl:Bnumber", + "value": "10022950" + }, + { + "type": "nypl:Oclc", + "value": "NYPG25881442-B" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0023028" + } + ], + "popularity": 1, + "updatedAt": 1733243246425, + "publicationStatement": [ + "New York : [D. Kirshenbaum], 1974." + ], + "identifier": [ + "urn:shelfmark:*PGZ 81-1452", + "urn:bnum:10022950", + "urn:oclc:NYPG25881442-B", + "urn:identifier:(WaOLN)nyp0023028" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1974" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Christianity and other religions -- Judaism." + ], + "titleDisplay": [ + "Religion--love or hate? / by David Kirshenbaum." + ], + "uri": "b10022950", + "recordTypeId": "a", + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Love or hate." + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b10022950" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10022950", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:maf92", + "label": "Schwarzman Building - Dorot Jewish Division Room 111" + } + ], + "holdingLocation_packed": [ + "loc:maf92||Schwarzman Building - Dorot Jewish Division Room 111" + ], + "idBarcode": [ + "33433103848853" + ], + "identifier": [ + "urn:shelfmark:*PGZ 81-1452", + "urn:barcode:33433103848853" + ], + "identifierV2": [ + { + "value": "*PGZ 81-1452", + "type": "bf:ShelfMark" + }, + { + "value": "33433103848853", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XH" + ], + "physicalLocation": [ + "*PGZ 81-1452" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*PGZ 81-1452" + ], + "shelfMark_sort": "a*PGZ 81-001452", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i14749981" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10081189", + "_score": 0, + "_source": { + "extent": [ + "xxiv, 232 p. illus." + ], + "note": [ + { + "noteType": "Note", + "label": "Articles primarily selected from the author's Letter from Paris, originally published in the New Yorker.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Paris (France)", + "Paris (France) -- Intellectual life", + "Paris (France) -- Social life and customs" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Viking Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1972 + ], + "title": [ + "Paris was yesterday, 1925-1939." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "JFE 73-177" + ], + "createdString": [ + "1972" + ], + "creatorLiteral": [ + "Flanner, Janet, 1892-" + ], + "idLccn": [ + "70185384" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1972 + ], + "idOclc": [ + "363488", + "NYPG724213169-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 73-177" + }, + { + "type": "nypl:Bnumber", + "value": "10081189" + }, + { + "type": "bf:Isbn", + "value": "0670539538" + }, + { + "type": "nypl:Oclc", + "value": "363488" + }, + { + "type": "nypl:Oclc", + "value": "NYPG724213169-B" + }, + { + "type": "bf:Lccn", + "value": "70185384" + }, + { + "type": "bf:Identifier", + "value": "NN724213169" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0081497" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)363488" + } + ], + "popularity": 6, + "updatedAt": 1733243823717, + "publicationStatement": [ + "New York, Viking Press [1972]" + ], + "idIsbn": [ + "0670539538" + ], + "identifier": [ + "urn:shelfmark:JFE 73-177", + "urn:bnum:10081189", + "urn:isbn:0670539538", + "urn:oclc:363488", + "urn:oclc:NYPG724213169-B", + "urn:lccn:70185384", + "urn:identifier:NN724213169", + "urn:identifier:(WaOLN)nyp0081497", + "urn:identifier:(OCoLC)363488" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Paris (France) -- Intellectual life.", + "Paris (France) -- Social life and customs." + ], + "titleDisplay": [ + "Paris was yesterday, 1925-1939. Edited by Irving Drutman." + ], + "uri": "b10081189", + "lccClassification": [ + "DC715 .F57" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ], + "idIsbn_clean": [ + "0670539538" + ] + }, + "sort": [ + 0, + "b10081189" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10081189", + "_nested": { + "field": "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 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "idBarcode": [ + "33433046153676" + ], + "identifier": [ + "urn:shelfmark:JFE 73-177", + "urn:barcode:33433046153676" + ], + "identifierV2": [ + { + "value": "JFE 73-177", + "type": "bf:ShelfMark" + }, + { + "value": "33433046153676", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "JFE 73-177" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JFE 73-177" + ], + "shelfMark_sort": "aJFE 73-000177", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i12882748" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10108860", + "_score": 0, + "_source": { + "extent": [ + "v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Description based on: June 1970.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Views and reviews of current writings.\"", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jews", + "Jews -- Periodicals", + "Jewish periodicals", + "Jewish periodicals -- Bibliography", + "Jewish periodicals -- Bibliography -- Periodicals", + "Jews -- Bibliography", + "Jews -- Bibliography -- Periodicals" + ], + "numItemDatesParsed": [ + 2 + ], + "publisherLiteral": [ + "Jewish Communal Affairs Dept. of the American Jewish Committee" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "buildingLocationIds": [ + "rc" + ], + "createdYear": [ + 19 + ], + "dateEndString": [ + "19uu" + ], + "title": [ + "In the Jewish world." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "*PAA 92-662" + ], + "createdString": [ + "19uu" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "American Jewish Committee. Jewish Communal Affairs Department" + ], + "dateStartYear": [ + 19 + ], + "idOclc": [ + "NYPG734295048-S" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*PAA 92-662" + }, + { + "type": "nypl:Bnumber", + "value": "10108860" + }, + { + "type": "nypl:Oclc", + "value": "NYPG734295048-S" + }, + { + "type": "bf:Identifier", + "value": "NN734295048" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0109519" + } + ], + "popularity": 6, + "dateEndYear": [ + 19 + ], + "updatedAt": 1733243883058, + "publicationStatement": [ + "New York : Jewish Communal Affairs Dept. of the American Jewish Committee" + ], + "identifier": [ + "urn:shelfmark:*PAA 92-662", + "urn:bnum:10108860", + "urn:oclc:NYPG734295048-S", + "urn:identifier:NN734295048", + "urn:identifier:(WaOLN)nyp0109519" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "19uu" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jews -- Periodicals.", + "Jewish periodicals -- Bibliography -- Periodicals.", + "Jews -- Bibliography -- Periodicals." + ], + "titleDisplay": [ + "In the Jewish world." + ], + "uri": "b10108860", + "recordTypeId": "a", + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + 0, + "b10108860" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10108860", + "_nested": { + "field": "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": "1972", + "lte": "1972" + } + ], + "dueDate": [ + "2024-11-30" + ], + "enumerationChronology": [ + "June- December 1972" + ], + "enumerationChronology_sort": [ + " -1972" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "idBarcode": [ + "33433116007604" + ], + "identifier": [ + "urn:shelfmark:*PAA 92-662 June- December 1972", + "urn:barcode:33433116007604" + ], + "identifierV2": [ + { + "value": "*PAA 92-662 June- December 1972", + "type": "bf:ShelfMark" + }, + { + "value": "33433116007604", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "*PAA 92-662" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*PAA 92-662 June- December 1972" + ], + "shelfMark_sort": "a*PAA 92-662 June- December 001972", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i29854158" + }, + "sort": [ + " -1972" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b10108860", + "_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": "1970", + "lte": "1971" + } + ], + "dueDate": [ + "2025-04-02" + ], + "enumerationChronology": [ + "June 1970-Dec. 1971" + ], + "enumerationChronology_sort": [ + " -1970" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "idBarcode": [ + "33433107841797" + ], + "identifier": [ + "urn:shelfmark:*PAA 92-662 June 1970-Dec. 1971", + "urn:barcode:33433107841797" + ], + "identifierV2": [ + { + "value": "*PAA 92-662 June 1970-Dec. 1971", + "type": "bf:ShelfMark" + }, + { + "value": "33433107841797", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "physicalLocation": [ + "*PAA 92-662" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*PAA 92-662 June 1970-Dec. 1971" + ], + "shelfMark_sort": "a*PAA 92-662 June 1970-Dec. 001971", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i17451227" + }, + "sort": [ + " -1970" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10246446", + "_score": 0, + "_source": { + "extent": [ + "293 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Issued also as thesis, Paris, 1965.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. [261]-262.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Chinese", + "Chinese -- Vietnam" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Bibliothèque nationale" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "rc" + ], + "createdYear": [ + 1968 + ], + "title": [ + "Les Chinois au Sud-Vietnam." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "JLE 75-835" + ], + "createdString": [ + "1968" + ], + "creatorLiteral": [ + "Tsai, Maw-kuey" + ], + "idLccn": [ + "71455937" + ], + "numElectronicResources": [ + 0 + ], + "seriesStatement": [ + "France. Comité des travaux historiques et scientifiques. Section de géographie. Mémoires, \\3" + ], + "dateStartYear": [ + 1968 + ], + "idOclc": [ + "189844", + "NYPG754324158-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLE 75-835" + }, + { + "type": "nypl:Bnumber", + "value": "10246446" + }, + { + "type": "nypl:Oclc", + "value": "189844" + }, + { + "type": "nypl:Oclc", + "value": "NYPG754324158-B" + }, + { + "type": "bf:Lccn", + "value": "71455937" + }, + { + "type": "bf:Identifier", + "value": "NN754324158" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0248564" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)189844" + } + ], + "popularity": 2, + "uniformTitle": [ + "Mémoires de la Section de géographie ; \\3." + ], + "updatedAt": 1733243283424, + "publicationStatement": [ + "Paris, Bibliothèque nationale, 1968." + ], + "identifier": [ + "urn:shelfmark:JLE 75-835", + "urn:bnum:10246446", + "urn:oclc:189844", + "urn:oclc:NYPG754324158-B", + "urn:lccn:71455937", + "urn:identifier:NN754324158", + "urn:identifier:(WaOLN)nyp0248564", + "urn:identifier:(OCoLC)189844" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Chinese -- Vietnam." + ], + "titleDisplay": [ + "Les Chinois au Sud-Vietnam." + ], + "uri": "b10246446", + "recordTypeId": "a", + "placeOfPublication": [ + "Paris" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b10246446" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10246446", + "_nested": { + "field": "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": [ + "33433074435128" + ], + "identifier": [ + "urn:shelfmark:JLE 75-835", + "urn:barcode:33433074435128" + ], + "identifierV2": [ + { + "value": "JLE 75-835", + "type": "bf:ShelfMark" + }, + { + "value": "33433074435128", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "JLE 75-835" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JLE 75-835" + ], + "shelfMark_sort": "aJLE 75-000835", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i14829525" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10279913", + "_score": 0, + "_source": { + "extent": [ + "xiii, 452 p. illus., ports." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "First Baptist Church (Denton, Tex.)", + "Denton (Tex.)", + "Denton (Tex.) -- History" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Terrill Wheeler Print. Co." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1958 + ], + "title": [ + "The first 100 years of the First Baptist Church, Denton, Texas, 1858-1958." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "ITRM (Denton) 75-1651" + ], + "createdString": [ + "1958" + ], + "creatorLiteral": [ + "Floyd, L. P." + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1958 + ], + "idOclc": [ + "3633311", + "NYPG754692094-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "ITRM (Denton) 75-1651" + }, + { + "type": "nypl:Bnumber", + "value": "10279913" + }, + { + "type": "nypl:Oclc", + "value": "3633311" + }, + { + "type": "nypl:Oclc", + "value": "NYPG754692094-B" + }, + { + "type": "bf:Identifier", + "value": "NN754692094" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0245797" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)3633311" + } + ], + "popularity": 2, + "updatedAt": 1733243766701, + "publicationStatement": [ + "Denton, Tex., Terrill Wheeler Print. Co. [1958]" + ], + "identifier": [ + "urn:shelfmark:ITRM (Denton) 75-1651", + "urn:bnum:10279913", + "urn:oclc:3633311", + "urn:oclc:NYPG754692094-B", + "urn:identifier:NN754692094", + "urn:identifier:(WaOLN)nyp0245797", + "urn:identifier:(OCoLC)3633311" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1958" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "First Baptist Church (Denton, Tex.)", + "Denton (Tex.) -- History." + ], + "titleDisplay": [ + "The first 100 years of the First Baptist Church, Denton, Texas, 1858-1958." + ], + "uri": "b10279913", + "recordTypeId": "a", + "placeOfPublication": [ + "Denton, Tex." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + 0, + "b10279913" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10279913", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2025-03-03" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433099434049" + ], + "identifier": [ + "urn:shelfmark:ITRM (Denton) 75-1651", + "urn:barcode:33433099434049" + ], + "identifierV2": [ + { + "value": "ITRM (Denton) 75-1651", + "type": "bf:ShelfMark" + }, + { + "value": "33433099434049", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "ITRM (Denton) 75-1651" + ], + "requestable": [ + false + ], + "shelfMark": [ + "ITRM (Denton) 75-1651" + ], + "shelfMark_sort": "aITRM (Denton) 75-001651", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15701644" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10355292", + "_score": 0, + "_source": { + "extent": [ + "383 p." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Aesthetics", + "Communism and art" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Društvo književnih stvaralaca" + ], + "language": [ + { + "id": "lang:hrv", + "label": "Croatian" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "rc" + ], + "createdYear": [ + 1972 + ], + "title": [ + "Estetika. ." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "*QKK 75-9158" + ], + "createdString": [ + "1972" + ], + "creatorLiteral": [ + "Lerik, Ivan, 1914-1998" + ], + "idLccn": [ + "72971405" + ], + "numElectronicResources": [ + 0 + ], + "seriesStatement": [ + "Biblioteka \"Ulaznica.\" kolo 3, knj. 10" + ], + "dateStartYear": [ + 1972 + ], + "idOclc": [ + "11343015", + "NYPG764156886-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*QKK 75-9158" + }, + { + "type": "nypl:Bnumber", + "value": "10355292" + }, + { + "type": "nypl:Oclc", + "value": "11343015" + }, + { + "type": "nypl:Oclc", + "value": "NYPG764156886-B" + }, + { + "type": "bf:Lccn", + "value": "72971405" + }, + { + "type": "bf:Identifier", + "value": "NN764156886" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0358744" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)11343015" + } + ], + "popularity": 1, + "updatedAt": 1733242949261, + "publicationStatement": [ + "Zrenjanin, Društvo književnih stvaralaca, 1972." + ], + "identifier": [ + "urn:shelfmark:*QKK 75-9158", + "urn:bnum:10355292", + "urn:oclc:11343015", + "urn:oclc:NYPG764156886-B", + "urn:lccn:72971405", + "urn:identifier:NN764156886", + "urn:identifier:(WaOLN)nyp0358744", + "urn:identifier:(OCoLC)11343015" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Aesthetics.", + "Communism and art." + ], + "titleDisplay": [ + "Estetika. ." + ], + "uri": "b10355292", + "recordTypeId": "a", + "placeOfPublication": [ + "Zrenjanin" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + 0, + "b10355292" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10355292", + "_nested": { + "field": "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": [ + "33433056619780" + ], + "identifier": [ + "urn:shelfmark:*QKK 75-9158", + "urn:barcode:33433056619780" + ], + "identifierV2": [ + { + "value": "*QKK 75-9158", + "type": "bf:ShelfMark" + }, + { + "value": "33433056619780", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*QKK 75-9158" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*QKK 75-9158" + ], + "shelfMark_sort": "a*QKK 75-009158", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i12959126" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10357989", + "_score": 0, + "_source": { + "extent": [ + "696 p. illus., map." + ], + "note": [ + { + "noteType": "Note", + "label": "Nos. 227-228, 261-262, 279-280 omitted in paging.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "One leaf inserted between p. 666 and 667.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Marshall County (Iowa)", + "Marshall County (Iowa) -- History" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Western Historical Company" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1878 + ], + "title": [ + "The history of Marshall County, Iowa, Containing a history of the County, its cities, towns, etc., a biographical directory of citizens, war record of its Volunteers ... general and local Statistics ..." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "IVO (Marshall Co.) 75-2704" + ], + "createdString": [ + "1878" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Western Historical Company" + ], + "dateStartYear": [ + 1878 + ], + "idOclc": [ + "NYPG764186358-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "IVO (Marshall Co.) 75-2704" + }, + { + "type": "nypl:Bnumber", + "value": "10357989" + }, + { + "type": "nypl:Oclc", + "value": "NYPG764186358-B" + }, + { + "type": "bf:Identifier", + "value": "NN764186358" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0253438" + } + ], + "popularity": 2, + "updatedAt": 1733243768637, + "publicationStatement": [ + "Chicago, Western Historical Company, 1878." + ], + "identifier": [ + "urn:shelfmark:IVO (Marshall Co.) 75-2704", + "urn:bnum:10357989", + "urn:oclc:NYPG764186358-B", + "urn:identifier:NN764186358", + "urn:identifier:(WaOLN)nyp0253438" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1878" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Marshall County (Iowa) -- History." + ], + "titleDisplay": [ + "The history of Marshall County, Iowa, Containing a history of the County, its cities, towns, etc., a biographical directory of citizens, war record of its Volunteers ... general and local Statistics ..." + ], + "uri": "b10357989", + "recordTypeId": "a", + "placeOfPublication": [ + "Chicago" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + 0, + "b10357989" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10357989", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2025-03-03" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433099439709" + ], + "identifier": [ + "urn:shelfmark:IVO (Marshall Co.) 75-2704", + "urn:barcode:33433099439709" + ], + "identifierV2": [ + { + "value": "IVO (Marshall Co.) 75-2704", + "type": "bf:ShelfMark" + }, + { + "value": "33433099439709", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "IVO (Marshall Co.) 75-2704" + ], + "requestable": [ + false + ], + "shelfMark": [ + "IVO (Marshall Co.) 75-2704" + ], + "shelfMark_sort": "aIVO (Marshall Co.) 75-002704", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15713541" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10392159", + "_score": 0, + "_source": { + "extent": [ + "132, 15 p. illus." + ], + "note": [ + { + "noteType": "Note", + "label": "Electrostatic reproduction.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Appendix: The Fields in England, 15 p.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Field family", + "Field, David D. 1781-1867" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Printed only for the use of the family" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1880 + ], + "title": [ + "Record of the family of the late Rev. David D. Field, D. D. of Stockbridge, Mass." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "APV (Field) 75-609" + ], + "createdString": [ + "1880" + ], + "creatorLiteral": [ + "Field, Henry M. (Henry Martyn), 1822-1907" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1880 + ], + "idOclc": [ + "NYPG774180889-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Field) 75-609" + }, + { + "type": "nypl:Bnumber", + "value": "10392159" + }, + { + "type": "nypl:Oclc", + "value": "NYPG774180889-B" + }, + { + "type": "bf:Identifier", + "value": "NN774180889" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0395766" + } + ], + "popularity": 1, + "updatedAt": 1733243767584, + "publicationStatement": [ + "[New York?] Printed only for the use of the family, 1880." + ], + "identifier": [ + "urn:shelfmark:APV (Field) 75-609", + "urn:bnum:10392159", + "urn:oclc:NYPG774180889-B", + "urn:identifier:NN774180889", + "urn:identifier:(WaOLN)nyp0395766" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1880" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Field family.", + "Field, David D. 1781-1867." + ], + "titleDisplay": [ + "Record of the family of the late Rev. David D. Field, D. D. of Stockbridge, Mass. Compiled by Henry M. Field." + ], + "uri": "b10392159", + "recordTypeId": "a", + "placeOfPublication": [ + "[New York?]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + 0, + "b10392159" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10392159", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2025-03-03" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433093145617" + ], + "identifier": [ + "urn:shelfmark:APV (Field) 75-609", + "urn:barcode:33433093145617" + ], + "identifierV2": [ + { + "value": "APV (Field) 75-609", + "type": "bf:ShelfMark" + }, + { + "value": "33433093145617", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Field) 75-609" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APV (Field) 75-609" + ], + "shelfMark_sort": "aAPV (Field) 75-000609", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15718848" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10394161", + "_score": 0, + "_source": { + "extent": [ + "11 manuscript boxes." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Washburn family" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 7 + ], + "buildingLocationIds": [ + "rc" + ], + "createdYear": [ + 1880 + ], + "dateEndString": [ + "1940" + ], + "title": [ + "Washburn family data, correspondence, and business papers." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "AZ 77-217" + ], + "createdString": [ + "1880" + ], + "creatorLiteral": [ + "Washburn, Mabel Thacher Rosemary" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1880 + ], + "idOclc": [ + "NYPG774203954-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "AZ 77-217" + }, + { + "type": "nypl:Bnumber", + "value": "10394161" + }, + { + "type": "nypl:Oclc", + "value": "NYPG774203954-B" + }, + { + "type": "bf:Identifier", + "value": "NN774203954" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0397777" + } + ], + "popularity": 8, + "dateEndYear": [ + 1940 + ], + "updatedAt": 1733243101120, + "publicationStatement": [ + "1880-1940." + ], + "identifier": [ + "urn:shelfmark:AZ 77-217", + "urn:bnum:10394161", + "urn:oclc:NYPG774203954-B", + "urn:identifier:NN774203954", + "urn:identifier:(WaOLN)nyp0397777" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1880" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Washburn family." + ], + "titleDisplay": [ + "Washburn family data, correspondence, and business papers." + ], + "uri": "b10394161", + "recordTypeId": "a", + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ] + }, + "sort": [ + 0, + "b10394161" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 7, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10394161", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 7" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmg2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmg2||Offsite" + ], + "idBarcode": [ + "33433108334255" + ], + "identifier": [ + "urn:shelfmark:AZ 77-217 Box 7", + "urn:barcode:33433108334255" + ], + "identifierV2": [ + { + "value": "AZ 77-217 Box 7", + "type": "bf:ShelfMark" + }, + { + "value": "33433108334255", + "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": [ + "AZ 77-217" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + false + ], + "shelfMark": [ + "AZ 77-217 Box 7" + ], + "shelfMark_sort": "aAZ 77-217 box 000007", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i30629069" + }, + "sort": [ + null + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b10394161", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 6" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmg2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmg2||Offsite" + ], + "idBarcode": [ + "33433108656806" + ], + "identifier": [ + "urn:shelfmark:AZ 77-217 Box 6", + "urn:barcode:33433108656806" + ], + "identifierV2": [ + { + "value": "AZ 77-217 Box 6", + "type": "bf:ShelfMark" + }, + { + "value": "33433108656806", + "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": [ + "AZ 77-217" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + false + ], + "shelfMark": [ + "AZ 77-217 Box 6" + ], + "shelfMark_sort": "aAZ 77-217 box 000006", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30629066" + }, + "sort": [ + null + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b10394161", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:4", + "label": "Restricted use" + } + ], + "accessMessage_packed": [ + "accessMessage:4||Restricted use" + ], + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "catalogItemType_packed": [ + "catalogItemType:21||archival material" + ], + "enumerationChronology": [ + "Box 5" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmg2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmg2||Offsite" + ], + "idBarcode": [ + "33433108656798" + ], + "identifier": [ + "urn:shelfmark:AZ 77-217 Box 5", + "urn:barcode:33433108656798" + ], + "identifierV2": [ + { + "value": "AZ 77-217 Box 5", + "type": "bf:ShelfMark" + }, + { + "value": "33433108656798", + "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": [ + "AZ 77-217" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + false + ], + "shelfMark": [ + "AZ 77-217 Box 5" + ], + "shelfMark_sort": "aAZ 77-217 box 000005", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i30629063" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10402179", + "_score": 0, + "_source": { + "extent": [ + "2 v. (xiii p., 760 l.) geneal. tables." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Graves family" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1963 + ], + "dateEndString": [ + "1969" + ], + "title": [ + "The genealogy of Herbert Cornelius Graves, son of Willard Purdy Graves and Lucy Melvina (Libby) Graves. Compiled by C. E. Graves Baker, daughter of Herbert Cornelius Graves." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 1 + ], + "shelfMark": [ + "APV (Graves) 77-449 " + ], + "createdString": [ + "1963" + ], + "creatorLiteral": [ + "Baker, C. E. Graves (Clara Edith Graves), 1902-" + ], + "idLccn": [ + "65053305" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1963 + ], + "idOclc": [ + "3647817", + "NYPG774294335-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Graves) 77-449 " + }, + { + "type": "nypl:Bnumber", + "value": "10402179" + }, + { + "type": "nypl:Oclc", + "value": "3647817" + }, + { + "type": "nypl:Oclc", + "value": "NYPG774294335-B" + }, + { + "type": "bf:Lccn", + "value": "65053305" + }, + { + "type": "bf:Identifier", + "value": "NN774294335" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0405819" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)3647817" + } + ], + "popularity": 1, + "dateEndYear": [ + 1969 + ], + "updatedAt": 1733243772202, + "publicationStatement": [ + "[Washington?] 1963-69." + ], + "identifier": [ + "urn:shelfmark:APV (Graves) 77-449 ", + "urn:bnum:10402179", + "urn:oclc:3647817", + "urn:oclc:NYPG774294335-B", + "urn:lccn:65053305", + "urn:identifier:NN774294335", + "urn:identifier:(WaOLN)nyp0405819", + "urn:identifier:(OCoLC)3647817" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1963" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Graves family." + ], + "titleDisplay": [ + "The genealogy of Herbert Cornelius Graves, son of Willard Purdy Graves and Lucy Melvina (Libby) Graves. Compiled by C. E. Graves Baker, daughter of Herbert Cornelius Graves." + ], + "uri": "b10402179", + "recordTypeId": "a", + "placeOfPublication": [ + "[Washington?]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "29 cm." + ] + }, + "sort": [ + 0, + "b10402179" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10402179", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2025-03-03" + ], + "enumerationChronology": [ + "v. 2" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433093183980" + ], + "identifier": [ + "urn:shelfmark:APV (Graves) 77-449 v. 2", + "urn:barcode:33433093183980" + ], + "identifierV2": [ + { + "value": "APV (Graves) 77-449 v. 2", + "type": "bf:ShelfMark" + }, + { + "value": "33433093183980", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Graves) 77-449 " + ], + "requestable": [ + false + ], + "shelfMark": [ + "APV (Graves) 77-449 v. 2" + ], + "shelfMark_sort": "aAPV (Graves) 77-449 v. 000002", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15720244", + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + "sort": [ + " 2-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10455495", + "_score": 0, + "_source": { + "note": [ + { + "noteType": "Note", + "label": "\"Schweizerische Zeitschrift für die deutsche Muttersprache.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Issued by Deutschschweizerischer Sprachverein.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "German language", + "German language -- Periodicals", + "German language -- Dialects", + "German language -- Dialects -- Switzerland" + ], + "numItemDatesParsed": [ + 53 + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 53 + ], + "buildingLocationIds": [ + "ma", + "rc" + ], + "createdYear": [ + null + ], + "title": [ + "Sprachspiegel." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 53 + ], + "shelfMark": [ + "JFK 77-350" + ], + "createdString": [ + " " + ], + "idLccn": [ + "48012831" + ], + "idIssn": [ + "0038-8513" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Deutschschweizerischer Sprachverein" + ], + "dateStartYear": [ + null + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest" + ], + "idOclc": [ + "NYPG774869132-S" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFK 77-350" + }, + { + "type": "nypl:Bnumber", + "value": "10455495" + }, + { + "type": "nypl:Oclc", + "value": "NYPG774869132-S" + }, + { + "type": "bf:Lccn", + "value": "48012831" + }, + { + "type": "bf:Issn", + "value": "0038-8513" + }, + { + "type": "bf:Identifier", + "value": "NN774869132" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0459424" + } + ], + "popularity": 59, + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 75 No. 3 (Jun. 2019)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 76 No. 2 (2020)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 77 No. 4 (Aug. 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 78 No. 3 (Jun. 2022)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 78 No. 5 (Oct. 2022)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 78 No. 6 (Dec. 2022)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 79 No. 1 (Feb. 2023)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 79 No. 2 (Apr. 2023)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 79 No. 3 (Jun. 2023)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 79 No. 4 (Aug. 2023)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 79 No. 5 (Oct. 2023)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 79 No. 6 (Dec. 2023)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 80 No. 1 (Feb. 2024)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 80 No. 2 (Apr. 2024)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 80 No. 3 (2024)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 80 No. 4 (2024)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 80 No. 5 (2024)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 80 No. 6 (2024)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFK 77-350" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "25(1969)-67:2(2011), 67:4(2011), 67:6(2011)-79:5(2023), 80:4(2024)-" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "JFK 77-350" + } + ], + "physicalLocation": [ + "JFK 77-350" + ], + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:rc2ma", + "label": "Offsite" + } + ], + "shelfMark": [ + "JFK 77-350" + ], + "uri": "h1006205" + } + ], + "updatedAt": 1733243568066, + "publicationStatement": [ + "[Lucerne]." + ], + "identifier": [ + "urn:shelfmark:JFK 77-350", + "urn:bnum:10455495", + "urn:oclc:NYPG774869132-S", + "urn:lccn:48012831", + "urn:issn:0038-8513", + "urn:identifier:NN774869132", + "urn:identifier:(WaOLN)nyp0459424" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + " " + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "German language -- Periodicals.", + "German language -- Dialects -- Switzerland." + ], + "titleDisplay": [ + "Sprachspiegel." + ], + "uri": "b10455495", + "recordTypeId": "a", + "placeOfPublication": [ + "[Lucerne]." + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + 0, + "b10455495" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 53, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10455495", + "_nested": { + "field": "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. 80, no. 4 (2024)" + ], + "enumerationChronology_sort": [ + " 80-2024" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mak32", + "label": "SASB S3 - Periodicals Rm 108" + } + ], + "holdingLocation_packed": [ + "loc:mak32||SASB S3 - Periodicals Rm 108" + ], + "idBarcode": [ + "33433125499990" + ], + "identifier": [ + "urn:shelfmark:JFK 77-350 v. 80, no. 4 (2024)", + "urn:barcode:33433125499990" + ], + "identifierV2": [ + { + "value": "JFK 77-350 v. 80, no. 4 (2024)", + "type": "bf:ShelfMark" + }, + { + "value": "33433125499990", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "JFK 77-350" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JFK 77-350 v. 80, no. 4 (2024)" + ], + "shelfMark_sort": "aJFK 77-350 v. 000080, no. 4 (2024)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i41309101", + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + "sort": [ + " 80-2024" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b10455495", + "_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": "2024", + "lte": "2024" + } + ], + "enumerationChronology": [ + "v. 80, no. 3 (2024)" + ], + "enumerationChronology_sort": [ + " 80-2024" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433125499339" + ], + "identifier": [ + "urn:shelfmark:JFK 77-350 v. 80, no. 3 (2024)", + "urn:barcode:33433125499339" + ], + "identifierV2": [ + { + "value": "JFK 77-350 v. 80, no. 3 (2024)", + "type": "bf:ShelfMark" + }, + { + "value": "33433125499339", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "JFK 77-350" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JFK 77-350 v. 80, no. 3 (2024)" + ], + "shelfMark_sort": "aJFK 77-350 v. 000080, no. 3 (2024)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i41113969", + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + "sort": [ + " 80-2024" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b10455495", + "_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": "2024", + "lte": "2024" + } + ], + "enumerationChronology": [ + "v. 80 no. 2 (2024)" + ], + "enumerationChronology_sort": [ + " 80-2024" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433125498901" + ], + "identifier": [ + "urn:shelfmark:JFK 77-350 v. 80 no. 2 (2024)", + "urn:barcode:33433125498901" + ], + "identifierV2": [ + { + "value": "JFK 77-350 v. 80 no. 2 (2024)", + "type": "bf:ShelfMark" + }, + { + "value": "33433125498901", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "JFK 77-350" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "JFK 77-350 v. 80 no. 2 (2024)" + ], + "shelfMark_sort": "aJFK 77-350 v. 000080 no. 2 (2024)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40968299", + "volumeRange": [ + { + "gte": 80, + "lte": 80 + } + ] + }, + "sort": [ + " 80-2024" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10462187", + "_score": 0, + "_source": { + "extent": [ + "volumes : illustrations ;" + ], + "note": [ + { + "noteType": "Indexed In", + "label": "Chemical abstracts", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "v. 8, no. 11- Nov. 1977-" + ], + "subjectLiteral_exploded": [ + "Nonwoven fabrics industry", + "Nonwoven fabrics industry -- Periodicals" + ], + "numItemDatesParsed": [ + 118 + ], + "publisherLiteral": [ + "[Rodman Publications]" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 118 + ], + "buildingLocationIds": [ + "rc", + "ma" + ], + "createdYear": [ + 1977 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "Nonwovens industry." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 118 + ], + "shelfMark": [ + "JBM 17-243" + ], + "createdString": [ + "1977" + ], + "idLccn": [ + "78646737" + ], + "idIssn": [ + "0163-4429" + ], + "numElectronicResources": [ + 1 + ], + "dateStartYear": [ + 1977 + ], + "idOclc": [ + "3865914" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JBM 17-243" + }, + { + "type": "nypl:Bnumber", + "value": "10462187" + }, + { + "type": "nypl:Oclc", + "value": "3865914" + }, + { + "type": "bf:Lccn", + "value": "78646737" + }, + { + "type": "bf:Issn", + "value": "0163-4429" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)3865914" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)31465496 (OCoLC)643405337" + } + ], + "popularity": 76, + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 52 No. 1 (Jan. 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 52 No. 2 (Feb. 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 52 No. 3 (Mar. 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 52 No. 4 (Apr. 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 52 No. 5 (May. 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 52 No. 6 (Jun. 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 52 No. 7 (Jul. 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 52 No. 8 (Aug. 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 52 No. 9 (Sep. 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 52 No. 10 (Oct. 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 52 No. 11 (Nov. 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 52 No. 12 (Dec. 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "To Bind" + }, + { + "coverage": "Vol. 53 No. 1 (Jan. 2022)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 53 No. 2 (Feb. 2022)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 53 No. 3 (Mar. 2022)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 53 No. 4 (Apr. 2022)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 53 No. 5 (May. 2022)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 53 No. 6 (Jun. 2022)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 53 No. 7 (Jul. 2022)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 53 No. 8 (Aug. 2022)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 53 No. 9 (Sep. 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 53 No. 10 (Oct. 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 53 No. 11 (Nov. 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 53 No. 12 (Dec. 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 54 No. 1 (Jan. 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 54 No. 2 (Feb. 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 54 No. 3 (Mar. 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 54 No. 4 (Apr. 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 54 No. 5-12 (May. 2023 - Dec. 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 55 No. 1 (Jan. 2024)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 55 No. 2 (Feb. 2024)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 55 No. 3 (Mar. 2024)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 55 No. 4 (Apr. 2024)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 55 No. 5 (May. 2024)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 55 No. 6 (Jun. 2024)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 55 No. 7 (Jul. 2024)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 55 No. 8 (Aug. 2024)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 55 No. 9 (Sep. 2024)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 55 No. 10 (Oct. 2024)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 55 No. 11 (Nov. 2024)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 55 No. 12 (Dec. 2024)", + "position": 41, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "[JBM 17-243] 47(2016)-52:3(2021),52:5(2021)-52:12(2021).", + "[JSP 77-582] 5:7(1974)-11:5(1980),11:9(1980),11:11(1980)-20:11(1989),21(1990)-25:11(1994),26:1(1995)-29:2(1998),29:4(1998)-46(2015).", + "v. 54, no. 2 (2023-02); v. 55, no. 4 (2024-04); v. 55, no. 7 (2024-07)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "JBM 17-243" + }, + { + "type": "bf:shelfMark", + "value": "JSP 77-582" + } + ], + "physicalLocation": [ + "JBM 17-243", + "JSP 77-582" + ], + "format": [ + "PRINT " + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "uri": "h1059242" + } + ], + "updatedAt": 1733243725279, + "publicationStatement": [ + "[Ramsey, N.J.] : [Rodman Publications]" + ], + "genreForm": [ + "Periodicals." + ], + "identifier": [ + "urn:shelfmark:JBM 17-243", + "urn:bnum:10462187", + "urn:oclc:3865914", + "urn:lccn:78646737", + "urn:issn:0163-4429", + "urn:identifier:(OCoLC)3865914", + "urn:identifier:(OCoLC)31465496 (OCoLC)643405337" + ], + "numCheckinCardItems": [ + 41 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1977" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Nonwoven fabrics industry -- Periodicals.", + "Nonwoven fabrics industry." + ], + "titleDisplay": [ + "Nonwovens industry." + ], + "uri": "b10462187", + "lccClassification": [ + "HD9869.N64 F67" + ], + "electronicResources": [ + { + "url": "http://www.nonwovens-industry.com/" + } + ], + "recordTypeId": "a", + "placeOfPublication": [ + "[Ramsey, N.J.]" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "titleAlt": [ + "Nonwovens ind.", + "Nonwovens industry" + ], + "dimensions": [ + "28 cm" + ] + }, + "sort": [ + 0, + "b10462187" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 118, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10462187", + "_nested": { + "field": "items", + "offset": 114 + }, + "_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. 55 No. 12 (Dec. 2024)" + ], + "enumerationChronology_sort": [ + " 55-2024-12-01" + ], + "formatLiteral": [ + "PRINT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "JBM 17-243", + "type": "bf:ShelfMark" + }, + { + "value": "JSP 77-582", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "shelfMark_sort": "aJBM 17-000243", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059242-3", + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ], + "volumeRaw": [ + "Vol. 55 No. 12" + ] + }, + "sort": [ + " 55-2024-12-01" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b10462187", + "_nested": { + "field": "items", + "offset": 113 + }, + "_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": [ + "Vol. 55 No. 11 (Nov. 2024)" + ], + "enumerationChronology_sort": [ + " 55-2024-11-01" + ], + "formatLiteral": [ + "PRINT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "JBM 17-243", + "type": "bf:ShelfMark" + }, + { + "value": "JSP 77-582", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "shelfMark_sort": "aJBM 17-000243", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059242-4", + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ], + "volumeRaw": [ + "Vol. 55 No. 11" + ] + }, + "sort": [ + " 55-2024-11-01" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b10462187", + "_nested": { + "field": "items", + "offset": 107 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2024-10-01", + "lte": "2024-10-01" + } + ], + "enumerationChronology": [ + "Vol. 55 No. 10 (Oct. 2024)" + ], + "enumerationChronology_sort": [ + " 55-2024-10-01" + ], + "formatLiteral": [ + "PRINT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "JBM 17-243", + "type": "bf:ShelfMark" + }, + { + "value": "JSP 77-582", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JBM 17-243", + "JSP 77-582" + ], + "shelfMark_sort": "aJBM 17-000243", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1059242-10", + "volumeRange": [ + { + "gte": 55, + "lte": 55 + } + ], + "volumeRaw": [ + "Vol. 55 No. 10" + ] + }, + "sort": [ + " 55-2024-10-01" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10507702", + "_score": 0, + "_source": { + "extent": [ + "72 p. illus." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Massillon (Ohio)", + "Massillon (Ohio) -- History" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Massillon Chapter, Daughters of the American Revolution" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1962 + ], + "title": [ + "Upon these hills; Massillon's beginnings and early days, by Mrs. Barton E. Smith." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "IVB (Massillon) 78-69" + ], + "createdString": [ + "1962" + ], + "creatorLiteral": [ + "Smith, Barton E., Mrs" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Daughters of the American Revolution. Ohio. Massillon Chapter" + ], + "dateStartYear": [ + 1962 + ], + "idOclc": [ + "7339258", + "NYPG784529134-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "IVB (Massillon) 78-69" + }, + { + "type": "nypl:Bnumber", + "value": "10507702" + }, + { + "type": "nypl:Oclc", + "value": "7339258" + }, + { + "type": "nypl:Oclc", + "value": "NYPG784529134-B" + }, + { + "type": "bf:Identifier", + "value": "NN784529134" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0265793" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)7339258" + } + ], + "popularity": 2, + "updatedAt": 1733243767584, + "publicationStatement": [ + "Massillon, Ohio, Massillon Chapter, Daughters of the American Revolution, 1962." + ], + "identifier": [ + "urn:shelfmark:IVB (Massillon) 78-69", + "urn:bnum:10507702", + "urn:oclc:7339258", + "urn:oclc:NYPG784529134-B", + "urn:identifier:NN784529134", + "urn:identifier:(WaOLN)nyp0265793", + "urn:identifier:(OCoLC)7339258" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1962" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Massillon (Ohio) -- History." + ], + "titleDisplay": [ + "Upon these hills; Massillon's beginnings and early days, by Mrs. Barton E. Smith." + ], + "uri": "b10507702", + "recordTypeId": "a", + "placeOfPublication": [ + "Massillon, Ohio" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b10507702" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10507702", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2025-03-03" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433092254139" + ], + "identifier": [ + "urn:shelfmark:IVB (Massillon) 78-69", + "urn:barcode:33433092254139" + ], + "identifierV2": [ + { + "value": "IVB (Massillon) 78-69", + "type": "bf:ShelfMark" + }, + { + "value": "33433092254139", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "IVB (Massillon) 78-69" + ], + "requestable": [ + false + ], + "shelfMark": [ + "IVB (Massillon) 78-69" + ], + "shelfMark_sort": "aIVB (Massillon) 78-000069", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15738459" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10513848", + "_score": 0, + "_source": { + "extent": [ + "272 p. illus." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Freeport (Ill.)", + "Freeport (Ill.) -- Pictorial works" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1954 + ], + "title": [ + "Camera studies of Freeport, Illinois: parks, churches, schools, civic, cultural, fraternal, and eleemosynary institutions." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "IVF (Freeport) 78-793" + ], + "createdString": [ + "1954" + ], + "creatorLiteral": [ + "Koenig, Robert F. (Robert Franklin), 1884-" + ], + "idLccn": [ + "54039494" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1954 + ], + "idOclc": [ + "5325338", + "NYPG784593367-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "IVF (Freeport) 78-793" + }, + { + "type": "nypl:Bnumber", + "value": "10513848" + }, + { + "type": "nypl:Oclc", + "value": "5325338" + }, + { + "type": "nypl:Oclc", + "value": "NYPG784593367-B" + }, + { + "type": "bf:Lccn", + "value": "54039494" + }, + { + "type": "bf:Identifier", + "value": "NN784593367" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0266330" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)5325338" + } + ], + "popularity": 2, + "updatedAt": 1733243767584, + "publicationStatement": [ + "[Freeport? 1954]" + ], + "identifier": [ + "urn:shelfmark:IVF (Freeport) 78-793", + "urn:bnum:10513848", + "urn:oclc:5325338", + "urn:oclc:NYPG784593367-B", + "urn:lccn:54039494", + "urn:identifier:NN784593367", + "urn:identifier:(WaOLN)nyp0266330", + "urn:identifier:(OCoLC)5325338" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1954" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Freeport (Ill.) -- Pictorial works." + ], + "titleDisplay": [ + "Camera studies of Freeport, Illinois: parks, churches, schools, civic, cultural, fraternal, and eleemosynary institutions." + ], + "uri": "b10513848", + "recordTypeId": "a", + "placeOfPublication": [ + "[Freeport?" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b10513848" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10513848", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2025-03-03" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433102119991" + ], + "identifier": [ + "urn:shelfmark:IVF (Freeport) 78-793", + "urn:barcode:33433102119991" + ], + "identifierV2": [ + { + "value": "IVF (Freeport) 78-793", + "type": "bf:ShelfMark" + }, + { + "value": "33433102119991", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "IVF (Freeport) 78-793" + ], + "requestable": [ + false + ], + "shelfMark": [ + "IVF (Freeport) 78-793" + ], + "shelfMark_sort": "aIVF (Freeport) 78-000793", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15739718" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10542108", + "_score": 0, + "_source": { + "extent": [ + "ca. 350 l." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Benton family", + "Graves family" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1953 + ], + "title": [ + "Benton-Graves ancestry" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "APV (Benton) 78-2626" + ], + "createdString": [ + "1953" + ], + "creatorLiteral": [ + "Heller, Blanche Benton" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1953 + ], + "idOclc": [ + "NYPG794138923-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Benton) 78-2626" + }, + { + "type": "nypl:Bnumber", + "value": "10542108" + }, + { + "type": "nypl:Oclc", + "value": "NYPG794138923-B" + }, + { + "type": "bf:Identifier", + "value": "NN794138923" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0547105" + } + ], + "popularity": 1, + "updatedAt": 1733243772202, + "publicationStatement": [ + "Los Angeles, 1953." + ], + "identifier": [ + "urn:shelfmark:APV (Benton) 78-2626", + "urn:bnum:10542108", + "urn:oclc:NYPG794138923-B", + "urn:identifier:NN794138923", + "urn:identifier:(WaOLN)nyp0547105" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1953" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Benton family.", + "Graves family." + ], + "titleDisplay": [ + "Benton-Graves ancestry, Compiled by Blanche Benton Heller. Edited by Edith Bartlett Sumner." + ], + "uri": "b10542108", + "recordTypeId": "a", + "placeOfPublication": [ + "Los Angeles" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + 0, + "b10542108" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10542108", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2025-03-03" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433091332787" + ], + "identifier": [ + "urn:shelfmark:APV (Benton) 78-2626", + "urn:barcode:33433091332787" + ], + "identifierV2": [ + { + "value": "APV (Benton) 78-2626", + "type": "bf:ShelfMark" + }, + { + "value": "33433091332787", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Benton) 78-2626" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APV (Benton) 78-2626" + ], + "shelfMark_sort": "aAPV (Benton) 78-002626", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15745448" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10569096", + "_score": 0, + "_source": { + "extent": [ + "illus." + ], + "note": [ + { + "noteType": "Note", + "label": "Quarterly, 1966-67; semiannual, 1968-69; irregular, 1970-", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Issued by the Dominica Social Development Dept., 1966-69; by the Social Development Division, 1970-", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Public welfare", + "Public welfare -- Dominica", + "Public welfare -- Dominica -- Periodicals", + "Community development", + "Community development -- Dominica", + "Community development -- Dominica -- Periodicals" + ], + "numItemDatesParsed": [ + 1 + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "rc" + ], + "createdYear": [ + null + ], + "title": [ + "Dominica welfare review." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 1 + ], + "shelfMark": [ + "JLM 79-714" + ], + "createdString": [ + " " + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Dominica. Social Development Department", + "Dominica. Social Development Division" + ], + "dateStartYear": [ + null + ], + "idOclc": [ + "1674189", + "NYPG794431658-S" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLM 79-714" + }, + { + "type": "nypl:Bnumber", + "value": "10569096" + }, + { + "type": "nypl:Oclc", + "value": "1674189" + }, + { + "type": "nypl:Oclc", + "value": "NYPG794431658-S" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0574404" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1674189" + }, + { + "type": "bf:Identifier", + "value": "RCON-EPA" + } + ], + "popularity": 1, + "updatedAt": 1733242875240, + "publicationStatement": [ + "Roseau." + ], + "identifier": [ + "urn:shelfmark:JLM 79-714", + "urn:bnum:10569096", + "urn:oclc:1674189", + "urn:oclc:NYPG794431658-S", + "urn:identifier:(WaOLN)nyp0574404", + "urn:identifier:(OCoLC)1674189", + "urn:identifier:RCON-EPA" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + " " + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Public welfare -- Dominica -- Periodicals.", + "Community development -- Dominica -- Periodicals." + ], + "titleDisplay": [ + "Dominica welfare review." + ], + "uri": "b10569096", + "recordTypeId": "a", + "placeOfPublication": [ + "Roseau." + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + 0, + "b10569096" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10569096", + "_nested": { + "field": "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": "1985", + "lte": "1986" + } + ], + "enumerationChronology": [ + "v. 3-11 (1966-1985/86) inc" + ], + "enumerationChronology_sort": [ + " 3-1985" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433016810362" + ], + "identifier": [ + "urn:shelfmark:JLM 79-714 Library has: Vol. 3, no. 3 (July/Sept. 1966)-v. 11 (1985/86). v. 3-11 (1966-1985/86) inc v. 3-11 (1966-1985/86) inc", + "urn:barcode:33433016810362" + ], + "identifierV2": [ + { + "value": "JLM 79-714 Library has: Vol. 3, no. 3 (July/Sept. 1966)-v. 11 (1985/86). v. 3-11 (1966-1985/86) inc v. 3-11 (1966-1985/86) inc", + "type": "bf:ShelfMark" + }, + { + "value": "33433016810362", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "JLM 79-714 Library has: Vol. 3, no. 3 (July/Sept. 1966)-v. 11 (1985/86). v. 3-11 (1966-1985/86) inc" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JLM 79-714 Library has: Vol. 3, no. 3 (July/Sept. 1966)-v. 11 (1985/86). v. 3-11 (1966-1985/86) inc v. 3-11 (1966-1985/86) inc" + ], + "shelfMark_sort": "aJLM 79-714 Library has: Vol. 3, no. 000003 (July/Sept. 1966)-v. 11 (1985/86). v. 3-11 (1966-1985/86) inc v. 3-11 (1966-1985/86) inc", + "status": [ + { + "id": "status:oh", + "label": "On Holdshelf" + } + ], + "status_packed": [ + "status:oh||On Holdshelf" + ], + "type": [ + "bf:Item" + ], + "uri": "i11976040", + "volumeRange": [ + { + "gte": 3, + "lte": 11 + } + ] + }, + "sort": [ + " 3-1985" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10587597", + "_score": 0, + "_source": { + "extent": [ + "viii, 183 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Electrostatic reproduction.", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "New York Genealogical and Biographical Society;", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Haught family" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Morgantown printing and binding co.]" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "buildingLocationIds": [ + "rc", + "ma" + ], + "createdYear": [ + 1948 + ], + "title": [ + "Genealogy of Haught family of America." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "APV (Haught) 79-205" + ], + "createdString": [ + "1948" + ], + "creatorLiteral": [ + "Haught, W. B." + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "New York Genealogical and Biographical Society Collection" + ], + "dateStartYear": [ + 1948 + ], + "donor": [ + "Gift of New York Genealogical and Biographical Society." + ], + "idOclc": [ + "13179133", + "NYPG794631208-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Haught) 79-205" + }, + { + "type": "nypl:Bnumber", + "value": "10587597" + }, + { + "type": "nypl:Oclc", + "value": "13179133" + }, + { + "type": "nypl:Oclc", + "value": "NYPG794631208-B" + }, + { + "type": "bf:Identifier", + "value": "NN794631208" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0593102" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)13179133" + } + ], + "popularity": 5, + "updatedAt": 1733243772202, + "publicationStatement": [ + "[Morgantown? W. Va., Morgantown printing and binding co.] 1948." + ], + "identifier": [ + "urn:shelfmark:APV (Haught) 79-205", + "urn:bnum:10587597", + "urn:oclc:13179133", + "urn:oclc:NYPG794631208-B", + "urn:identifier:NN794631208", + "urn:identifier:(WaOLN)nyp0593102", + "urn:identifier:(OCoLC)13179133" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1948" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Haught family." + ], + "titleDisplay": [ + "Genealogy of Haught family of America." + ], + "uri": "b10587597", + "recordTypeId": "a", + "placeOfPublication": [ + "[Morgantown? W. Va." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + 0, + "b10587597" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10587597", + "_nested": { + "field": "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:rcmg2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmg2||Offsite" + ], + "idBarcode": [ + "33433085763781" + ], + "identifier": [ + "urn:shelfmark:NYGB G H 2929", + "urn:barcode:33433085763781" + ], + "identifierV2": [ + { + "value": "NYGB G H 2929", + "type": "bf:ShelfMark" + }, + { + "value": "33433085763781", + "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 G H 2929" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "NYGB G H 2929" + ], + "shelfMark_sort": "aNYGB G H 002929", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i23133172" + }, + "sort": [ + null + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b10587597", + "_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" + ], + "dueDate": [ + "2025-03-03" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433097902344" + ], + "identifier": [ + "urn:shelfmark:APV (Haught) 79-205", + "urn:barcode:33433097902344" + ], + "identifierV2": [ + { + "value": "APV (Haught) 79-205", + "type": "bf:ShelfMark" + }, + { + "value": "33433097902344", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Haught) 79-205" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APV (Haught) 79-205" + ], + "shelfMark_sort": "aAPV (Haught) 79-000205", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15753820" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10607158", + "_score": 0, + "_source": { + "extent": [ + "1 v." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Payot" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "rc" + ], + "createdYear": [ + 1968 + ], + "title": [ + "Le champion des dames. Publié par Arthur Piaget." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "GDA (Société d'histoire de la Suisse romande, Lausanne. Mémoires et documents, sér 3, t. 8)" + ], + "createdString": [ + "1968" + ], + "creatorLiteral": [ + "Le Franc, Martin, approximately 1410-1461" + ], + "numElectronicResources": [ + 0 + ], + "seriesStatement": [ + "Mémoires et documents publiés par la Société d'histoire de la Suisse romande ; sér 3, t. 8" + ], + "dateStartYear": [ + 1968 + ], + "idOclc": [ + "NYPG794837052-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "GDA (Société d'histoire de la Suisse romande, Lausanne. Mémoires et documents, sér 3, t. 8)" + }, + { + "type": "nypl:Bnumber", + "value": "10607158" + }, + { + "type": "nypl:Oclc", + "value": "NYPG794837052-B" + }, + { + "type": "bf:Identifier", + "value": "NN794837052" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0612758" + } + ], + "popularity": 2, + "updatedAt": 1733242864958, + "publicationStatement": [ + "Lausanne, Payot, 1968." + ], + "identifier": [ + "urn:shelfmark:GDA (Société d'histoire de la Suisse romande, Lausanne. Mémoires et documents, sér 3, t. 8)", + "urn:bnum:10607158", + "urn:oclc:NYPG794837052-B", + "urn:identifier:NN794837052", + "urn:identifier:(WaOLN)nyp0612758" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1968" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Le champion des dames. Publié par Arthur Piaget." + ], + "uri": "b10607158", + "recordTypeId": "a", + "placeOfPublication": [ + "Lausanne" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + 0, + "b10607158" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10607158", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2025-09-02" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433103909630" + ], + "identifier": [ + "urn:shelfmark:GDA (Societe d'histoire de la Suisse romande, Lausanne. Memoires et documents, ser 3, t. 8) NYPL has: Ptie 1", + "urn:barcode:33433103909630" + ], + "identifierV2": [ + { + "value": "GDA (Societe d'histoire de la Suisse romande, Lausanne. Memoires et documents, ser 3, t. 8) NYPL has: Ptie 1", + "type": "bf:ShelfMark" + }, + { + "value": "33433103909630", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "GDA (Societe d'histoire de la Suisse romande, Lausanne. Memoires et documents, ser 3, t. 8) NYPL has: Ptie 1" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + false + ], + "shelfMark": [ + "GDA (Societe d'histoire de la Suisse romande, Lausanne. Memoires et documents, ser 3, t. 8) NYPL has: Ptie 1" + ], + "shelfMark_sort": "aGDA (Societe d'histoire de la Suisse romande, Lausanne. Memoires et documents, ser 3, t. 8) NYPL has: Ptie 000001", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15757819" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10608258", + "_score": 0, + "_source": { + "extent": [ + "[19] p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Poems.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Caldwell Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "sc" + ], + "createdYear": [ + 1975 + ], + "title": [ + "Days & nights" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "Sc D 80-47" + ], + "createdString": [ + "1975" + ], + "creatorLiteral": [ + "Brathwaite, Kamau, 1930-2020" + ], + "idLccn": [ + "76378029" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1975 + ], + "idOclc": [ + "2615972", + "NYPG794849033-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc D 80-47" + }, + { + "type": "nypl:Bnumber", + "value": "10608258" + }, + { + "type": "nypl:Oclc", + "value": "2615972" + }, + { + "type": "nypl:Oclc", + "value": "NYPG794849033-B" + }, + { + "type": "bf:Lccn", + "value": "76378029" + }, + { + "type": "bf:Identifier", + "value": "NN794849033" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0613867" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)2615972" + } + ], + "popularity": 1, + "updatedAt": 1733243582999, + "publicationStatement": [ + "Mona [Jamaica] : Caldwell Press, 1975." + ], + "identifier": [ + "urn:shelfmark:Sc D 80-47", + "urn:bnum:10608258", + "urn:oclc:2615972", + "urn:oclc:NYPG794849033-B", + "urn:lccn:76378029", + "urn:identifier:NN794849033", + "urn:identifier:(WaOLN)nyp0613867", + "urn:identifier:(OCoLC)2615972" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1975" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Days & nights / Edward Brathwaite." + ], + "uri": "b10608258", + "lccClassification": [ + "PR9265.9.B7 D3" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Mona [Jamaica]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Days and nights" + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + 0, + "b10608258" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10608258", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:60", + "label": "pamphlets, singles, 1-50 pages" + } + ], + "catalogItemType_packed": [ + "catalogItemType:60||pamphlets, singles, 1-50 pages" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433036670747" + ], + "identifier": [ + "urn:shelfmark:Sc D 80-47", + "urn:barcode:33433036670747" + ], + "identifierV2": [ + { + "value": "Sc D 80-47", + "type": "bf:ShelfMark" + }, + { + "value": "33433036670747", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + } + ], + "owner_packed": [ + "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + ], + "physicalLocation": [ + "Sc D 80-47" + ], + "requestable": [ + true + ], + "shelfMark": [ + "Sc D 80-47" + ], + "shelfMark_sort": "aSc D 80-000047", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i11981028" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10669586", + "_score": 0, + "_source": { + "extent": [ + "vii, 338 pages ;" + ], + "note": [ + { + "noteType": "Awards", + "label": "Pulitzer Prize for Fiction, 1981.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Mothers and sons", + "Mothers and sons -- Fiction", + "Young men", + "Young men -- Fiction", + "New Orleans (La.)", + "New Orleans (La.) -- Fiction", + "Louisiana", + "Louisiana -- New Orleans" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Louisiana State University Press" + ], + "description": [ + "A spectacular, Pultizer Prize-winning novel by a master of comedy, beloved by readers and critics alike. The place is the French Quarter, the characters, denizens of New Orleans's lower depths.", + "Meet Ignatius J. Reilly, a 30-year-old medievalist who lives at home with his mother in New Orleans, and pens his magnum opus on Big Chief writing pads he keeps hidden under his bed. Considered by many a comic masterpiece that memorably evokes the city of New Orleans and whose robust protagonist is a modern-day Falstaff, Don Quixote, or Gargantua; other are not amused by a fat, flatulent, gluttonous, loud, lying, hypocritical, self-deceiving, self-centered blowhard who masturbates to memories of a dog." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1980 + ], + "title": [ + "A confederacy of dunces" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "JFE 80-3054" + ], + "createdString": [ + "1980" + ], + "creatorLiteral": [ + "Toole, John Kennedy, 1937-1969" + ], + "idLccn": [ + "79020190" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Percy, Walker, 1916-1990" + ], + "dateStartYear": [ + 1980 + ], + "idOclc": [ + "5336849" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 80-3054" + }, + { + "type": "nypl:Bnumber", + "value": "10669586" + }, + { + "type": "bf:Isbn", + "value": "0807106577" + }, + { + "type": "bf:Isbn", + "value": "9780807106570" + }, + { + "type": "bf:Isbn", + "value": "0802130208" + }, + { + "type": "bf:Isbn", + "value": "9780802130204" + }, + { + "type": "nypl:Oclc", + "value": "5336849" + }, + { + "type": "bf:Lccn", + "value": "79020190" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)5336849" + }, + { + "type": "bf:Identifier", + "value": "NN804667460" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0675963" + }, + { + "type": "bf:Identifier", + "value": "NYPG804667460-B" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)59239648 (OCoLC)732846280 (OCoLC)787190384" + } + ], + "popularity": 5, + "updatedAt": 1733242851280, + "publicationStatement": [ + "Baton Rouge : Louisiana State University Press, 1980." + ], + "genreForm": [ + "Fiction.", + "Humorous fiction.", + "Novels." + ], + "idIsbn": [ + "0807106577", + "9780807106570", + "0802130208", + "9780802130204" + ], + "identifier": [ + "urn:shelfmark:JFE 80-3054", + "urn:bnum:10669586", + "urn:isbn:0807106577", + "urn:isbn:9780807106570", + "urn:isbn:0802130208", + "urn:isbn:9780802130204", + "urn:oclc:5336849", + "urn:lccn:79020190", + "urn:identifier:(OCoLC)5336849", + "urn:identifier:NN804667460", + "urn:identifier:(WaOLN)nyp0675963", + "urn:identifier:NYPG804667460-B", + "urn:identifier:(OCoLC)59239648 (OCoLC)732846280 (OCoLC)787190384" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Mothers and sons -- Fiction.", + "Young men -- Fiction.", + "Mothers and sons.", + "Young men.", + "New Orleans (La.) -- Fiction.", + "Louisiana -- New Orleans." + ], + "titleDisplay": [ + "A confederacy of dunces / John Kennedy Toole ; foreword by Walker Percy." + ], + "uri": "b10669586", + "lccClassification": [ + "PS3570.O54 C66 1980", + "PZ4.T6719 Co 1980" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Baton Rouge" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm" + ], + "idIsbn_clean": [ + "0807106577", + "9780807106570", + "0802130208", + "9780802130204" + ] + }, + "sort": [ + 0, + "b10669586" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10669586", + "_nested": { + "field": "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 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "idBarcode": [ + "33433046431197" + ], + "identifier": [ + "urn:shelfmark:JFE 80-3054", + "urn:barcode:33433046431197" + ], + "identifierV2": [ + { + "value": "JFE 80-3054", + "type": "bf:ShelfMark" + }, + { + "value": "33433046431197", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "JFE 80-3054" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JFE 80-3054" + ], + "shelfMark_sort": "aJFE 80-003054", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i13886342" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10674298", + "_score": 0, + "_source": { + "extent": [ + "207, 5 l. illus., ports." + ], + "note": [ + { + "noteType": "Note", + "label": "Geneal. table with additions in pencil, fold. in pocket.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Corbett family" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1957 + ], + "title": [ + "The descendants of Robert Corbett of Weymouth, Massachusetts. Compiled from available sources by Melvin C. Corbett." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "APV (Corbett) 80-2570" + ], + "createdString": [ + "1957" + ], + "creatorLiteral": [ + "Corbett, Melvin C. (Melvin Chittenden), 1893-1966" + ], + "idLccn": [ + "74230499" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1957 + ], + "idOclc": [ + "68102", + "NYPG804726377-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Corbett) 80-2570" + }, + { + "type": "nypl:Bnumber", + "value": "10674298" + }, + { + "type": "nypl:Oclc", + "value": "68102" + }, + { + "type": "nypl:Oclc", + "value": "NYPG804726377-B" + }, + { + "type": "bf:Lccn", + "value": "74230499" + }, + { + "type": "bf:Identifier", + "value": "NN804726377" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0680707" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)68102" + } + ], + "popularity": 1, + "updatedAt": 1733243767584, + "publicationStatement": [ + "Darien, Conn., 1957." + ], + "identifier": [ + "urn:shelfmark:APV (Corbett) 80-2570", + "urn:bnum:10674298", + "urn:oclc:68102", + "urn:oclc:NYPG804726377-B", + "urn:lccn:74230499", + "urn:identifier:NN804726377", + "urn:identifier:(WaOLN)nyp0680707", + "urn:identifier:(OCoLC)68102" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1957" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Corbett family." + ], + "titleDisplay": [ + "The descendants of Robert Corbett of Weymouth, Massachusetts. Compiled from available sources by Melvin C. Corbett." + ], + "uri": "b10674298", + "lccClassification": [ + "CS71.C788 1957" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Darien, Conn." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + 0, + "b10674298" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10674298", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2025-03-03" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433089963700" + ], + "identifier": [ + "urn:shelfmark:APV (Corbett) 80-2570", + "urn:barcode:33433089963700" + ], + "identifierV2": [ + { + "value": "APV (Corbett) 80-2570", + "type": "bf:ShelfMark" + }, + { + "value": "33433089963700", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Corbett) 80-2570" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APV (Corbett) 80-2570" + ], + "shelfMark_sort": "aAPV (Corbett) 80-002570", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15771850" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10701030", + "_score": 0, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Description based on: Vol. 8, no. 31 (July-Dec. 1960); title from cover.", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Suspended July 1979-May 1983.", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Official publication of the Young Men's Progessive Club, -v. 3, no. 9.", + "type": "bf:Note" + }, + { + "noteType": "Indexes/Finding Aids", + "label": "Vols. 1 (1942)-14 (1973) 1 v. (Available as a separate publication compiled by R.W. Sander, as v. 2 of Art & civilization series)", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Vol. 19, no. 73 (June 1990) issued jointly with no. 41 of: Kyk-over-Al.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began in Dec. 1942." + ], + "subjectLiteral_exploded": [ + "West Indian literature (English)", + "West Indian literature (English) -- Periodicals", + "Barbadian literature", + "Barbadian literature -- Periodicals" + ], + "numItemDatesParsed": [ + 30 + ], + "publisherLiteral": [ + "Bim" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 30 + ], + "buildingLocationIds": [ + "sc", + "rc", + "ma" + ], + "createdYear": [ + 1942 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "Bim." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 29 + ], + "shelfMark": [ + "*DA (Bim)" + ], + "createdString": [ + "1942" + ], + "idLccn": [ + "sn 92025401" + ], + "idIssn": [ + "0006-2766" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Young Men's Progressive Club (Barbados)" + ], + "dateStartYear": [ + 1942 + ], + "donor": [ + "Schomburg NEH Humanities Resources Access Project." + ], + "idOclc": [ + "2781501", + "NYPG81-S662" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DA (Bim)" + }, + { + "type": "nypl:Bnumber", + "value": "10701030" + }, + { + "type": "nypl:Oclc", + "value": "2781501" + }, + { + "type": "nypl:Oclc", + "value": "NYPG81-S662" + }, + { + "type": "bf:Lccn", + "value": "sn 92025401" + }, + { + "type": "bf:Issn", + "value": "0006-2766" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0707576" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)2781501" + }, + { + "type": "bf:Identifier", + "value": "NEH-SCH-SCR-ACCESS2" + } + ], + "popularity": 72, + "uniformTitle": [ + "Kyk-over-Al." + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "holdingStatement": [ + "1(Dec. 1942)-19(June 1990)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*DA (Bim)" + } + ], + "notes": [ + "Incomplete" + ], + "physicalLocation": [ + "*DA (Bim)" + ], + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:scf", + "label": "Schomburg Center - Research & Reference" + } + ], + "shelfMark": [ + "*DA (Bim)" + ], + "uri": "h1140521" + } + ], + "updatedAt": 1733243403068, + "publicationStatement": [ + "St. Michael, Barbados, W.I. Bim" + ], + "identifier": [ + "urn:shelfmark:*DA (Bim)", + "urn:bnum:10701030", + "urn:oclc:2781501", + "urn:oclc:NYPG81-S662", + "urn:lccn:sn 92025401", + "urn:issn:0006-2766", + "urn:identifier:(WaOLN)nyp0707576", + "urn:identifier:(OCoLC)2781501", + "urn:identifier:NEH-SCH-SCR-ACCESS2" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1942" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "West Indian literature (English) -- Periodicals.", + "Barbadian literature -- Periodicals." + ], + "titleDisplay": [ + "Bim." + ], + "uri": "b10701030", + "lccClassification": [ + "AP6 .B5" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "St. Michael, Barbados, W.I." + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "titleAlt": [ + "Bim (Christ Church)" + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + 0, + "b10701030" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 30, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10701030", + "_nested": { + "field": "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": "1987", + "lte": "1990" + } + ], + "enumerationChronology": [ + "v. 18, no. 71-v. 19 (Dec. 1987-June 1990)" + ], + "enumerationChronology_sort": [ + " 18-1987" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433031260122" + ], + "identifier": [ + "urn:shelfmark:Sc Ser.-L .B4538 v. 18, no. 71-v. 19 (Dec. 1987-June 1990)", + "urn:barcode:33433031260122" + ], + "identifierV2": [ + { + "value": "Sc Ser.-L .B4538 v. 18, no. 71-v. 19 (Dec. 1987-June 1990)", + "type": "bf:ShelfMark" + }, + { + "value": "33433031260122", + "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 .B4538" + ], + "requestable": [ + true + ], + "shelfMark": [ + "Sc Ser.-L .B4538 v. 18, no. 71-v. 19 (Dec. 1987-June 1990)" + ], + "shelfMark_sort": "aSc Ser.-L .B4538 v. 000018, no. 71-v. 19 (Dec. 1987-June 1990)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i11993817", + "volumeRange": [ + { + "gte": 18, + "lte": 18 + }, + { + "gte": 19, + "lte": 19 + } + ] + }, + "sort": [ + " 18-1987" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b10701030", + "_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": "1983", + "lte": "1986" + } + ], + "enumerationChronology": [ + "v. 17-18, no. 70 (June 1983-Dec. 1986)" + ], + "enumerationChronology_sort": [ + " 17-1983" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433031260114" + ], + "identifier": [ + "urn:shelfmark:Sc Ser.-L .B4538 v. 17-18, no. 70 (June 1983-Dec. 1986)", + "urn:barcode:33433031260114" + ], + "identifierV2": [ + { + "value": "Sc Ser.-L .B4538 v. 17-18, no. 70 (June 1983-Dec. 1986)", + "type": "bf:ShelfMark" + }, + { + "value": "33433031260114", + "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 .B4538" + ], + "requestable": [ + true + ], + "shelfMark": [ + "Sc Ser.-L .B4538 v. 17-18, no. 70 (June 1983-Dec. 1986)" + ], + "shelfMark_sort": "aSc Ser.-L .B4538 v. 000017-18, no. 70 (June 1983-Dec. 1986)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i11993816", + "volumeRange": [ + { + "gte": 17, + "lte": 18 + } + ] + }, + "sort": [ + " 17-1983" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b10701030", + "_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": "1975", + "lte": "1979" + } + ], + "enumerationChronology": [ + "v. 15-17, inc (June 1975-June 1979)" + ], + "enumerationChronology_sort": [ + " 15-1975" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433031260106" + ], + "identifier": [ + "urn:shelfmark:Sc Ser.-L .B4538 v. 15-17, inc (June 1975-June 1979)", + "urn:barcode:33433031260106" + ], + "identifierV2": [ + { + "value": "Sc Ser.-L .B4538 v. 15-17, inc (June 1975-June 1979)", + "type": "bf:ShelfMark" + }, + { + "value": "33433031260106", + "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 .B4538" + ], + "requestable": [ + true + ], + "shelfMark": [ + "Sc Ser.-L .B4538 v. 15-17, inc (June 1975-June 1979)" + ], + "shelfMark_sort": "aSc Ser.-L .B4538 v. 000015-17, inc (June 1975-June 1979)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i11993815", + "volumeRange": [ + { + "gte": 15, + "lte": 17 + } + ] + }, + "sort": [ + " 15-1975" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10721308", + "_score": 0, + "_source": { + "extent": [ + "2 v.: ill., facsim.;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Original copy owned by William Sydnor Francis.\"", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Francis family" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "D. W. Francis" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1948 + ], + "title": [ + "Copy of Francis tree as written by Mrs. Maria Clayton Francis Johnston in 1910 / research completed by Marvyn Francis." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "APV (Francis) 81-294" + ], + "createdString": [ + "1948" + ], + "creatorLiteral": [ + "Johnston, Maria Clayton Francis" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Francis, Marvyn Bliss, 1904-" + ], + "dateStartYear": [ + 1948 + ], + "idOclc": [ + "NYPG814238881-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Francis) 81-294" + }, + { + "type": "nypl:Bnumber", + "value": "10721308" + }, + { + "type": "nypl:Oclc", + "value": "NYPG814238881-B" + }, + { + "type": "bf:Identifier", + "value": "NN814238881" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0728042" + } + ], + "popularity": 1, + "updatedAt": 1733243767584, + "publicationStatement": [ + "New York City: D. W. Francis, 1948 [i. e. 1980]" + ], + "identifier": [ + "urn:shelfmark:APV (Francis) 81-294", + "urn:bnum:10721308", + "urn:oclc:NYPG814238881-B", + "urn:identifier:NN814238881", + "urn:identifier:(WaOLN)nyp0728042" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1948" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Francis family." + ], + "titleDisplay": [ + "Copy of Francis tree as written by Mrs. Maria Clayton Francis Johnston in 1910 / research completed by Marvyn Francis." + ], + "uri": "b10721308", + "recordTypeId": "a", + "placeOfPublication": [ + "New York City" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + 0, + "b10721308" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10721308", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2025-03-03" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433093147563" + ], + "identifier": [ + "urn:shelfmark:APV (Francis) 81-294", + "urn:barcode:33433093147563" + ], + "identifierV2": [ + { + "value": "APV (Francis) 81-294", + "type": "bf:ShelfMark" + }, + { + "value": "33433093147563", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Francis) 81-294" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APV (Francis) 81-294" + ], + "shelfMark_sort": "aAPV (Francis) 81-000294", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15781627" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10723173", + "_score": 0, + "_source": { + "extent": [ + "63 p. ports." + ], + "note": [ + { + "noteType": "Note", + "label": "Electrostatic reproduction.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Harris family" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "G. E. Harris" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1899 + ], + "title": [ + "Genealogy of that part of the Harris family descended from William Harris, Son of James Harris, who emigrated from England about 1725, together with a genealogical chart of the descendants of James Harris." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "APV (Harris) 78-2128" + ], + "createdString": [ + "1899" + ], + "creatorLiteral": [ + "Harris, Andrew" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1899 + ], + "idOclc": [ + "NYPG814262490-B" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Harris) 78-2128" + }, + { + "type": "nypl:Bnumber", + "value": "10723173" + }, + { + "type": "nypl:Oclc", + "value": "NYPG814262490-B" + }, + { + "type": "bf:Identifier", + "value": "NN814262490" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0729917" + } + ], + "popularity": 1, + "updatedAt": 1733243772202, + "publicationStatement": [ + "Cassville, Mo., G. E. Harris, 1899." + ], + "identifier": [ + "urn:shelfmark:APV (Harris) 78-2128", + "urn:bnum:10723173", + "urn:oclc:NYPG814262490-B", + "urn:identifier:NN814262490", + "urn:identifier:(WaOLN)nyp0729917" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1899" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Harris family." + ], + "titleDisplay": [ + "Genealogy of that part of the Harris family descended from William Harris, Son of James Harris, who emigrated from England about 1725, together with a genealogical chart of the descendants of James Harris." + ], + "uri": "b10723173", + "recordTypeId": "a", + "placeOfPublication": [ + "Cassville, Mo." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + 0, + "b10723173" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10723173", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2025-03-03" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433097901551" + ], + "identifier": [ + "urn:shelfmark:APV (Harris) 78-2128", + "urn:barcode:33433097901551" + ], + "identifierV2": [ + { + "value": "APV (Harris) 78-2128", + "type": "bf:ShelfMark" + }, + { + "value": "33433097901551", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Harris) 78-2128" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APV (Harris) 78-2128" + ], + "shelfMark_sort": "aAPV (Harris) 78-002128", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15781870" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10760331", + "_score": 0, + "_source": { + "extent": [ + "v. ill." + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Vols. for 1917-July 1920 published by the U. S. Marines stationed at Quantico, Va.; July 1920-1941 by the U.S. Marine Corps Institute; Mar. 1943- by the Leatherneck Association.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Began in 1917." + ], + "subjectLiteral_exploded": [ + "United States. Marine Corps", + "United States. Marine Corps -- Periodicals" + ], + "numItemDatesParsed": [ + 114 + ], + "publisherLiteral": [ + "Leatherneck Association, etc.]" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 114 + ], + "buildingLocationIds": [ + "rc", + "ma" + ], + "createdYear": [ + 1917 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "Leatherneck" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 103 + ], + "shelfMark": [ + "*ZAN-5305Microfilm]" + ], + "createdString": [ + "1917" + ], + "idLccn": [ + "ca 24000444" + ], + "idIssn": [ + "0023-981X" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Leatherneck Association", + "Marine Corps Institute (Washington, D.C.)" + ], + "dateStartYear": [ + 1917 + ], + "donor": [ + "Gift of the DeWitt Wallace Endowment Fund, named in honor of the founder of Reader's Digest" + ], + "idOclc": [ + "NYPG82-S2947" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZAN-5305Microfilm]" + }, + { + "type": "nypl:Bnumber", + "value": "10760331" + }, + { + "type": "nypl:Oclc", + "value": "NYPG82-S2947" + }, + { + "type": "bf:Lccn", + "value": "ca 24000444" + }, + { + "type": "bf:Issn", + "value": "0023-981X" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0291275" + } + ], + "popularity": 46, + "formerTitle": [ + "Quantico leatherneck Nov.1917-" + ], + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "holdingStatement": [ + "5(1921)-85(2002)." + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*ZAN-5305" + } + ], + "physicalLocation": [ + "*ZAN-5305" + ], + "format": [ + "MICROFILM " + ], + "location": [ + { + "code": "loc:mai82", + "label": "Schwarzman Building - Microforms Room 315" + } + ], + "shelfMark": [ + "*ZAN-5305" + ], + "uri": "h1013262" + }, + { + "checkInBoxes": [ + { + "coverage": "Vol. 104 No. 1 (Jan. 2021)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 104 No. 2 (Feb. 2021)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 104 No. 3 (Mar. 2021)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 104 No. 4 (Apr. 2021)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 104 No. 5 (May. 2021)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 104 No. 6 (Jun. 2021)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 104 No. 7 (Jul. 2021)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 104 No. 8 (Aug. 2021)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 104 No. 9 (Sep. 2021)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 104 No. 10 (Oct. 2021)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 104 No. 11 (Nov. 2021)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 104 No. 12 (Dec. 2021)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 105 No. 1 (Jan. 2022)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 105 No. 2 (Feb. 2022)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 105 No. 3 (Mar. 2022)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 105 No. 4 (Apr. 2022)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 105 No. 5 (May. 2022)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 105 No. 6 (Jun. 2022)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 105 No. 7 (Jul. 2022)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Unavailable" + }, + { + "coverage": "Vol. 105 No. 8 (Aug. 2022)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 105 No. 9 (Sep. 2022)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 105 No. 10 (Oct. 2022)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 105 No. 11 (Nov. 2022)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 105 No. 12 (Dec. 2022)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 106 No. 1 (Jan. 2023)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 106 No. 2 (Feb. 2023)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 106 No. 3 (Mar. 2023)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 106 No. 4 (Apr. 2023)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 106 No. 5 (May. 2023)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 106 No. 6 (Jun. 2023)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 106 No. 7 (Jul. 2023)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 106 No. 8 (Aug. 2023)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 106 No. 9 (Sep. 2023)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 106 No. 10 (Oct. 2023)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 106 No. 11 (Nov. 2023)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 106 No. 12 (Dec. 2023)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 107 No. 1 (Jan. 2024)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 107 No. 2 (Feb. 2024)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 107 No. 3 (Mar. 2024)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 107 No. 4 (Apr. 2024)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 107 No. 5 (May. 2024)", + "position": 41, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 107 No. 6 (Jun. 2024)", + "position": 42, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 107 No. 7 (Jul. 2024)", + "position": 43, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 107 No. 8 (Aug. 2024)", + "position": 44, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 107 No. 9 (Sep. 2024)", + "position": 45, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 107 No. 10 (Oct. 2024)", + "position": 46, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 107 No. 11 (Nov. 2024)", + "position": 47, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 107 No. 12 (Dec. 2024)", + "position": 48, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 108 No. 1 (Jan. 2025)", + "position": 49, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 108 No. 2 (Feb. 2025)", + "position": 50, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 108 No. 3 (Mar. 2025)", + "position": 51, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 108 No. 4 (Apr. 2025)", + "position": 52, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 108 No. 5 (May. 2025)", + "position": 53, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 108 No. 6 (Jun. 2025)", + "position": 54, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JFR 04-1" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "86(2003)-87(2004), 88:2(2005)-92(2009), 93:2(2010)-102:6(2019),102:8(2019)-103(2020)- ", + "v. 106, no. 10 (2023-10); v. 106, no. 12 (2023-12) - v. 107, no. 1 (2024-01); v. 107, no. 3 (2024-03) - no. 7 (2024-07)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "JFR 04-1" + } + ], + "physicalLocation": [ + "JFR 04-1" + ], + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "JFR 04-1" + ], + "uri": "h1001215" + } + ], + "updatedAt": 1733243506518, + "publicationStatement": [ + "[Quantico, Va., etc., Leatherneck Association, etc.]" + ], + "identifier": [ + "urn:shelfmark:*ZAN-5305Microfilm]", + "urn:bnum:10760331", + "urn:oclc:NYPG82-S2947", + "urn:lccn:ca 24000444", + "urn:issn:0023-981X", + "urn:identifier:(WaOLN)nyp0291275" + ], + "numCheckinCardItems": [ + 54 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1917" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "United States. Marine Corps -- Periodicals." + ], + "titleDisplay": [ + "Leatherneck [microform]." + ], + "uri": "b10760331", + "lccClassification": [ + "D501 .L4" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "[Quantico, Va., etc." + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "titleAlt": [ + "Leatherneck" + ], + "dimensions": [ + "30-63 cm." + ] + }, + "sort": [ + 0, + "b10760331" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 114, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10760331", + "_nested": { + "field": "items", + "offset": 82 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2025-06-01", + "lte": "2025-06-01" + } + ], + "enumerationChronology": [ + "Vol. 108 No. 6 (Jun. 2025)" + ], + "enumerationChronology_sort": [ + " 108-2025-06-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": "JFR 04-1", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JFR 04-1" + ], + "shelfMark_sort": "aJFR 04-000001", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1001215-0", + "volumeRange": [ + { + "gte": 108, + "lte": 108 + } + ], + "volumeRaw": [ + "Vol. 108 No. 6" + ] + }, + "sort": [ + " 108-2025-06-01" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b10760331", + "_nested": { + "field": "items", + "offset": 81 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2025-05-01", + "lte": "2025-05-01" + } + ], + "enumerationChronology": [ + "Vol. 108 No. 5 (May. 2025)" + ], + "enumerationChronology_sort": [ + " 108-2025-05-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": "JFR 04-1", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JFR 04-1" + ], + "shelfMark_sort": "aJFR 04-000001", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1001215-1", + "volumeRange": [ + { + "gte": 108, + "lte": 108 + } + ], + "volumeRaw": [ + "Vol. 108 No. 5" + ] + }, + "sort": [ + " 108-2025-05-01" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b10760331", + "_nested": { + "field": "items", + "offset": 80 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2025-04-01", + "lte": "2025-04-01" + } + ], + "enumerationChronology": [ + "Vol. 108 No. 4 (Apr. 2025)" + ], + "enumerationChronology_sort": [ + " 108-2025-04-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": "JFR 04-1", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JFR 04-1" + ], + "shelfMark_sort": "aJFR 04-000001", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1001215-2", + "volumeRange": [ + { + "gte": 108, + "lte": 108 + } + ], + "volumeRaw": [ + "Vol. 108 No. 4" + ] + }, + "sort": [ + " 108-2025-04-01" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10798199", + "_score": 0, + "_source": { + "extent": [ + "viii, 246 leaves, [1] leaf of plates : geneal. tables, map. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Cover title.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Photocopy (negative).", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Johnson family" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "M. Johnson" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1954 + ], + "title": [ + "Ancestry of Maro Johnson and of his sister Eliza Love Johnson : descendants of Captain John Johnson and his wife, Margery (Roxbury, Mass. 1630)" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "APV (Johnson) 82-1103" + ], + "createdString": [ + "1954" + ], + "creatorLiteral": [ + "Johnson, Maro" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1954 + ], + "idOclc": [ + "NYPG83-B48014" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Johnson) 82-1103" + }, + { + "type": "nypl:Bnumber", + "value": "10798199" + }, + { + "type": "nypl:Oclc", + "value": "NYPG83-B48014" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0805122" + } + ], + "popularity": 2, + "updatedAt": 1733243772202, + "publicationStatement": [ + "[S.l. : M. Johnson, 1954?]" + ], + "identifier": [ + "urn:shelfmark:APV (Johnson) 82-1103", + "urn:bnum:10798199", + "urn:oclc:NYPG83-B48014", + "urn:identifier:(WaOLN)nyp0805122" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1954" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Johnson family." + ], + "titleDisplay": [ + "Ancestry of Maro Johnson and of his sister Eliza Love Johnson : descendants of Captain John Johnson and his wife, Margery (Roxbury, Mass. 1630) / [Maro Johnson]." + ], + "uri": "b10798199", + "recordTypeId": "a", + "placeOfPublication": [ + "[S.l." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "29 cm." + ] + }, + "sort": [ + 0, + "b10798199" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10798199", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2025-03-03" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433093160830" + ], + "identifier": [ + "urn:shelfmark:APV (Johnson) 82-1103", + "urn:barcode:33433093160830" + ], + "identifierV2": [ + { + "value": "APV (Johnson) 82-1103", + "type": "bf:ShelfMark" + }, + { + "value": "33433093160830", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Johnson) 82-1103" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APV (Johnson) 82-1103" + ], + "shelfMark_sort": "aAPV (Johnson) 82-001103", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15797870" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10809011", + "_score": 0, + "_source": { + "extent": [ + "viii, 657 p. : ill. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Law", + "Law -- History" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Harvard University Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "rc" + ], + "createdYear": [ + 1983 + ], + "title": [ + "Law and revolution : the formation of the Western legal tradition" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "JLE 83-3045" + ], + "createdString": [ + "1983" + ], + "creatorLiteral": [ + "Berman, Harold Joseph, 1918-" + ], + "idLccn": [ + "82015747" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1983 + ], + "idOclc": [ + "8827871", + "NYPG83-B59813" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLE 83-3045" + }, + { + "type": "nypl:Bnumber", + "value": "10809011" + }, + { + "type": "bf:Isbn", + "value": "0674517741" + }, + { + "type": "nypl:Oclc", + "value": "8827871" + }, + { + "type": "nypl:Oclc", + "value": "NYPG83-B59813" + }, + { + "type": "bf:Lccn", + "value": "82015747" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0815950" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)8827871" + } + ], + "popularity": 17, + "updatedAt": 1733243342220, + "publicationStatement": [ + "Cambridge, Mass. : Harvard University Press, 1983." + ], + "idIsbn": [ + "0674517741" + ], + "identifier": [ + "urn:shelfmark:JLE 83-3045", + "urn:bnum:10809011", + "urn:isbn:0674517741", + "urn:oclc:8827871", + "urn:oclc:NYPG83-B59813", + "urn:lccn:82015747", + "urn:identifier:(WaOLN)nyp0815950", + "urn:identifier:(OCoLC)8827871" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Law -- History." + ], + "titleDisplay": [ + "Law and revolution : the formation of the Western legal tradition / Harold J. Berman." + ], + "uri": "b10809011", + "lccClassification": [ + "K150 .B47 1983" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Cambridge, Mass." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ], + "idIsbn_clean": [ + "0674517741" + ] + }, + "sort": [ + 0, + "b10809011" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10809011", + "_nested": { + "field": "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": [ + "33433056869286" + ], + "identifier": [ + "urn:shelfmark:JLE 83-3045", + "urn:barcode:33433056869286" + ], + "identifierV2": [ + { + "value": "JLE 83-3045", + "type": "bf:ShelfMark" + }, + { + "value": "33433056869286", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "JLE 83-3045" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JLE 83-3045" + ], + "shelfMark_sort": "aJLE 83-003045", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i12606976" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10846129", + "_score": 0, + "_source": { + "extent": [ + "xii p., 81 p. of plates : ill. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sommer, Giorgio, 1834-1914", + "Photographers", + "Photographers -- Italy", + "Photographers -- Italy -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Electa Editrice" + ], + "language": [ + { + "id": "lang:ita", + "label": "Italian" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1981 + ], + "title": [ + "Giorgio Sommer, fotografo a Napoli" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "MFX+ (Sommer) 84-1356" + ], + "createdString": [ + "1981" + ], + "creatorLiteral": [ + "Sommer, Giorgio, 1834-1914" + ], + "numElectronicResources": [ + 0 + ], + "seriesStatement": [ + "Visibilia/fotografia" + ], + "contributorLiteral": [ + "Palazzoli, Daniela" + ], + "dateStartYear": [ + 1981 + ], + "idOclc": [ + "9844095", + "NYPG84-B22746" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "MFX+ (Sommer) 84-1356" + }, + { + "type": "nypl:Bnumber", + "value": "10846129" + }, + { + "type": "nypl:Oclc", + "value": "9844095" + }, + { + "type": "nypl:Oclc", + "value": "NYPG84-B22746" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0298069" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)9844095" + } + ], + "popularity": 2, + "updatedAt": 1733242868439, + "publicationStatement": [ + "Milano : Electa Editrice, c1981." + ], + "identifier": [ + "urn:shelfmark:MFX+ (Sommer) 84-1356", + "urn:bnum:10846129", + "urn:oclc:9844095", + "urn:oclc:NYPG84-B22746", + "urn:identifier:(WaOLN)nyp0298069", + "urn:identifier:(OCoLC)9844095" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1981" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sommer, Giorgio, 1834-1914.", + "Photographers -- Italy -- Biography." + ], + "titleDisplay": [ + "Giorgio Sommer, fotografo a Napoli / a cura di Daniela Palazzoli." + ], + "uri": "b10846129", + "recordTypeId": "a", + "placeOfPublication": [ + "Milano" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "30 cm." + ] + }, + "sort": [ + 0, + "b10846129" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10846129", + "_nested": { + "field": "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 - Art and Architecture Room 300" + } + ], + "holdingLocation_packed": [ + "loc:mab98||Schwarzman Building - Art and Architecture Room 300" + ], + "idBarcode": [ + "33433072080348" + ], + "identifier": [ + "urn:shelfmark:MFX+ (Sommer) 84-1356", + "urn:barcode:33433072080348" + ], + "identifierV2": [ + { + "value": "MFX+ (Sommer) 84-1356", + "type": "bf:ShelfMark" + }, + { + "value": "33433072080348", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "MFX+ (Sommer) 84-1356" + ], + "requestable": [ + true + ], + "shelfMark": [ + "MFX+ (Sommer) 84-1356" + ], + "shelfMark_sort": "aMFX+ (Sommer) 84-001356", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i14914949" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10849715", + "_score": 0, + "_source": { + "extent": [ + "xiii, 231 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hemingway, Ernest, 1899-1961", + "Hemingway, Ernest, 1899-1961 -- Appreciation" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Indiana University Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1984 + ], + "title": [ + "Fame became of him : Hemingway as public writer" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "JFE 84-1649" + ], + "createdString": [ + "1984" + ], + "creatorLiteral": [ + "Raeburn, John" + ], + "idLccn": [ + "83048831" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1984 + ], + "idOclc": [ + "10020478", + "NYPG84-B26814" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 84-1649" + }, + { + "type": "nypl:Bnumber", + "value": "10849715" + }, + { + "type": "bf:Isbn", + "value": "0253126908" + }, + { + "type": "nypl:Oclc", + "value": "10020478" + }, + { + "type": "nypl:Oclc", + "value": "NYPG84-B26814" + }, + { + "type": "bf:Lccn", + "value": "83048831" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0856746" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)10020478" + } + ], + "popularity": 32, + "updatedAt": 1733243883421, + "publicationStatement": [ + "Bloomington : Indiana University Press, c1984." + ], + "idIsbn": [ + "0253126908" + ], + "identifier": [ + "urn:shelfmark:JFE 84-1649", + "urn:bnum:10849715", + "urn:isbn:0253126908", + "urn:oclc:10020478", + "urn:oclc:NYPG84-B26814", + "urn:lccn:83048831", + "urn:identifier:(WaOLN)nyp0856746", + "urn:identifier:(OCoLC)10020478" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1984" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hemingway, Ernest, 1899-1961 -- Appreciation." + ], + "titleDisplay": [ + "Fame became of him : Hemingway as public writer / John Raeburn." + ], + "uri": "b10849715", + "lccClassification": [ + "PS3515.E37 Z7543 1984" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Bloomington" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ], + "idIsbn_clean": [ + "0253126908" + ] + }, + "sort": [ + 0, + "b10849715" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10849715", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2024-12-04" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "idBarcode": [ + "33433046554378" + ], + "identifier": [ + "urn:shelfmark:JFE 84-1649", + "urn:barcode:33433046554378" + ], + "identifierV2": [ + { + "value": "JFE 84-1649", + "type": "bf:ShelfMark" + }, + { + "value": "33433046554378", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XF" + ], + "physicalLocation": [ + "JFE 84-1649" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JFE 84-1649" + ], + "shelfMark_sort": "aJFE 84-001649", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i13929003" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10857830", + "_score": 0, + "_source": { + "extent": [ + "585 p., [21] leaves of plates : ill., folded geneal. tables, ports. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Two folded geneal. tables in pocket.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Schulthess Rechberg family" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "s.n." + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1930 + ], + "dateEndString": [ + "1939" + ], + "title": [ + "Aus dem Archiv der Familie von Schulthess Reichberg." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "AVGI (Schulthess Rechberg) 82-1988" + ], + "createdString": [ + "1930" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1930 + ], + "idOclc": [ + "NYPG84-B36642" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "AVGI (Schulthess Rechberg) 82-1988" + }, + { + "type": "nypl:Bnumber", + "value": "10857830" + }, + { + "type": "nypl:Oclc", + "value": "NYPG84-B36642" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0864868" + } + ], + "popularity": 3, + "dateEndYear": [ + 1939 + ], + "updatedAt": 1733243772202, + "publicationStatement": [ + "[Switzerland : s.n., 193- ]" + ], + "identifier": [ + "urn:shelfmark:AVGI (Schulthess Rechberg) 82-1988", + "urn:bnum:10857830", + "urn:oclc:NYPG84-B36642", + "urn:identifier:(WaOLN)nyp0864868" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1930" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Schulthess Rechberg family." + ], + "titleDisplay": [ + "Aus dem Archiv der Familie von Schulthess Reichberg." + ], + "uri": "b10857830", + "recordTypeId": "a", + "placeOfPublication": [ + "[Switzerland" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "27 cm." + ] + }, + "sort": [ + 0, + "b10857830" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10857830", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2025-03-03" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433101954257" + ], + "identifier": [ + "urn:shelfmark:AVGI (Schulthess Rechberg) 82-1988", + "urn:barcode:33433101954257" + ], + "identifierV2": [ + { + "value": "AVGI (Schulthess Rechberg) 82-1988", + "type": "bf:ShelfMark" + }, + { + "value": "33433101954257", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "AVGI (Schulthess Rechberg) 82-1988" + ], + "requestable": [ + false + ], + "shelfMark": [ + "AVGI (Schulthess Rechberg) 82-1988" + ], + "shelfMark_sort": "aAVGI (Schulthess Rechberg) 82-001988", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15810684" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10898223", + "_score": 0, + "_source": { + "extent": [ + "14 leaves, 9 leaves of plates : geneal. tables ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"May 1980.\"", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Baldwin family" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "The University" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1980 + ], + "title": [ + "The descendants of Joseph Baldwin : data" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "APV (Baldwin) 84-238" + ], + "createdString": [ + "1980" + ], + "creatorLiteral": [ + "Sublette, Donald J. (Donald Jackson), 1903-" + ], + "idLccn": [ + "80624004" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Selby, P. O. (Paul Owen), 1890-", + "Northeast Missouri State University" + ], + "dateStartYear": [ + 1980 + ], + "idOclc": [ + "8283270", + "NYPG84-B87408" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Baldwin) 84-238" + }, + { + "type": "nypl:Bnumber", + "value": "10898223" + }, + { + "type": "nypl:Oclc", + "value": "8283270" + }, + { + "type": "nypl:Oclc", + "value": "NYPG84-B87408" + }, + { + "type": "bf:Lccn", + "value": "80624004" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0905322" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)8283270" + } + ], + "popularity": 1, + "updatedAt": 1733243772202, + "publicationStatement": [ + "Kirksville, Mo. : The University, 1980." + ], + "identifier": [ + "urn:shelfmark:APV (Baldwin) 84-238", + "urn:bnum:10898223", + "urn:oclc:8283270", + "urn:oclc:NYPG84-B87408", + "urn:lccn:80624004", + "urn:identifier:(WaOLN)nyp0905322", + "urn:identifier:(OCoLC)8283270" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1980" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Baldwin family." + ], + "titleDisplay": [ + "The descendants of Joseph Baldwin : data / collected by Donald J. Sublette ; edited by P.O. Selby for the Northeast Missouri State University." + ], + "uri": "b10898223", + "lccClassification": [ + "CS71.B19 1980" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Kirksville, Mo." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "29 cm." + ] + }, + "sort": [ + 0, + "b10898223" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10898223", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2025-03-03" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433091313712" + ], + "identifier": [ + "urn:shelfmark:APV (Baldwin) 84-238", + "urn:barcode:33433091313712" + ], + "identifierV2": [ + { + "value": "APV (Baldwin) 84-238", + "type": "bf:ShelfMark" + }, + { + "value": "33433091313712", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Baldwin) 84-238" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APV (Baldwin) 84-238" + ], + "shelfMark_sort": "aAPV (Baldwin) 84-000238", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15820032" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10961500", + "_score": 0, + "_ignored": [ + "title.keyword", + "title.keywordLowercased", + "title.keywordLowercasedStripped" + ], + "_source": { + "extent": [ + "295 p. : coat of arms, facsims., ports. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Photocopy.", + "type": "bf:Note" + }, + { + "noteType": "Source", + "label": "New York Genealogical and Biographical Society;", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Jones family" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Munsell" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "buildingLocationIds": [ + "rc", + "ma" + ], + "createdYear": [ + 1891 + ], + "title": [ + "Captain Roger Jones of London and Virginia : some of his antecedents and descendants, with appreciative notice of other families, viz. Bathurst, Belfield, Browning, Carter, Catesby, Cocke, Graham, Fauntleroy, Hickman, Hoskins, Latane, Lewis, Meriwether, Skelton, Walker, Waring, Woodford, and others : notes" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "APV (Jones) 87-553" + ], + "createdString": [ + "1891" + ], + "creatorLiteral": [ + "Jones, L. H. (Lewis Hampton)" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "New York Genealogical and Biographical Society Collection" + ], + "dateStartYear": [ + 1891 + ], + "donor": [ + "Gift of New York Genealogical and Biographical Society." + ], + "idOclc": [ + "NYPG85-B67336" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Jones) 87-553" + }, + { + "type": "nypl:Bnumber", + "value": "10961500" + }, + { + "type": "nypl:Oclc", + "value": "NYPG85-B67336" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0968704" + } + ], + "popularity": 4, + "updatedAt": 1733243770037, + "publicationStatement": [ + "Albany, N.Y. : Munsell, 1891." + ], + "identifier": [ + "urn:shelfmark:APV (Jones) 87-553", + "urn:bnum:10961500", + "urn:oclc:NYPG85-B67336", + "urn:identifier:(WaOLN)nyp0968704" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1891" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jones family." + ], + "titleDisplay": [ + "Captain Roger Jones of London and Virginia : some of his antecedents and descendants, with appreciative notice of other families, viz. Bathurst, Belfield, Browning, Carter, Catesby, Cocke, Graham, Fauntleroy, Hickman, Hoskins, Latane, Lewis, Meriwether, Skelton, Walker, Waring, Woodford, and others : notes / by L.H. Jones." + ], + "uri": "b10961500", + "recordTypeId": "a", + "placeOfPublication": [ + "Albany, N.Y." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b10961500" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10961500", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:31", + "label": "google project, non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:31||google project, non-circ" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcma2||Offsite" + ], + "idBarcode": [ + "33433083767396" + ], + "identifier": [ + "urn:shelfmark:NYGB G J 7241", + "urn:barcode:33433083767396" + ], + "identifierV2": [ + { + "value": "NYGB G J 7241", + "type": "bf:ShelfMark" + }, + { + "value": "33433083767396", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "NYGB G J 7241" + ], + "recapCustomerCode": [ + "NQ" + ], + "requestable": [ + true + ], + "shelfMark": [ + "NYGB G J 7241" + ], + "shelfMark_sort": "aNYGB G J 007241", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i23135997" + }, + "sort": [ + null + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b10961500", + "_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" + ], + "dueDate": [ + "2025-03-03" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433093161507" + ], + "identifier": [ + "urn:shelfmark:APV (Jones) 87-553", + "urn:barcode:33433093161507" + ], + "identifierV2": [ + { + "value": "APV (Jones) 87-553", + "type": "bf:ShelfMark" + }, + { + "value": "33433093161507", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Jones) 87-553" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APV (Jones) 87-553" + ], + "shelfMark_sort": "aAPV (Jones) 87-000553", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15833001" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10987394", + "_score": 0, + "_source": { + "extent": [ + "v. : maps ;" + ], + "note": [ + { + "noteType": "Note", + "label": "1983-1984 - leased by Real Estate Data, Inc.", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Continues: Bromley, firm, publishers. Manhattan land book of the city of New York, issued in 1970.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "1975-1976-" + ], + "subjectLiteral_exploded": [ + "Fire insurance", + "Fire insurance -- New York (State)", + "Fire insurance -- New York (State) -- New York", + "Fire insurance -- New York (State) -- New York -- Maps", + "Real property", + "Real property -- New York (State)", + "Real property -- New York (State) -- New York", + "Real property -- New York (State) -- New York -- Maps", + "Manhattan (New York, N.Y.)", + "Manhattan (New York, N.Y.) -- Maps" + ], + "numItemDatesParsed": [ + 52 + ], + "publisherLiteral": [ + "Sanborn Map Co." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 53 + ], + "buildingLocationIds": [ + "rc", + "ma" + ], + "createdYear": [ + 1976 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "Sanborn Manhattan land book of the city of New York." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 8 + ], + "shelfMark": [ + "Map Div.+++ 83-2577" + ], + "createdString": [ + "1976" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Real Estate Data, Inc", + "Sanborn Map Company", + "Experian" + ], + "dateStartYear": [ + 1976 + ], + "donor": [ + "Gift of the Alfred W. Roberts Memorial Fund" + ], + "idOclc": [ + "NYPG85-S1332" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Map Div.+++ 83-2577" + }, + { + "type": "nypl:Bnumber", + "value": "10987394" + }, + { + "type": "nypl:Oclc", + "value": "NYPG85-S1332" + }, + { + "type": "bf:Identifier", + "value": "A order" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0994637" + }, + { + "type": "bf:Identifier", + "value": "(NN)NYPG83-B46405" + } + ], + "popularity": 464, + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "No. 22nd (2002)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "status": "Arrived" + }, + { + "coverage": "No. 23rd (2003)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "status": "Arrived" + }, + { + "coverage": "No. 24th (2003 - 2004)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "status": "Arrived" + }, + { + "coverage": "No. 25th (2004 - 2005)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "status": "Bound" + }, + { + "coverage": "No. 26 (2006)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "status": "Bound" + }, + { + "coverage": "No. 27 (2007)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "status": "Bound" + }, + { + "coverage": "No. 29 (2008)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "status": "Arrived" + }, + { + "coverage": "No. 31 (2010)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "status": "Bound" + }, + { + "coverage": "2011", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "status": "Bound" + }, + { + "coverage": "2012 - 2013", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "status": "Bound" + }, + { + "coverage": "2013", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "status": "Bound" + }, + { + "coverage": "2014", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "status": "Bound" + }, + { + "coverage": "2015", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "status": "Bound" + }, + { + "coverage": "2016", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "status": "Bound" + }, + { + "coverage": "2016", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "status": "Bound" + }, + { + "coverage": "2018", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "status": "Bound" + }, + { + "coverage": "", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "status": "Removed" + } + ], + "holdingStatement": [ + "1975/1976,1983/1984-ed.27(2007), 29(2009)." + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*R-Map Div. 83-2577" + } + ], + "physicalLocation": [ + "*R-Map Div. 83-2577" + ], + "location": [ + { + "code": "loc:mapp1", + "label": "Schwarzman Building - Map Division Reference Room 117" + } + ], + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "uri": "h1065738" + } + ], + "updatedAt": 1733243103623, + "publicationStatement": [ + "New York : Sanborn Map Co., 1975-" + ], + "identifier": [ + "urn:shelfmark:Map Div.+++ 83-2577", + "urn:bnum:10987394", + "urn:oclc:NYPG85-S1332", + "urn:identifier:A order", + "urn:identifier:(WaOLN)nyp0994637", + "urn:identifier:(NN)NYPG83-B46405" + ], + "numCheckinCardItems": [ + 17 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Fire insurance -- New York (State) -- New York -- Maps.", + "Real property -- New York (State) -- New York -- Maps.", + "Manhattan (New York, N.Y.) -- Maps." + ], + "titleDisplay": [ + "Sanborn Manhattan land book of the city of New York." + ], + "uri": "b10987394", + "recordTypeId": "a", + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "titleAlt": [ + "NYC Manhattan", + "Manhattan landbook", + "NYC Manhattan NY landbk maps", + "NYC Manhattan landbook maps", + "Manhattan land book of the City of New York." + ], + "dimensions": [ + "41 x 58 cm." + ] + }, + "sort": [ + 0, + "b10987394" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 53, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10987394", + "_nested": { + "field": "items", + "offset": 37 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2010-01-01", + "lte": "2010-01-01" + } + ], + "enumerationChronology": [ + "No. 31 (2010)" + ], + "enumerationChronology_sort": [ + " 31-2010-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mapp1", + "label": "Schwarzman Building - Map Division Reference Room 117" + } + ], + "holdingLocation_packed": [ + "loc:mapp1||Schwarzman Building - Map Division Reference Room 117" + ], + "identifierV2": [ + { + "value": "*R-Map Div. 83-2577", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "shelfMark_sort": "a*R-Map Div. 83-002577", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1065738-14", + "volumeRange": [ + { + "gte": 31, + "lte": 31 + } + ], + "volumeRaw": [ + "No. 31" + ] + }, + "sort": [ + " 31-2010-01-01" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b10987394", + "_nested": { + "field": "items", + "offset": 35 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2008-01-01", + "lte": "2008-01-01" + } + ], + "enumerationChronology": [ + "No. 29 (2008)" + ], + "enumerationChronology_sort": [ + " 29-2008-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mapp1", + "label": "Schwarzman Building - Map Division Reference Room 117" + } + ], + "holdingLocation_packed": [ + "loc:mapp1||Schwarzman Building - Map Division Reference Room 117" + ], + "identifierV2": [ + { + "value": "*R-Map Div. 83-2577", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "shelfMark_sort": "a*R-Map Div. 83-002577", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1065738-16", + "volumeRange": [ + { + "gte": 29, + "lte": 29 + } + ], + "volumeRaw": [ + "No. 29" + ] + }, + "sort": [ + " 29-2008-01-01" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b10987394", + "_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": "2007-01-01", + "lte": "2007-01-01" + } + ], + "enumerationChronology": [ + "No. 27 (2007)" + ], + "enumerationChronology_sort": [ + " 27-2007-01-01" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mapp1", + "label": "Schwarzman Building - Map Division Reference Room 117" + } + ], + "holdingLocation_packed": [ + "loc:mapp1||Schwarzman Building - Map Division Reference Room 117" + ], + "identifierV2": [ + { + "value": "*R-Map Div. 83-2577", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "*R-Map Div. 83-2577" + ], + "shelfMark_sort": "a*R-Map Div. 83-002577", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1065738-1", + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ], + "volumeRaw": [ + "No. 27" + ] + }, + "sort": [ + " 27-2007-01-01" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b11014899", + "_score": 0, + "_source": { + "extent": [ + "216 p. : ill. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 208-216.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ribbon industry", + "Ribbon industry -- Switzerland", + "Ribbon industry -- Switzerland -- Basel", + "Ribbon industry -- Switzerland -- Basel -- History", + "Silk industry", + "Silk industry -- Switzerland", + "Silk industry -- Switzerland -- Basel", + "Silk industry -- Switzerland -- Basel -- History" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Helbing & Lichtenhahn" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "rc" + ], + "createdYear": [ + 1983 + ], + "title": [ + "Geschichte der Basler Bandindustrie 1550-1800" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "JLE 86-2781" + ], + "createdString": [ + "1983" + ], + "creatorLiteral": [ + "Fink, Paul" + ], + "idLccn": [ + "83220231" + ], + "numElectronicResources": [ + 0 + ], + "seriesStatement": [ + "Basler Beiträge zur Geschichtswissenschaft ; Bd. 147" + ], + "dateStartYear": [ + 1983 + ], + "idOclc": [ + "11140002", + "NYPG86-B27231" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JLE 86-2781" + }, + { + "type": "nypl:Bnumber", + "value": "11014899" + }, + { + "type": "bf:Isbn", + "value": "3719008363" + }, + { + "type": "nypl:Oclc", + "value": "11140002" + }, + { + "type": "nypl:Oclc", + "value": "NYPG86-B27231" + }, + { + "type": "bf:Lccn", + "value": "83220231" + }, + { + "type": "bf:Identifier", + "value": "ms 84s347" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1022201" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)11140002" + } + ], + "popularity": 1, + "updatedAt": 1733243283663, + "publicationStatement": [ + "Basel : Helbing & Lichtenhahn, 1983." + ], + "idIsbn": [ + "3719008363" + ], + "identifier": [ + "urn:shelfmark:JLE 86-2781", + "urn:bnum:11014899", + "urn:isbn:3719008363", + "urn:oclc:11140002", + "urn:oclc:NYPG86-B27231", + "urn:lccn:83220231", + "urn:identifier:ms 84s347", + "urn:identifier:(WaOLN)nyp1022201", + "urn:identifier:(OCoLC)11140002" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1983" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ribbon industry -- Switzerland -- Basel -- History.", + "Silk industry -- Switzerland -- Basel -- History." + ], + "titleDisplay": [ + "Geschichte der Basler Bandindustrie 1550-1800 / von Paul Fink." + ], + "uri": "b11014899", + "lccClassification": [ + "HD9929.R6 S94 1983" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Basel" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ], + "idIsbn_clean": [ + "3719008363" + ] + }, + "sort": [ + 0, + "b11014899" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b11014899", + "_nested": { + "field": "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": [ + "33433056760832" + ], + "identifier": [ + "urn:shelfmark:JLE 86-2781", + "urn:barcode:33433056760832" + ], + "identifierV2": [ + { + "value": "JLE 86-2781", + "type": "bf:ShelfMark" + }, + { + "value": "33433056760832", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "JLE 86-2781" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JLE 86-2781" + ], + "shelfMark_sort": "aJLE 86-002781", + "status": [ + { + "id": "status:oh", + "label": "On Holdshelf" + } + ], + "status_packed": [ + "status:oh||On Holdshelf" + ], + "type": [ + "bf:Item" + ], + "uri": "i12632097" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b11015583", + "_score": 0, + "_source": { + "extent": [ + "3 v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"An annotated index of over 18,000 American popular songs, cumulating and updating eight volumes of Popular music ...\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes indexes.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Popular music", + "Popular music -- United States", + "Popular music -- United States -- Bibliography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Gale Research Co." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 6 + ], + "buildingLocationIds": [ + "pa" + ], + "createdYear": [ + 1985 + ], + "title": [ + "Popular music, 1920-1979 : a revised cumulation" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 6 + ], + "shelfMark": [ + "*R-Music 86-4261" + ], + "createdString": [ + "1985" + ], + "creatorLiteral": [ + "Shapiro, Nat" + ], + "idLccn": [ + "85006749 /MN" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Pollock, Bruce" + ], + "addedAuthorTitle": [ + "Popular music." + ], + "dateStartYear": [ + 1985 + ], + "idOclc": [ + "11917107", + "NYPG86-B28115" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*R-Music 86-4261" + }, + { + "type": "nypl:Bnumber", + "value": "11015583" + }, + { + "type": "bf:Isbn", + "value": "0810308479" + }, + { + "type": "nypl:Oclc", + "value": "11917107" + }, + { + "type": "nypl:Oclc", + "value": "NYPG86-B28115" + }, + { + "type": "bf:Lccn", + "value": "85006749 /MN" + }, + { + "type": "bf:Identifier", + "value": "A order" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0007563" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)11917107" + } + ], + "popularity": 3, + "updatedAt": 1733242875240, + "publicationStatement": [ + "Detroit, Mich. : Gale Research Co., 1985." + ], + "idIsbn": [ + "0810308479" + ], + "identifier": [ + "urn:shelfmark:*R-Music 86-4261", + "urn:bnum:11015583", + "urn:isbn:0810308479", + "urn:oclc:11917107", + "urn:oclc:NYPG86-B28115", + "urn:lccn:85006749 /MN", + "urn:identifier:A order", + "urn:identifier:(WaOLN)nyp0007563", + "urn:identifier:(OCoLC)11917107" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1985" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Popular music -- United States -- Bibliography." + ], + "titleDisplay": [ + "Popular music, 1920-1979 : a revised cumulation / Nat Shapiro and Bruce Pollock, editors." + ], + "uri": "b11015583", + "lccClassification": [ + "ML120.U5 S5 1985" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Detroit, Mich." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Popular music nineteen twenty nineteen seventy-nine." + ], + "tableOfContents": [ + "v. 1. Introductory essays: popular music in the 1920's ; popular music in the 1930's ; popular music in the 1940's ; popular music in the 1950's ; popular music, 1960-1964 ; popular music, 1965-1969 ; popular music, 1970-1974 ; popular music, 1975-1979. Song listings A-I -- v. 2. Song listings J-T -- v. 3. Song listings U-Z. Indexes: Lyricists and composers ; Important performances ; Awards ; List of publishers." + ], + "dimensions": [ + "24 cm." + ], + "idIsbn_clean": [ + "0810308479" + ] + }, + "sort": [ + 0, + "b11015583" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 6, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b11015583", + "_nested": { + "field": "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. 3: U - Z" + ], + "enumerationChronology_sort": [ + " 3-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah11", + "label": "Performing Arts Research Collections - Recorded Sound - Reference" + } + ], + "holdingLocation_packed": [ + "loc:pah11||Performing Arts Research Collections - Recorded Sound - Reference" + ], + "idBarcode": [ + "33433031380854" + ], + "identifier": [ + "urn:shelfmark:*R-Phono 87-183 v. 3: U - Z", + "urn:barcode:33433031380854" + ], + "identifierV2": [ + { + "value": "*R-Phono 87-183 v. 3: U - Z", + "type": "bf:ShelfMark" + }, + { + "value": "33433031380854", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*R-Phono 87-183" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*R-Phono 87-183 v. 3: U - Z" + ], + "shelfMark_sort": "a*R-Phono 87-183 v. 000003: U - Z", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i11091771", + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + "sort": [ + " 3-" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b11015583", + "_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:2", + "label": "book non-circ" + } + ], + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "enumerationChronology": [ + "v.3: U - Z" + ], + "enumerationChronology_sort": [ + " 3-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pam11", + "label": "Performing Arts Research Collections - Music - Reference" + } + ], + "holdingLocation_packed": [ + "loc:pam11||Performing Arts Research Collections - Music - Reference" + ], + "idBarcode": [ + "33433099176889" + ], + "identifier": [ + "urn:shelfmark:*R-Music 86-4261 v.3: U - Z", + "urn:barcode:33433099176889" + ], + "identifierV2": [ + { + "value": "*R-Music 86-4261 v.3: U - Z", + "type": "bf:ShelfMark" + }, + { + "value": "33433099176889", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*R-Music 86-4261" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*R-Music 86-4261 v.3: U - Z" + ], + "shelfMark_sort": "a*R-Music 86-4261 v.3: U - Z", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i31061285", + "volumeRange": [ + { + "gte": 3, + "lte": 3 + } + ] + }, + "sort": [ + " 3-" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b11015583", + "_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. 2: J - T" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah11", + "label": "Performing Arts Research Collections - Recorded Sound - Reference" + } + ], + "holdingLocation_packed": [ + "loc:pah11||Performing Arts Research Collections - Recorded Sound - Reference" + ], + "idBarcode": [ + "33433031380862" + ], + "identifier": [ + "urn:shelfmark:*R-Phono 87-183 v. 2: J - T", + "urn:barcode:33433031380862" + ], + "identifierV2": [ + { + "value": "*R-Phono 87-183 v. 2: J - T", + "type": "bf:ShelfMark" + }, + { + "value": "33433031380862", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*R-Phono 87-183" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*R-Phono 87-183 v. 2: J - T" + ], + "shelfMark_sort": "a*R-Phono 87-183 v. 000002: J - T", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i11091770", + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + "sort": [ + " 2-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b11033122", + "_score": 0, + "_source": { + "extent": [ + "xix, 278 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Short stories, American", + "Short stories, American -- Texas", + "American fiction", + "American fiction -- 20th century", + "Texas", + "Texas -- Fiction" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "University of Texas Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1986 + ], + "title": [ + "South by Southwest : 24 stories from modern Texas" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "JFE 86-2943" + ], + "createdString": [ + "1986" + ], + "idLccn": [ + "85020227" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Graham, Don, 1940-" + ], + "dateStartYear": [ + 1986 + ], + "idOclc": [ + "12552610", + "NYPG86-B52491" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 86-2943" + }, + { + "type": "nypl:Bnumber", + "value": "11033122" + }, + { + "type": "bf:Isbn", + "value": "0292776004" + }, + { + "type": "bf:Isbn", + "value": "0292776012 (pbk.)" + }, + { + "type": "nypl:Oclc", + "value": "12552610" + }, + { + "type": "nypl:Oclc", + "value": "NYPG86-B52491" + }, + { + "type": "bf:Lccn", + "value": "85020227" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1040437" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)12552610" + } + ], + "popularity": 1, + "updatedAt": 1733242873825, + "publicationStatement": [ + "Austin : University of Texas Press, 1986." + ], + "idIsbn": [ + "0292776004", + "0292776012 (pbk.)" + ], + "identifier": [ + "urn:shelfmark:JFE 86-2943", + "urn:bnum:11033122", + "urn:isbn:0292776004", + "urn:isbn:0292776012 (pbk.)", + "urn:oclc:12552610", + "urn:oclc:NYPG86-B52491", + "urn:lccn:85020227", + "urn:identifier:(WaOLN)nyp1040437", + "urn:identifier:(OCoLC)12552610" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1986" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Short stories, American -- Texas.", + "American fiction -- 20th century.", + "Texas -- Fiction." + ], + "titleDisplay": [ + "South by Southwest : 24 stories from modern Texas / edited by Don Graham." + ], + "uri": "b11033122", + "lccClassification": [ + "PS558.T4 S68 1986" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Austin" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ], + "idIsbn_clean": [ + "0292776004", + "0292776012" + ] + }, + "sort": [ + 0, + "b11033122" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b11033122", + "_nested": { + "field": "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 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "idBarcode": [ + "33433046682625" + ], + "identifier": [ + "urn:shelfmark:JFE 86-2943", + "urn:barcode:33433046682625" + ], + "identifierV2": [ + { + "value": "JFE 86-2943", + "type": "bf:ShelfMark" + }, + { + "value": "33433046682625", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XF" + ], + "physicalLocation": [ + "JFE 86-2943" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JFE 86-2943" + ], + "shelfMark_sort": "aJFE 86-002943", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i13967112" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b11059184", + "_score": 0, + "_source": { + "extent": [ + "v. : ill. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Spine title, v. 2A: Descendants of John J. Green and Paul Prose.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Moore family", + "Green family", + "Prose family" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "F.M. Moore : A. Moore" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1900 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "The ancestors of Albert Wilson Luce Moore, Junior" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 1 + ], + "shelfMark": [ + "APV (Moore) 86-1927" + ], + "createdString": [ + "1900" + ], + "creatorLiteral": [ + "Moore, Faith Marie, 1914-" + ], + "idLccn": [ + "85217977" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Moore, Albert, 1910-" + ], + "dateStartYear": [ + 1900 + ], + "idOclc": [ + "13186257", + "NYPG86-B90395" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APV (Moore) 86-1927" + }, + { + "type": "nypl:Bnumber", + "value": "11059184" + }, + { + "type": "nypl:Oclc", + "value": "13186257" + }, + { + "type": "nypl:Oclc", + "value": "NYPG86-B90395" + }, + { + "type": "bf:Lccn", + "value": "85217977" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1066525" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)13186257" + } + ], + "popularity": 1, + "dateEndYear": [ + 9999 + ], + "updatedAt": 1733243772202, + "publicationStatement": [ + "[Independence, Mo.] (1420 N. Spring, Independence 64050) : F.M. Moore : A. Moore, [1984]-" + ], + "identifier": [ + "urn:shelfmark:APV (Moore) 86-1927", + "urn:bnum:11059184", + "urn:oclc:13186257", + "urn:oclc:NYPG86-B90395", + "urn:lccn:85217977", + "urn:identifier:(WaOLN)nyp1066525", + "urn:identifier:(OCoLC)13186257" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1900" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Moore family.", + "Green family.", + "Prose family." + ], + "titleDisplay": [ + "The ancestors of Albert Wilson Luce Moore, Junior / by Faith Marie and Albert Moore, Sr." + ], + "uri": "b11059184", + "lccClassification": [ + "CS71.M82 1984a" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "[Independence, Mo.] (1420 N. Spring, Independence 64050)" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Descendants of John J. Green and Paul Prose." + ], + "tableOfContents": [ + "v. 2A. Green--Prose." + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + 0, + "b11059184" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b11059184", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2025-03-03" + ], + "enumerationChronology": [ + "V. 2A" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433093180598" + ], + "identifier": [ + "urn:shelfmark:APV (Moore) 86-1927 Vol. 2A V. 2A", + "urn:barcode:33433093180598" + ], + "identifierV2": [ + { + "value": "APV (Moore) 86-1927 Vol. 2A V. 2A", + "type": "bf:ShelfMark" + }, + { + "value": "33433093180598", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Moore) 86-1927 Vol. 2A" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APV (Moore) 86-1927 Vol. 2A V. 2A" + ], + "shelfMark_sort": "aAPV (Moore) 86-1927 Vol. 2A v. 000002A", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15850584", + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ] + }, + "sort": [ + " 2-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b11151242", + "_score": 0, + "_source": { + "extent": [ + "27 v. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Editor: v. 1-6, N. Shapiro; v. 7- B. Pollock.", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vols. 1-5 cover the years 1920/1929-1960/1964 in irregular order.", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Vols. 7-27 published: Detroit, Mich. : Gale Research Co.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Vol. 1 (1950-1959)-v. 27 (2002)." + ], + "subjectLiteral_exploded": [ + "Popular music", + "Popular music -- United States", + "Popular music -- United States -- Bibliography", + "Popular music -- United States -- Bibliography -- Periodicals" + ], + "numItemDatesParsed": [ + 54 + ], + "publisherLiteral": [ + "Adrian Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 54 + ], + "buildingLocationIds": [ + "pa", + "rc" + ], + "createdYear": [ + 1959 + ], + "dateEndString": [ + "2002" + ], + "title": [ + "Popular music." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 54 + ], + "shelfMark": [ + "*R-Music 87-684 " + ], + "createdString": [ + "1959" + ], + "numElectronicResources": [ + 8 + ], + "contributorLiteral": [ + "Shapiro, Nat", + "Pollock, Bruce", + "Gale Research Company" + ], + "dateStartYear": [ + 1959 + ], + "idOclc": [ + "779672" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*R-Music 87-684 " + }, + { + "type": "nypl:Bnumber", + "value": "11151242" + }, + { + "type": "nypl:Oclc", + "value": "779672" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)779672" + } + ], + "popularity": 29, + "dateEndYear": [ + 2002 + ], + "holdings": [ + { + "holdingStatement": [ + "[*R-Phono 75-1322] 18(1993)-27(2002)." + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*R-Phono 75-1322" + } + ], + "physicalLocation": [ + "*R-Phono 75-1322" + ], + "format": [ + "PRINT " + ], + "location": [ + { + "code": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "shelfMark": [ + "*R-Phono 75-1322" + ], + "uri": "h1065626" + }, + { + "holdingStatement": [ + "[*R-Music 87-684] 1(1950/59)-27(2002)." + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*R-Music 87-684" + } + ], + "physicalLocation": [ + "*R-Music 87-684" + ], + "format": [ + "PRINT - COPY FOR MUSIC DIV." + ], + "location": [ + { + "code": "loc:pam32", + "label": "Performing Arts Research Collections - Music" + } + ], + "shelfMark": [ + "*R-Music 87-684" + ], + "uri": "h1065625" + } + ], + "updatedAt": 1733243224242, + "publicationStatement": [ + "New York, N.Y. : Adrian Press, 1964-[2002]." + ], + "identifier": [ + "urn:shelfmark:*R-Music 87-684 ", + "urn:bnum:11151242", + "urn:oclc:779672", + "urn:identifier:(OCoLC)779672" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1959" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Popular music -- United States -- Bibliography -- Periodicals." + ], + "titleDisplay": [ + "Popular music." + ], + "uri": "b11151242", + "electronicResources": [ + { + "label": "Full text available via HathiTrust--v. 5 1920-1929", + "url": "http://hdl.handle.net/2027/nyp.33433031380045" + }, + { + "label": "Full text available via HathiTrust--v. 4 1930-1939", + "url": "http://hdl.handle.net/2027/nyp.33433031380052" + }, + { + "label": "Full text available via HathiTrust--v. 2 1940-1949", + "url": "http://hdl.handle.net/2027/nyp.33433031380078" + }, + { + "label": "Full text available via HathiTrust--v. 1 1950-1959", + "url": "http://hdl.handle.net/2027/nyp.33433031380086" + }, + { + "label": "Full text available via HathiTrust--v. 4 1950-1959", + "url": "http://hdl.handle.net/2027/nyp.33433030946325" + }, + { + "label": "Full text available via HathiTrust--v. 3 1940-1949", + "url": "http://hdl.handle.net/2027/nyp.33433030946317" + }, + { + "label": "Full text available via HathiTrust--v. 2 1930-1939", + "url": "http://hdl.handle.net/2027/nyp.33433030946309" + }, + { + "label": "Full text available via HathiTrust--v. 1 1920-1929", + "url": "http://hdl.handle.net/2027/nyp.33433030946291" + } + ], + "recordTypeId": "a", + "placeOfPublication": [ + "New York, N.Y." + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b11151242" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 54, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b11151242", + "_nested": { + "field": "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": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 27 2002" + ], + "enumerationChronology_sort": [ + " 27-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah11", + "label": "Performing Arts Research Collections - Recorded Sound - Reference" + } + ], + "holdingLocation_packed": [ + "loc:pah11||Performing Arts Research Collections - Recorded Sound - Reference" + ], + "idBarcode": [ + "33433015958378" + ], + "identifier": [ + "urn:shelfmark:*R-Phono 75-1322 v. 27 2002", + "urn:barcode:33433015958378" + ], + "identifierV2": [ + { + "value": "*R-Phono 75-1322 v. 27 2002", + "type": "bf:ShelfMark" + }, + { + "value": "33433015958378", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*R-Phono 75-1322" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*R-Phono 75-1322 v. 27 2002" + ], + "shelfMark_sort": "a*R-Phono 75-1322 v. 000027 2002", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13992082", + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ] + }, + "sort": [ + " 27-2002" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b11151242", + "_nested": { + "field": "items", + "offset": 23 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2002", + "lte": "2002" + } + ], + "enumerationChronology": [ + "v. 27 2002" + ], + "enumerationChronology_sort": [ + " 27-2002" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pam32", + "label": "Performing Arts Research Collections - Music" + } + ], + "holdingLocation_packed": [ + "loc:pam32||Performing Arts Research Collections - Music" + ], + "idBarcode": [ + "33433015958360" + ], + "identifier": [ + "urn:shelfmark:*R-Music 87-684 v. 27 2002", + "urn:barcode:33433015958360" + ], + "identifierV2": [ + { + "value": "*R-Music 87-684 v. 27 2002", + "type": "bf:ShelfMark" + }, + { + "value": "33433015958360", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*R-Music 87-684" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*R-Music 87-684 v. 27 2002" + ], + "shelfMark_sort": "a*R-Music 87-684 v. 000027 2002", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i13992081", + "volumeRange": [ + { + "gte": 27, + "lte": 27 + } + ] + }, + "sort": [ + " 27-2002" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b11151242", + "_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": "2001", + "lte": "2001" + } + ], + "enumerationChronology": [ + "v. 26 2001" + ], + "enumerationChronology_sort": [ + " 26-2001" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pah11", + "label": "Performing Arts Research Collections - Recorded Sound - Reference" + } + ], + "holdingLocation_packed": [ + "loc:pah11||Performing Arts Research Collections - Recorded Sound - Reference" + ], + "idBarcode": [ + "33433015969664" + ], + "identifier": [ + "urn:shelfmark:*R-Phono 75-1322 v. 26 2001", + "urn:barcode:33433015969664" + ], + "identifierV2": [ + { + "value": "*R-Phono 75-1322 v. 26 2001", + "type": "bf:ShelfMark" + }, + { + "value": "33433015969664", + "type": "bf:Barcode" + } + ], + "physicalLocation": [ + "*R-Phono 75-1322" + ], + "requestable": [ + false + ], + "shelfMark": [ + "*R-Phono 75-1322 v. 26 2001" + ], + "shelfMark_sort": "a*R-Phono 75-1322 v. 000026 2001", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i11100777", + "volumeRange": [ + { + "gte": 26, + "lte": 26 + } + ] + }, + "sort": [ + " 26-2001" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b11174415", + "_score": 0, + "_source": { + "extent": [ + "xi, 543 p." + ], + "note": [ + { + "noteType": "Note", + "label": "Reprint of the 1924 ed. published in St. Louis, Mo. by B. Herder Book Co.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Secret societies", + "Societies", + "Societies -- History, organization, etc" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Gale Research Co." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1966 + ], + "dateEndString": [ + "1924" + ], + "title": [ + "A dictionary of secret and other societies ..." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "JFD 87-7076" + ], + "createdString": [ + "1966" + ], + "creatorLiteral": [ + "Preuss, Arthur, 1871-1934" + ], + "idLccn": [ + "66021186" + ], + "numElectronicResources": [ + 0 + ], + "seriesStatement": [ + "The Association reference series" + ], + "dateStartYear": [ + 1966 + ], + "idOclc": [ + "265159", + "NYPG88-B28551" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFD 87-7076" + }, + { + "type": "nypl:Bnumber", + "value": "11174415" + }, + { + "type": "nypl:Oclc", + "value": "265159" + }, + { + "type": "nypl:Oclc", + "value": "NYPG88-B28551" + }, + { + "type": "bf:Lccn", + "value": "66021186" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1181949" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)265159" + } + ], + "popularity": 5, + "dateEndYear": [ + 1924 + ], + "updatedAt": 1733242846805, + "publicationStatement": [ + "Detroit, Gale Research Co., 1966." + ], + "identifier": [ + "urn:shelfmark:JFD 87-7076", + "urn:bnum:11174415", + "urn:oclc:265159", + "urn:oclc:NYPG88-B28551", + "urn:lccn:66021186", + "urn:identifier:(WaOLN)nyp1181949", + "urn:identifier:(OCoLC)265159" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1966" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Secret societies.", + "Societies -- History, organization, etc." + ], + "titleDisplay": [ + "A dictionary of secret and other societies ..." + ], + "uri": "b11174415", + "lccClassification": [ + "HS122 .P7 1966" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Detroit" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + 0, + "b11174415" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b11174415", + "_nested": { + "field": "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 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "idBarcode": [ + "33433057525523" + ], + "identifier": [ + "urn:shelfmark:JFD 87-7076", + "urn:barcode:33433057525523" + ], + "identifierV2": [ + { + "value": "JFD 87-7076", + "type": "bf:ShelfMark" + }, + { + "value": "33433057525523", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "JFD 87-7076" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JFD 87-7076" + ], + "shelfMark_sort": "aJFD 87-007076", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i10250016" + }, + "sort": [ + null + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b11174415", + "_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": [ + "33433112910009" + ], + "identifier": [ + "urn:shelfmark:D-18 401", + "urn:barcode:33433112910009" + ], + "identifierV2": [ + { + "value": "D-18 401", + "type": "bf:ShelfMark" + }, + { + "value": "33433112910009", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "D-18 401" + ], + "requestable": [ + true + ], + "shelfMark": [ + "D-18 401" + ], + "shelfMark_sort": "aD-18 000401", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i10250017" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b11188219", + "_score": 0, + "_source": { + "extent": [ + "259 p. ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Cuba", + "Cuba -- History", + "Cuba -- History -- 1895-" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Editorial de Arte y Literatura" + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1978 + ], + "title": [ + "Conversación con el ultimo norteamericano" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "HOR 86-2693" + ], + "createdString": [ + "1978" + ], + "creatorLiteral": [ + "Cirules, Enrique, 1938-" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1978 + ], + "idOclc": [ + "8844405", + "NYPG88-B48636" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "HOR 86-2693" + }, + { + "type": "nypl:Bnumber", + "value": "11188219" + }, + { + "type": "nypl:Oclc", + "value": "8844405" + }, + { + "type": "nypl:Oclc", + "value": "NYPG88-B48636" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1195771" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)8844405" + } + ], + "popularity": 0, + "updatedAt": 1733242875240, + "publicationStatement": [ + "La Habana : Editorial de Arte y Literatura, 1978." + ], + "identifier": [ + "urn:shelfmark:HOR 86-2693", + "urn:bnum:11188219", + "urn:oclc:8844405", + "urn:oclc:NYPG88-B48636", + "urn:identifier:(WaOLN)nyp1195771", + "urn:identifier:(OCoLC)8844405" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1978" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Cuba -- History -- 1895-" + ], + "titleDisplay": [ + "Conversación con el ultimo norteamericano / Enrique Cirules." + ], + "uri": "b11188219", + "recordTypeId": "a", + "placeOfPublication": [ + "La Habana" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + 0, + "b11188219" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b11188219", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433098315884" + ], + "identifier": [ + "urn:shelfmark:HOR 86-2693", + "urn:barcode:33433098315884" + ], + "identifierV2": [ + { + "value": "HOR 86-2693", + "type": "bf:ShelfMark" + }, + { + "value": "33433098315884", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "HOR 86-2693" + ], + "requestable": [ + true + ], + "shelfMark": [ + "HOR 86-2693" + ], + "shelfMark_sort": "aHOR 86-002693", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i15871176" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b11227459", + "_score": 0, + "_source": { + "extent": [ + "xxviii, 407 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hemingway, Ernest, 1899-1961", + "Hemingway, Ernest, 1899-1961 -- Criticism and interpretation", + "Short story" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "G.K. Hall" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1989 + ], + "title": [ + "A reader's guide to the short stories of Ernest Hemingway" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "JFE 89-2265" + ], + "createdString": [ + "1989" + ], + "creatorLiteral": [ + "Smith, Paul, 1925-1996" + ], + "idLccn": [ + "88034944" + ], + "numElectronicResources": [ + 0 + ], + "seriesStatement": [ + "A Reference publication in literature" + ], + "dateStartYear": [ + 1989 + ], + "idOclc": [ + "18961617", + "NYPG89-B56346" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 89-2265" + }, + { + "type": "nypl:Bnumber", + "value": "11227459" + }, + { + "type": "bf:Isbn", + "value": "0816187940 (alk. paper)" + }, + { + "type": "nypl:Oclc", + "value": "18961617" + }, + { + "type": "nypl:Oclc", + "value": "NYPG89-B56346" + }, + { + "type": "bf:Lccn", + "value": "88034944" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1235085" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)18961617" + } + ], + "popularity": 36, + "updatedAt": 1733243883256, + "publicationStatement": [ + "Boston, Mass. : G.K. Hall, c1989." + ], + "idIsbn": [ + "0816187940 (alk. paper)" + ], + "identifier": [ + "urn:shelfmark:JFE 89-2265", + "urn:bnum:11227459", + "urn:isbn:0816187940 (alk. paper)", + "urn:oclc:18961617", + "urn:oclc:NYPG89-B56346", + "urn:lccn:88034944", + "urn:identifier:(WaOLN)nyp1235085", + "urn:identifier:(OCoLC)18961617" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1989" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hemingway, Ernest, 1899-1961 -- Criticism and interpretation.", + "Short story." + ], + "titleDisplay": [ + "A reader's guide to the short stories of Ernest Hemingway / Paul Smith." + ], + "uri": "b11227459", + "lccClassification": [ + "PS3515.E37 Z864 1989" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Boston, Mass." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ], + "idIsbn_clean": [ + "0816187940" + ] + }, + "sort": [ + 0, + "b11227459" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b11227459", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2024-12-04" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "idBarcode": [ + "33433046813865" + ], + "identifier": [ + "urn:shelfmark:JFE 89-2265", + "urn:barcode:33433046813865" + ], + "identifierV2": [ + { + "value": "JFE 89-2265", + "type": "bf:ShelfMark" + }, + { + "value": "33433046813865", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XF" + ], + "physicalLocation": [ + "JFE 89-2265" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JFE 89-2265" + ], + "shelfMark_sort": "aJFE 89-002265", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i14005434" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b11260098", + "_score": 0, + "_source": { + "extent": [ + "v. ill." + ], + "note": [ + { + "noteType": "Note", + "label": "\"The magazine of farm management.\"", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Editors: Mar. 1902-Sept. 1910, E. E. Faville--Oct. 1910- A. Secor.", + "type": "bf:Note" + }, + { + "noteType": "Numbering", + "label": "Vol. 21 repeated in numbering.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Includes various special sections or issues annually: 1968- Harvesting issue (usually no. 7 or 8); 1968- Crop planning issue (usually no. 12; title varies slightly); Machinery management issue (usually no. 2); 1970- Crop planting issue (usually no. 4; title varies slightly).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "v. 1- ; 1902-" + ], + "subjectLiteral_exploded": [ + "Agriculture", + "Agriculture -- Periodicals", + "Agriculture -- United States", + "Agriculture -- United States -- Periodicals" + ], + "numItemDatesParsed": [ + 168 + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 168 + ], + "buildingLocationIds": [ + "rc", + "ma" + ], + "createdYear": [ + 1902 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "Successful farming" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 168 + ], + "shelfMark": [ + "JBM 98-14" + ], + "createdString": [ + "1902" + ], + "idLccn": [ + "11003309" + ], + "idIssn": [ + "0039-4432" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Faville, Ernest E.", + "Secor, Alson, 1871-" + ], + "dateStartYear": [ + 1902 + ], + "idOclc": [ + "1639325", + "NYPG89-S791" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JBM 98-14" + }, + { + "type": "nypl:Bnumber", + "value": "11260098" + }, + { + "type": "nypl:Oclc", + "value": "1639325" + }, + { + "type": "nypl:Oclc", + "value": "NYPG89-S791" + }, + { + "type": "bf:Lccn", + "value": "11003309" + }, + { + "type": "bf:Issn", + "value": "0039-4432" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1267778" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1639325" + } + ], + "popularity": 106, + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "Vol. 120 No. 1 (Jan. 2022)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 120 No. 2 (Feb. 2022)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 120 No. 3 (Mar. 2022)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 120 No. 4 (Apr. 2022)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 120 No. 5 (May. 2022)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 120 No. 6 (Jul. 2022)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 120 No. 7 (Aug. 2022)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 120 No. 8 (Sep. 2022)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 120 No. 9 (Oct. 2022)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 120 No. 10 (Nov. 2022)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 120 No. 11 (Nov. 2022)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 120 No. 12 (Dec. 2022)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 121 No. 1 (Jan. 2023)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 121 No. 2 (Feb. 2023)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 121 No. 3 (Mar. 2023)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 121 No. 4 (Apr. 2023)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 121 No. 5 (May. 2023)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 121 No. 6 (Jul. 2023)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 121 No. 7 (Aug. 2023)", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 121 No. 8 (Sep. 2023)", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 121 No. 9 (Oct. 2023)", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 121 No. 10 (Nov. 2023)", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 121 No. 11 (Nov. 2023)", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 121 No. 12 (Dec. 2023)", + "position": 24, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 122 No. 1 (Jan. 2024)", + "position": 25, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 122 No. 2 (Feb. 2024)", + "position": 26, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 122 No. 3 (Mar. 2024)", + "position": 27, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 122 No. 4 (Apr. 2024)", + "position": 28, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 122 No. 5 (May. 2024)", + "position": 29, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 122 No. 6 (Jul. 2024)", + "position": 30, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 122 No. 7 (Aug. 2024)", + "position": 31, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 122 No. 8 (Sep. 2024)", + "position": 32, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 122 No. 9 (Oct. 2024)", + "position": 33, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 122 No. 10 (Nov. 2024)", + "position": 34, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 122 No. 11 (Nov. 2024)", + "position": 35, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Arrived" + }, + { + "coverage": "Vol. 123 No. 1 (Jan. 2025)", + "position": 36, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 123 No. 2 (Feb. 2025)", + "position": 37, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 123 No. 3 (Mar. 2025)", + "position": 38, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 123 No. 4 (Apr. 2025)", + "position": 39, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Expected" + }, + { + "coverage": "Vol. 123 No. 5 (May. 2025)", + "position": 40, + "type": "nypl:CheckInBox", + "shelfMark": [ + "JBM 98-14" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "[VPA+] 27:10(1929)-70(1972).", + "[*ZAN-B338] 63(1965)-92(1994).", + "[ JBM 98-14] 95:12(1997)-96:6(1998),96:8(1998)-97:2(1999)-106:3(2008),106:5(2008)-107:1(2009)-107:7(2009),107:9(2009)-107:12(2009),107:14(2009)-111:7(2013),111:9(2013)-119(2021)-", + "2019-11; v. 113, no. 12 (2015-11) - v. 113, no. 13 (2015-12); v. 114, no. 1 (2016-01) - v. 114, no. 13 (2016-12); v. 115, no. 15 (2017-12) - v. 115 (2017-12); v. 115, no. 1 (2017-01) - v. 116, no. 1 (2017-01); v. 116, no. 1 (2018-01) - v. 116, no. 13 (2018-12); v. 117, no. 1 (2019-01) - v. 118, no. 3 (2020-03); v. 122, no. 2 (2024-02); v. 122, no. 11 (2024-11)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "JBM 98-14" + } + ], + "physicalLocation": [ + "JBM 98-14" + ], + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "shelfMark": [ + "JBM 98-14" + ], + "uri": "h1079022" + } + ], + "updatedAt": 1733243324920, + "publicationStatement": [ + "Des Moines, IA 50336 : Meredith Corp, 1716 Locust st." + ], + "identifier": [ + "urn:shelfmark:JBM 98-14", + "urn:bnum:11260098", + "urn:oclc:1639325", + "urn:oclc:NYPG89-S791", + "urn:lccn:11003309", + "urn:issn:0039-4432", + "urn:identifier:(WaOLN)nyp1267778", + "urn:identifier:(OCoLC)1639325" + ], + "numCheckinCardItems": [ + 40 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1902" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Agriculture -- Periodicals.", + "Agriculture -- United States -- Periodicals." + ], + "titleDisplay": [ + "Successful farming [microform]." + ], + "uri": "b11260098", + "lccClassification": [ + "S1 .S93" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Des Moines, IA 50336 : Meredith Corp, 1716 Locust st." + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "titleAlt": [ + "Successful farming", + "SF" + ], + "dimensions": [ + "27-31 cm." + ] + }, + "sort": [ + 0, + "b11260098" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 168, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b11260098", + "_nested": { + "field": "items", + "offset": 137 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2025-05-01", + "lte": "2025-05-01" + } + ], + "enumerationChronology": [ + "Vol. 123 No. 5 (May. 2025)" + ], + "enumerationChronology_sort": [ + " 123-2025-05-01" + ], + "formatLiteral": [ + "PRINT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "JBM 98-14", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JBM 98-14" + ], + "shelfMark_sort": "aJBM 98-000014", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1079022-2", + "volumeRange": [ + { + "gte": 123, + "lte": 123 + } + ], + "volumeRaw": [ + "Vol. 123 No. 5" + ] + }, + "sort": [ + " 123-2025-05-01" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b11260098", + "_nested": { + "field": "items", + "offset": 136 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "dateRange": [ + { + "gte": "2025-04-01", + "lte": "2025-04-01" + } + ], + "enumerationChronology": [ + "Vol. 123 No. 4 (Apr. 2025)" + ], + "enumerationChronology_sort": [ + " 123-2025-04-01" + ], + "formatLiteral": [ + "PRINT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "JBM 98-14", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JBM 98-14" + ], + "shelfMark_sort": "aJBM 98-000014", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1079022-3", + "volumeRange": [ + { + "gte": 123, + "lte": 123 + } + ], + "volumeRaw": [ + "Vol. 123 No. 4" + ] + }, + "sort": [ + " 123-2025-04-01" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b11260098", + "_nested": { + "field": "items", + "offset": 135 + }, + "_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. 123 No. 3 (Mar. 2025)" + ], + "enumerationChronology_sort": [ + " 123-2025-03-01" + ], + "formatLiteral": [ + "PRINT" + ], + "holdingLocation": [ + { + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + } + ], + "holdingLocation_packed": [ + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" + ], + "identifierV2": [ + { + "value": "JBM 98-14", + "type": "bf:ShelfMark" + } + ], + "shelfMark": [ + "JBM 98-14" + ], + "shelfMark_sort": "aJBM 98-000014", + "status": [ + { + "id": "status:na", + "label": "Not available" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "type": [ + "nypl:CheckinCardItem" + ], + "uri": "i-h1079022-4", + "volumeRange": [ + { + "gte": 123, + "lte": 123 + } + ], + "volumeRaw": [ + "Vol. 123 No. 3" + ] + }, + "sort": [ + " 123-2025-03-01" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b11266424", + "_score": 0, + "_source": { + "extent": [ + "ix, 297 p. : port. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hemingway, Ernest, 1899-1961", + "Hemingway, Ernest, 1899-1961 -- Criticism and interpretation" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Pennsylvania State University Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1966 + ], + "title": [ + "Ernest Hemingway : a reconsideration" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "JFD 89-7472" + ], + "createdString": [ + "1966" + ], + "creatorLiteral": [ + "Young, Philip, 1918-" + ], + "idLccn": [ + "65026101" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1966 + ], + "idOclc": [ + "2154619", + "NYPG90-B18433" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFD 89-7472" + }, + { + "type": "nypl:Bnumber", + "value": "11266424" + }, + { + "type": "nypl:Oclc", + "value": "2154619" + }, + { + "type": "nypl:Oclc", + "value": "NYPG90-B18433" + }, + { + "type": "bf:Lccn", + "value": "65026101" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1274107" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)2154619" + } + ], + "popularity": 24, + "updatedAt": 1733243883058, + "publicationStatement": [ + "University Park : Pennsylvania State University Press, 1966." + ], + "identifier": [ + "urn:shelfmark:JFD 89-7472", + "urn:bnum:11266424", + "urn:oclc:2154619", + "urn:oclc:NYPG90-B18433", + "urn:lccn:65026101", + "urn:identifier:(WaOLN)nyp1274107", + "urn:identifier:(OCoLC)2154619" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1966" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hemingway, Ernest, 1899-1961 -- Criticism and interpretation." + ], + "titleDisplay": [ + "Ernest Hemingway : a reconsideration / Philip Young." + ], + "uri": "b11266424", + "recordTypeId": "a", + "placeOfPublication": [ + "University Park" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + 0, + "b11266424" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b11266424", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2024-12-04" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "idBarcode": [ + "33433040572830" + ], + "identifier": [ + "urn:shelfmark:JFD 89-7472", + "urn:barcode:33433040572830" + ], + "identifierV2": [ + { + "value": "JFD 89-7472", + "type": "bf:ShelfMark" + }, + { + "value": "33433040572830", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "JFD 89-7472" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JFD 89-7472" + ], + "shelfMark_sort": "aJFD 89-007472", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i13155266" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b11273258", + "_score": 0, + "_source": { + "extent": [ + "xii, 597 p. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "American Revolution Bicentennial, 1976", + "American Revolution Bicentennial, 1976 -- Texas", + "Huntsville (Tex.)", + "Huntsville (Tex.) -- History", + "Walker County (Tex.)", + "Walker County (Tex.) -- History" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Sam Houston State University Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1976 + ], + "title": [ + "Huntsville and Walker County, Texas : a bicentennial history" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "ITRM (Huntsville) 90-4006" + ], + "createdString": [ + "1976" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Crews, D'Anne McAdams", + "Bicentennial Commission (Huntsville, Tex.). Heritage Committee" + ], + "dateStartYear": [ + 1976 + ], + "idOclc": [ + "4597880", + "NYPG90-B27779" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "ITRM (Huntsville) 90-4006" + }, + { + "type": "nypl:Bnumber", + "value": "11273258" + }, + { + "type": "nypl:Oclc", + "value": "4597880" + }, + { + "type": "nypl:Oclc", + "value": "NYPG90-B27779" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0324527" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)4597880" + } + ], + "popularity": 2, + "updatedAt": 1733243772202, + "publicationStatement": [ + "Huntsville, Tex. : Sam Houston State University Press, 1976." + ], + "identifier": [ + "urn:shelfmark:ITRM (Huntsville) 90-4006", + "urn:bnum:11273258", + "urn:oclc:4597880", + "urn:oclc:NYPG90-B27779", + "urn:identifier:(WaOLN)nyp0324527", + "urn:identifier:(OCoLC)4597880" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1976" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "American Revolution Bicentennial, 1976 -- Texas.", + "Huntsville (Tex.) -- History.", + "Walker County (Tex.) -- History." + ], + "titleDisplay": [ + "Huntsville and Walker County, Texas : a bicentennial history / compiled and edited by D'Anne McAdams Crews for the Heritage Committee, Bicentennial Commission of Huntsville." + ], + "uri": "b11273258", + "recordTypeId": "a", + "placeOfPublication": [ + "Huntsville, Tex." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b11273258" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b11273258", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2025-03-03" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433099432514" + ], + "identifier": [ + "urn:shelfmark:ITRM (Huntsville) 90-4006", + "urn:barcode:33433099432514" + ], + "identifierV2": [ + { + "value": "ITRM (Huntsville) 90-4006", + "type": "bf:ShelfMark" + }, + { + "value": "33433099432514", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "ITRM (Huntsville) 90-4006" + ], + "requestable": [ + false + ], + "shelfMark": [ + "ITRM (Huntsville) 90-4006" + ], + "shelfMark_sort": "aITRM (Huntsville) 90-004006", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15883451" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b11284026", + "_score": 0, + "_source": { + "extent": [ + "vii, 261 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Economics" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Manchester University Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "rc" + ], + "createdYear": [ + 1990 + ], + "title": [ + "Wrestling with time : problems in economic theory" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "JBD 90-89" + ], + "createdString": [ + "1990" + ], + "creatorLiteral": [ + "Currie, Martin" + ], + "idLccn": [ + "gb 89002245" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Steedman, Ian" + ], + "dateStartYear": [ + 1990 + ], + "idOclc": [ + "20014505", + "NYPG90-B40457" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JBD 90-89" + }, + { + "type": "nypl:Bnumber", + "value": "11284026" + }, + { + "type": "bf:Isbn", + "value": "0719028019" + }, + { + "type": "nypl:Oclc", + "value": "20014505" + }, + { + "type": "nypl:Oclc", + "value": "NYPG90-B40457" + }, + { + "type": "bf:Lccn", + "value": "gb 89002245" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1291725" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)20014505" + } + ], + "popularity": 4, + "updatedAt": 1733243883058, + "publicationStatement": [ + "Manchester [England] : Manchester University Press, 1990." + ], + "idIsbn": [ + "0719028019" + ], + "identifier": [ + "urn:shelfmark:JBD 90-89", + "urn:bnum:11284026", + "urn:isbn:0719028019", + "urn:oclc:20014505", + "urn:oclc:NYPG90-B40457", + "urn:lccn:gb 89002245", + "urn:identifier:(WaOLN)nyp1291725", + "urn:identifier:(OCoLC)20014505" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1990" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Economics." + ], + "titleDisplay": [ + "Wrestling with time : problems in economic theory / Martin Currie and Ian Steedman." + ], + "uri": "b11284026", + "lccClassification": [ + "HB171" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Manchester [England]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ], + "idIsbn_clean": [ + "0719028019" + ] + }, + "sort": [ + 0, + "b11284026" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b11284026", + "_nested": { + "field": "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": [ + "33433020675710" + ], + "identifier": [ + "urn:shelfmark:JBD 90-89", + "urn:barcode:33433020675710" + ], + "identifierV2": [ + { + "value": "JBD 90-89", + "type": "bf:ShelfMark" + }, + { + "value": "33433020675710", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "JBD 90-89" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JBD 90-89" + ], + "shelfMark_sort": "aJBD 90-000089", + "status": [ + { + "id": "status:oh", + "label": "On Holdshelf" + } + ], + "status_packed": [ + "status:oh||On Holdshelf" + ], + "type": [ + "bf:Item" + ], + "uri": "i11113670" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b11295470", + "_score": 0, + "_source": { + "extent": [ + "65 p. : ill. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. 55-65).", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Ships", + "Ships -- United States", + "Ships -- United States -- Passenger lists", + "Ships -- United States -- Passenger lists -- Handbooks, manuals, etc", + "United States", + "United States -- Genealogy", + "United States -- Genealogy -- Handbooks, manuals, etc" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ancestry Pub." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "rc" + ], + "createdYear": [ + 1989 + ], + "title": [ + "They came in ships" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "APK 90-9286" + ], + "createdString": [ + "1989" + ], + "creatorLiteral": [ + "Colletta, John Philip, 1949-" + ], + "idLccn": [ + "89017742" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1989 + ], + "idOclc": [ + "20170101", + "NYPG90-B54050" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "APK 90-9286" + }, + { + "type": "nypl:Bnumber", + "value": "11295470" + }, + { + "type": "bf:Isbn", + "value": "0916489426 (pbk.)" + }, + { + "type": "nypl:Oclc", + "value": "20170101" + }, + { + "type": "nypl:Oclc", + "value": "NYPG90-B54050" + }, + { + "type": "bf:Lccn", + "value": "89017742" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1303188" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)20170101" + } + ], + "popularity": 3, + "updatedAt": 1733243342220, + "publicationStatement": [ + "Salt Lake City, UT : Ancestry Pub., 1989." + ], + "idIsbn": [ + "0916489426 (pbk.)" + ], + "identifier": [ + "urn:shelfmark:APK 90-9286", + "urn:bnum:11295470", + "urn:isbn:0916489426 (pbk.)", + "urn:oclc:20170101", + "urn:oclc:NYPG90-B54050", + "urn:lccn:89017742", + "urn:identifier:(WaOLN)nyp1303188", + "urn:identifier:(OCoLC)20170101" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1989" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Ships -- United States -- Passenger lists -- Handbooks, manuals, etc.", + "United States -- Genealogy -- Handbooks, manuals, etc." + ], + "titleDisplay": [ + "They came in ships / by John Philip Colletta." + ], + "uri": "b11295470", + "lccClassification": [ + "CS49 .C63 1989" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Salt Lake City, UT" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ], + "idIsbn_clean": [ + "0916489426" + ] + }, + "sort": [ + 0, + "b11295470" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b11295470", + "_nested": { + "field": "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:rcmg2", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rcmg2||Offsite" + ], + "idBarcode": [ + "33433044484388" + ], + "identifier": [ + "urn:shelfmark:APK 90-9286", + "urn:barcode:33433044484388" + ], + "identifierV2": [ + { + "value": "APK 90-9286", + "type": "bf:ShelfMark" + }, + { + "value": "33433044484388", + "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": [ + "APK 90-9286" + ], + "recapCustomerCode": [ + "NH" + ], + "requestable": [ + false + ], + "shelfMark": [ + "APK 90-9286" + ], + "shelfMark_sort": "aAPK 90-009286", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i13160471" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b11302556", + "_score": 0, + "_source": { + "extent": [ + "xv, 327 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Papers presented at a Seminar on \"The Crisis-Management of Confrontational Politics in India\".", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographies and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "India", + "India -- Politics and government", + "India -- Politics and government -- 1977-", + "India -- Politics and government -- 1977- -- Congresses" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Commonwealth Publishers" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1989 + ], + "title": [ + "Confrontational politics in India" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "JFD 90-4253" + ], + "createdString": [ + "1989" + ], + "idLccn": [ + "89904542" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Gupta, A. L.", + "Saini, R. C.", + "Gupta, R. K." + ], + "dateStartYear": [ + 1989 + ], + "idOclc": [ + "20996305", + "NYPG90-B63209" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFD 90-4253" + }, + { + "type": "nypl:Bnumber", + "value": "11302556" + }, + { + "type": "bf:Isbn", + "value": "8171690157" + }, + { + "type": "nypl:Oclc", + "value": "20996305" + }, + { + "type": "nypl:Oclc", + "value": "NYPG90-B63209" + }, + { + "type": "bf:Lccn", + "value": "89904542" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1310289" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)20996305" + } + ], + "popularity": 1, + "updatedAt": 1733242864958, + "publicationStatement": [ + "New Delhi, India : Commonwealth Publishers, 1989." + ], + "idIsbn": [ + "8171690157" + ], + "identifier": [ + "urn:shelfmark:JFD 90-4253", + "urn:bnum:11302556", + "urn:isbn:8171690157", + "urn:oclc:20996305", + "urn:oclc:NYPG90-B63209", + "urn:lccn:89904542", + "urn:identifier:(WaOLN)nyp1310289", + "urn:identifier:(OCoLC)20996305" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1989" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "India -- Politics and government -- 1977- -- Congresses." + ], + "titleDisplay": [ + "Confrontational politics in India / editors, A.L. Gupta, R.C. Saini, R.K. Gupta." + ], + "uri": "b11302556", + "recordTypeId": "a", + "placeOfPublication": [ + "New Delhi, India" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ], + "idIsbn_clean": [ + "8171690157" + ] + }, + "sort": [ + 0, + "b11302556" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b11302556", + "_nested": { + "field": "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 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "idBarcode": [ + "33433040619490" + ], + "identifier": [ + "urn:shelfmark:JFD 90-4253", + "urn:barcode:33433040619490" + ], + "identifierV2": [ + { + "value": "JFD 90-4253", + "type": "bf:ShelfMark" + }, + { + "value": "33433040619490", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "JFD 90-4253" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JFD 90-4253" + ], + "shelfMark_sort": "aJFD 90-004253", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i13162228" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b11328591", + "_score": 0, + "_source": { + "note": [ + { + "noteType": "Note", + "label": "Limited ed. of 150 numbered copies.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Portugal", + "Portugal -- Genealogy" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Instituto Portugues de Heraldica" + ], + "language": [ + { + "id": "lang:por", + "label": "Portuguese" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1931 + ], + "title": [ + "Documentos e genealogias" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "ASM 87-2877" + ], + "createdString": [ + "1931" + ], + "creatorLiteral": [ + "Valente, Carlos F. de Figueiredo" + ], + "numElectronicResources": [ + 0 + ], + "seriesStatement": [ + "Publicações do Instituto Portugues de Heraldica" + ], + "dateStartYear": [ + 1931 + ], + "idOclc": [ + "NYPG88-B93510" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "ASM 87-2877" + }, + { + "type": "nypl:Bnumber", + "value": "11328591" + }, + { + "type": "nypl:Oclc", + "value": "NYPG88-B93510" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1336441" + } + ], + "popularity": 2, + "updatedAt": 1733243770037, + "publicationStatement": [ + "Lisboa : Instituto Portugues de Heraldica, 1931." + ], + "identifier": [ + "urn:shelfmark:ASM 87-2877", + "urn:bnum:11328591", + "urn:oclc:NYPG88-B93510", + "urn:identifier:(WaOLN)nyp1336441" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1931" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Portugal -- Genealogy." + ], + "titleDisplay": [ + "Documentos e genealogias / por Carlos F. de Figueiredo Valente." + ], + "uri": "b11328591", + "recordTypeId": "a", + "placeOfPublication": [ + "Lisboa" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ] + }, + "sort": [ + 0, + "b11328591" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b11328591", + "_nested": { + "field": "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" + ], + "dueDate": [ + "2025-03-03" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building - Milstein Division Room 121" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building - Milstein Division Room 121" + ], + "idBarcode": [ + "33433091658975" + ], + "identifier": [ + "urn:shelfmark:ASM 87-2877", + "urn:barcode:33433091658975" + ], + "identifierV2": [ + { + "value": "ASM 87-2877", + "type": "bf:ShelfMark" + }, + { + "value": "33433091658975", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "NH" + ], + "physicalLocation": [ + "ASM 87-2877" + ], + "requestable": [ + false + ], + "shelfMark": [ + "ASM 87-2877" + ], + "shelfMark_sort": "aASM 87-002877", + "status": [ + { + "id": "status:co", + "label": "Loaned" + } + ], + "status_packed": [ + "status:co||Loaned" + ], + "type": [ + "bf:Item" + ], + "uri": "i15891697" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b11354918", + "_score": 0, + "_source": { + "extent": [ + "xi, 322 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography: p. 292-310.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Lacan, Jacques, 1901-1981", + "Freud, Sigmund, 1856-1939", + "Freud, Sigmund, 1856-1939 -- Influence", + "Psychoanalysis", + "Psychoanalysis -- France", + "Psychoanalysis -- France -- History", + "Feminism" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Verso" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1988 + ], + "title": [ + "Lacan in contexts" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "JFE 88-2754" + ], + "createdString": [ + "1988" + ], + "creatorLiteral": [ + "Macey, David, 1949-" + ], + "idLccn": [ + "88017288" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1988 + ], + "idOclc": [ + "18051652", + "NYPG89-B21784" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 88-2754" + }, + { + "type": "nypl:Bnumber", + "value": "11354918" + }, + { + "type": "bf:Isbn", + "value": "0860912159" + }, + { + "type": "bf:Isbn", + "value": "0860919420 (pbk.)" + }, + { + "type": "nypl:Oclc", + "value": "18051652" + }, + { + "type": "nypl:Oclc", + "value": "NYPG89-B21784" + }, + { + "type": "bf:Lccn", + "value": "88017288" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1362838" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)18051652" + } + ], + "popularity": 4, + "updatedAt": 1733243823717, + "publicationStatement": [ + "London ; New York : Verso, 1988." + ], + "idIsbn": [ + "0860912159", + "0860919420 (pbk.)" + ], + "identifier": [ + "urn:shelfmark:JFE 88-2754", + "urn:bnum:11354918", + "urn:isbn:0860912159", + "urn:isbn:0860919420 (pbk.)", + "urn:oclc:18051652", + "urn:oclc:NYPG89-B21784", + "urn:lccn:88017288", + "urn:identifier:(WaOLN)nyp1362838", + "urn:identifier:(OCoLC)18051652" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1988" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Lacan, Jacques, 1901-1981.", + "Freud, Sigmund, 1856-1939 -- Influence.", + "Psychoanalysis.", + "Psychoanalysis -- France -- History.", + "Feminism." + ], + "titleDisplay": [ + "Lacan in contexts / David Macey." + ], + "uri": "b11354918", + "lccClassification": [ + "BF173 .M356 1988" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "London ; New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ], + "idIsbn_clean": [ + "0860912159", + "0860919420" + ] + }, + "sort": [ + 0, + "b11354918" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b11354918", + "_nested": { + "field": "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 - General Research Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "idBarcode": [ + "33433046887018" + ], + "identifier": [ + "urn:shelfmark:JFE 88-2754", + "urn:barcode:33433046887018" + ], + "identifierV2": [ + { + "value": "JFE 88-2754", + "type": "bf:ShelfMark" + }, + { + "value": "33433046887018", + "type": "bf:Barcode" + } + ], + "m2CustomerCode": [ + "XF" + ], + "physicalLocation": [ + "JFE 88-2754" + ], + "requestable": [ + false + ], + "shelfMark": [ + "JFE 88-2754" + ], + "shelfMark_sort": "aJFE 88-002754", + "status": [ + { + "id": "status:t", + "label": "In transit" + } + ], + "status_packed": [ + "status:t||In transit" + ], + "type": [ + "bf:Item" + ], + "uri": "i14030044" + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b11384034", + "_score": 0, + "_source": { + "extent": [ + "v. ill." + ], + "note": [ + { + "noteType": "Note", + "label": "\"Beiträge zur ägyptologischen Diskussion.\"", + "type": "bf:Note" + }, + { + "noteType": "Issued By", + "label": "Vol. <19>- published in cooperaton with the Ägyptologisches Seminar der Universität Göttingen; Vol. <84>- with the Seminar für Ägyptologie und Koptologie der Universität Göttingen.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "serialPublicationDates": [ + "Heft 1-" + ], + "subjectLiteral_exploded": [ + "Egypt", + "Egypt -- Antiquities", + "Egypt -- Antiquities -- Periodicals", + "Egypt -- Civilization", + "Egypt -- Civilization -- Periodicals" + ], + "numItemDatesParsed": [ + 75 + ], + "publisherLiteral": [ + "s.n.]" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 75 + ], + "buildingLocationIds": [ + "rc", + "ma" + ], + "createdYear": [ + 1972 + ], + "dateEndString": [ + "9999" + ], + "title": [ + "Göttinger Miszellen." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 75 + ], + "shelfMark": [ + "*OBH 88-1131" + ], + "createdString": [ + "1972" + ], + "idLccn": [ + "77649172" + ], + "idIssn": [ + "0344-385X" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Universität Göttingen. Ägyptologisches Seminar", + "Universität Göttingen. Seminar für Ägyptologie und Koptologie" + ], + "dateStartYear": [ + 1972 + ], + "idOclc": [ + "NYPG88-S1199" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OBH 88-1131" + }, + { + "type": "nypl:Bnumber", + "value": "11384034" + }, + { + "type": "nypl:Oclc", + "value": "NYPG88-S1199" + }, + { + "type": "bf:Lccn", + "value": "77649172" + }, + { + "type": "bf:Issn", + "value": "0344-385X" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1392066" + } + ], + "popularity": 132, + "dateEndYear": [ + 9999 + ], + "holdings": [ + { + "checkInBoxes": [ + { + "coverage": "No. 246 (2015)", + "position": 1, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 248 (2016)", + "position": 2, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 251 (2017)", + "position": 3, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 253 (2017)", + "position": 4, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 254 (2018)", + "position": 5, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 255 (2018)", + "position": 6, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 256 (2018)", + "position": 7, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 257 (2019)", + "position": 8, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 258 (2019)", + "position": 9, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 259 (2019)", + "position": 10, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 260 (2020)", + "position": 11, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 261 (2020)", + "position": 12, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 262 (2020)", + "position": 13, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 263 (2021)", + "position": 14, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 264 (2021)", + "position": 15, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 265 (2021)", + "position": 16, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 266 (2022)", + "position": 17, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 267 (2022)", + "position": 18, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Arrived" + }, + { + "coverage": "No. 268", + "position": 19, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Expected" + }, + { + "coverage": "No. 269", + "position": 20, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Expected" + }, + { + "coverage": "No. 270", + "position": 21, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Expected" + }, + { + "coverage": "No. 271", + "position": 22, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Expected" + }, + { + "coverage": "No. 272", + "position": 23, + "type": "nypl:CheckInBox", + "shelfMark": [ + "*OBH 88-1131" + ], + "status": "Expected" + } + ], + "holdingStatement": [ + "37(1980)-38(1980), 40(1980)-238(2013), 240(2014)-267(2022)-", + "heft 265 (2021) - heft 267 (2022)" + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "*OBH 88-1131" + } + ], + "physicalLocation": [ + "*OBH 88-1131" + ], + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:rc2ma", + "label": "Offsite" + } + ], + "shelfMark": [ + "*OBH 88-1131" + ], + "uri": "h1049047" + } + ], + "updatedAt": 1733243825428, + "publicationStatement": [ + "Göttingen [Ger., s.n.] 1972-" + ], + "identifier": [ + "urn:shelfmark:*OBH 88-1131", + "urn:bnum:11384034", + "urn:oclc:NYPG88-S1199", + "urn:lccn:77649172", + "urn:issn:0344-385X", + "urn:identifier:(WaOLN)nyp1392066" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1972" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Egypt -- Antiquities -- Periodicals.", + "Egypt -- Civilization -- Periodicals." + ], + "titleDisplay": [ + "Göttinger Miszellen." + ], + "uri": "b11384034", + "lccClassification": [ + "DT56.8 .G63" + ], + "recordTypeId": "a", + "placeOfPublication": [ + "Göttingen [Ger." + ], + "issuance": [ + { + "id": "urn:biblevel:s", + "label": "serial" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + 0, + "b11384034" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 75, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b11384034", + "_nested": { + "field": "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": "2022", + "lte": "2022" + } + ], + "enumerationChronology": [ + "v. 267 (2022)" + ], + "enumerationChronology_sort": [ + " 267-2022" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433129967604" + ], + "identifier": [ + "urn:shelfmark:*OBH 88-1131 v. 267 (2022)", + "urn:barcode:33433129967604" + ], + "identifierV2": [ + { + "value": "*OBH 88-1131 v. 267 (2022)", + "type": "bf:ShelfMark" + }, + { + "value": "33433129967604", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OBH 88-1131" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OBH 88-1131 v. 267 (2022)" + ], + "shelfMark_sort": "a*OBH 88-1131 v. 000267 (2022)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40667955", + "volumeRange": [ + { + "gte": 267, + "lte": 267 + } + ] + }, + "sort": [ + " 267-2022" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b11384034", + "_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": "2022", + "lte": "2022" + } + ], + "enumerationChronology": [ + "v. 266 (2022)" + ], + "enumerationChronology_sort": [ + " 266-2022" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433129937912" + ], + "identifier": [ + "urn:shelfmark:*OBH 88-1131 v. 266 (2022)", + "urn:barcode:33433129937912" + ], + "identifierV2": [ + { + "value": "*OBH 88-1131 v. 266 (2022)", + "type": "bf:ShelfMark" + }, + { + "value": "33433129937912", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OBH 88-1131" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OBH 88-1131 v. 266 (2022)" + ], + "shelfMark_sort": "a*OBH 88-1131 v. 000266 (2022)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40247885", + "volumeRange": [ + { + "gte": 266, + "lte": 266 + } + ] + }, + "sort": [ + " 266-2022" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b11384034", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2021", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 265 (2021)" + ], + "enumerationChronology_sort": [ + " 265-2021" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433133813497" + ], + "identifier": [ + "urn:shelfmark:*OBH 88-1131 v. 265 (2021)", + "urn:barcode:33433133813497" + ], + "identifierV2": [ + { + "value": "*OBH 88-1131 v. 265 (2021)", + "type": "bf:ShelfMark" + }, + { + "value": "33433133813497", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "physicalLocation": [ + "*OBH 88-1131" + ], + "recapCustomerCode": [ + "NA" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*OBH 88-1131 v. 265 (2021)" + ], + "shelfMark_sort": "a*OBH 88-1131 v. 000265 (2021)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i39898635", + "volumeRange": [ + { + "gte": 265, + "lte": 265 + } + ] + }, + "sort": [ + " 265-2021" + ] + } + ] + } + } + } + } + ] + } +} \ No newline at end of file diff --git a/test/fixtures/query-bf6caf242f418048cb7522997f55f4fa.json b/test/fixtures/query-bf6caf242f418048cb7522997f55f4fa.json index 36412fcc..714bf271 100644 --- a/test/fixtures/query-bf6caf242f418048cb7522997f55f4fa.json +++ b/test/fixtures/query-bf6caf242f418048cb7522997f55f4fa.json @@ -1,5 +1,5 @@ { - "took": 4, + "took": 6, "timed_out": false, "_shards": { "total": 2, @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.73737, + "max_score": 14.937069, "hits": [ { "_index": "resources-2024-10-22", "_id": "b10022950", - "_score": 15.73737, + "_score": 14.937069, "_source": { "extent": [ "224 p. ;" @@ -44,24 +44,24 @@ "numItemsTotal": [ 1 ], - "createdYear": [ - 1974 - ], "buildingLocationIds": [ "ma" ], + "createdYear": [ + 1974 + ], "title": [ "Religion--love or hate?" ], "type": [ "nypl:Item" ], - "shelfMark": [ - "*PGZ 81-1452" - ], "numItemVolumesParsed": [ 0 ], + "shelfMark": [ + "*PGZ 81-1452" + ], "createdString": [ "1974" ], @@ -95,7 +95,8 @@ "value": "(WaOLN)nyp0023028" } ], - "updatedAt": 1711072100364, + "popularity": 1, + "updatedAt": 1733243246425, "publicationStatement": [ "New York : [D. Kirshenbaum], 1974." ], @@ -136,6 +137,7 @@ "Religion--love or hate? / by David Kirshenbaum." ], "uri": "b10022950", + "recordTypeId": "a", "placeOfPublication": [ "New York" ], @@ -170,79 +172,79 @@ }, "_score": null, "_source": { + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "identifier": [ - "urn:shelfmark:*PGZ 81-1452", - "urn:barcode:33433103848853" - ], - "m2CustomerCode": [ - "XH" - ], - "physicalLocation": [ - "*PGZ 81-1452" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } ], - "shelfMark_sort": "a*PGZ 81-001452", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "accessMessage": [ + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "loc:maf92", + "label": "Schwarzman Building - Dorot Jewish Division Room 111" } ], - "status_packed": [ - "status:a||Available" + "holdingLocation_packed": [ + "loc:maf92||Schwarzman Building - Dorot Jewish Division Room 111" ], - "type": [ - "bf:Item" + "idBarcode": [ + "33433103848853" ], - "shelfMark": [ - "*PGZ 81-1452" + "identifier": [ + "urn:shelfmark:*PGZ 81-1452", + "urn:barcode:33433103848853" ], - "uri": "i14749981", "identifierV2": [ { - "type": "bf:ShelfMark", - "value": "*PGZ 81-1452" + "value": "*PGZ 81-1452", + "type": "bf:ShelfMark" }, { - "type": "bf:Barcode", - "value": "33433103848853" + "value": "33433103848853", + "type": "bf:Barcode" } ], - "holdingLocation_packed": [ - "loc:maf92||Schwarzman Building M2 - Dorot Jewish Division Room 111" + "m2CustomerCode": [ + "XH" ], - "idBarcode": [ - "33433103848853" + "physicalLocation": [ + "*PGZ 81-1452" ], "requestable": [ true ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:maf92", - "label": "Schwarzman Building M2 - Dorot Jewish Division Room 111" - } + "shelfMark": [ + "*PGZ 81-1452" ], + "shelfMark_sort": "a*PGZ 81-001452", "status": [ { "id": "status:a", "label": "Available" } - ] + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i14749981" }, "sort": [ null @@ -263,7 +265,7 @@ "sum_other_doc_count": 0, "buckets": [ { - "key": "loc:maf92||Schwarzman Building M2 - Dorot Jewish Division Room 111", + "key": "loc:maf92||Schwarzman Building - Dorot Jewish Division Room 111", "doc_count": 1 } ] diff --git a/test/fixtures/scsb-by-barcode-2837b33436973d1f8f98502383c86548.json b/test/fixtures/scsb-by-barcode-2837b33436973d1f8f98502383c86548.json new file mode 100644 index 00000000..8eeba266 --- /dev/null +++ b/test/fixtures/scsb-by-barcode-2837b33436973d1f8f98502383c86548.json @@ -0,0 +1,312 @@ +[ + { + "itemBarcode": "33433103848853", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433046153676", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433116007604", + "itemAvailabilityStatus": "Not Available", + "errorMessage": null + }, + { + "itemBarcode": "33433107841797", + "itemAvailabilityStatus": "Not Available", + "errorMessage": null + }, + { + "itemBarcode": "33433074435128", + "itemAvailabilityStatus": "Not Available", + "errorMessage": null + }, + { + "itemBarcode": "33433099434049", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433056619780", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433099439709", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433093145617", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433108334255", + "itemAvailabilityStatus": "Not Available", + "errorMessage": null + }, + { + "itemBarcode": "33433108656806", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433108656798", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093183980", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433125499990", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433125499339", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433125498901", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433092254139", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433102119991", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433091332787", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433016810362", + "itemAvailabilityStatus": "Not Available", + "errorMessage": null + }, + { + "itemBarcode": "33433085763781", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433097902344", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433103909630", + "itemAvailabilityStatus": "Not Available", + "errorMessage": null + }, + { + "itemBarcode": "33433036670747", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433046431197", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433089963700", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433031260122", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433031260114", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433031260106", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433093147563", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433097901551", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433093160830", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433056869286", + "itemAvailabilityStatus": "Not Available", + "errorMessage": null + }, + { + "itemBarcode": "33433072080348", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433046554378", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433101954257", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433091313712", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433083767396", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093161507", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433056760832", + "itemAvailabilityStatus": "Not Available", + "errorMessage": null + }, + { + "itemBarcode": "33433031380854", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433099176889", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433031380862", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433046682625", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433093180598", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433015958378", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433015958360", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433015969664", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433057525523", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433112910009", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433098315884", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433046813865", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433040572830", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433099432514", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433020675710", + "itemAvailabilityStatus": "Not Available", + "errorMessage": null + }, + { + "itemBarcode": "33433044484388", + "itemAvailabilityStatus": "Not Available", + "errorMessage": null + }, + { + "itemBarcode": "33433040619490", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433091658975", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433046887018", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433129967604", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433129937912", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433133813497", + "itemAvailabilityStatus": "Available", + "errorMessage": null + } +] \ No newline at end of file diff --git a/test/resource_serializer.test.js b/test/resource_serializer.test.js index a5baf49b..5e6cbd16 100644 --- a/test/resource_serializer.test.js +++ b/test/resource_serializer.test.js @@ -2,6 +2,11 @@ const { expect } = require('chai') const { ResourceSerializer } = require('../lib/jsonld_serializers') const esResponse = require('./fixtures/item-filter-aggregations.json') describe('Resource Serializer', () => { + describe('formatRecordType', () => { + it('should format properly', () => { + expect(ResourceSerializer.getFormattedRecordType('a')).to.deep.equal({ '@id': 'a', prefLabel: 'Book/Text' }) + }) + }) describe('.formatItemFilterAggregations()', () => { let aggregationsFormatted before(() => { diff --git a/test/resources-responses.test.js b/test/resources-responses.test.js index 60661976..b38b8974 100644 --- a/test/resources-responses.test.js +++ b/test/resources-responses.test.js @@ -266,6 +266,8 @@ describe('Test Resources responses', function () { assert(doc.itemAggregations) + assert.deepEqual(doc.recordType, { '@id': 'a', prefLabel: 'Book/Text' }) + done() }) }) @@ -547,6 +549,26 @@ describe('Test Resources responses', function () { }) }) + describe('Filter by recordType', function () { + it('returns only items with recordType a', (done) => { + const recordType = 'a' + request.get(`${searchAllUrl}&filters[recordType]=${recordType}`, (err, res, body) => { + if (err) throw err + const doc = JSON.parse(body) + // Ensure we received results + expect(doc.totalResults).to.be.above(1) + // Ensure each result... + const allItemsHaveRecordType = doc.itemListElement.every((element) => { + // .. has some items that ... + return element.recordType?.[0]['@id'] === 'recordType:' + recordType + }) + // For the result to match, only one item needs to match: + expect(allItemsHaveRecordType) + }) + done() + }) + }) + describe('Filter by holdingLocation', function () { ;['loc:rc2ma', 'loc:mal92'].forEach((holdingLocationId) => { it('returns only bibs with items in holdingLocation ' + holdingLocationId, function (done) {