From 3132c8f164e869c10359ec7c7ed76c5a3f1f7d59 Mon Sep 17 00:00:00 2001 From: Vera Kahn Date: Fri, 28 Feb 2025 14:24:32 -0500 Subject: [PATCH 1/4] add format to discovery api response --- config/production.env | 2 +- config/qa.env | 2 +- lib/jsonld_serializers.js | 14 ++++++++++---- lib/load_nypl_core.js | 5 +++-- 4 files changed, 15 insertions(+), 8 deletions(-) diff --git a/config/production.env b/config/production.env index c0270a1..10eb54f 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.27 +NYPL_CORE_VERSION=v2.28 LOG_LEVEL=info FEATURES=on-site-edd diff --git a/config/qa.env b/config/qa.env index 9137e1a..d6b7da9 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.27 +NYPL_CORE_VERSION=v2.28 LOG_LEVEL=debug FEATURES=on-site-edd diff --git a/lib/jsonld_serializers.js b/lib/jsonld_serializers.js index 026d8f1..b3bc7bc 100644 --- a/lib/jsonld_serializers.js +++ b/lib/jsonld_serializers.js @@ -269,10 +269,16 @@ class ResourceSerializer extends JsonLdItemSerializer { stmts.hasItemDates = this.body.numItemDatesParsed[0] / numItems >= parseFloat(process.env.BIB_HAS_DATES_THRESHOLD) } } + // this value was indexed but is not being used for anything. if (this.body.recordTypeId) { - stmts.recordType = ResourceSerializer.getFormattedRecordType(this.body.recordTypeId) + stmts.recordType = ResourceSerializer.getFormattedMaterialLikeType(this.body.recordTypeId, 'recordTypes') delete stmts.recordTypeId } + // This is the value that we use to determine format for filtering + if (this.body.formatId) { + stmts.format = ResourceSerializer.getFormattedMaterialLikeType(this.body.recordTypeId, 'formats') + delete stmts.formatId + } // DFE depends on this being set to an empty array when null: stmts.electronicResources = stmts.electronicResources || [] @@ -285,11 +291,11 @@ class ResourceSerializer extends JsonLdItemSerializer { } } -ResourceSerializer.getFormattedRecordType = function (recordTypeId) { - const prefLabel = nyplCore.recordTypes()[recordTypeId]?.label +ResourceSerializer.getFormattedMaterialLikeType = function (id, property) { + const prefLabel = nyplCore[property]()[id]?.label if (!prefLabel) return null return { - '@id': recordTypeId, + '@id': id, prefLabel } } diff --git a/lib/load_nypl_core.js b/lib/load_nypl_core.js index 1206bde..8754804 100644 --- a/lib/load_nypl_core.js +++ b/lib/load_nypl_core.js @@ -1,13 +1,13 @@ const _data = {} const nyplCoreObjects = require('@nypl/nypl-core-objects') - const loadNyplCoreData = () => { const vocabularies = { sierraLocations: 'by-sierra-location', recordTypes: 'by-record-types', recapCustomerCodes: 'by-recap-customer-code', m2CustomerCodes: 'by-m2-customer-code', - patronTypes: 'by-patron-type' + patronTypes: 'by-patron-type', + formats: 'by-formats' } return Promise.all(Object.keys(vocabularies).map(async (vocab) => { const nyplCoreValues = await nyplCoreObjects(vocabularies[vocab]) @@ -17,6 +17,7 @@ const loadNyplCoreData = () => { module.exports = { loadNyplCoreData, + formats: () => _data.formats || {}, patronTypes: () => _data.patronTypes || {}, sierraLocations: () => _data.sierraLocations || {}, recapCustomerCodes: () => _data.recapCustomerCodes || {}, From 905f05753f7fe31a09c3b429a5606c5496538865 Mon Sep 17 00:00:00 2001 From: Vera Kahn Date: Fri, 28 Feb 2025 14:35:11 -0500 Subject: [PATCH 2/4] rm recordtype from repo --- lib/elasticsearch/config.js | 1 + lib/jsonld_serializers.js | 28 +- lib/load_nypl_core.js | 2 - lib/resources.js | 3 +- swagger.v1.1.x.json | 2 +- ...uery-0618d9d8e93ba92efa70ac0597404d31.json | 14974 ++++++++++++++++ ...code-027491bdb95aefdc01ba60dc5e029473.json | 322 + test/jsonld-serializers.test.js | 26 +- test/resource_serializer.test.js | 4 +- test/resources-responses.test.js | 16 +- 10 files changed, 15334 insertions(+), 44 deletions(-) create mode 100644 test/fixtures/query-0618d9d8e93ba92efa70ac0597404d31.json create mode 100644 test/fixtures/scsb-by-barcode-027491bdb95aefdc01ba60dc5e029473.json diff --git a/lib/elasticsearch/config.js b/lib/elasticsearch/config.js index 2044f7e..b2c3beb 100644 --- a/lib/elasticsearch/config.js +++ b/lib/elasticsearch/config.js @@ -78,6 +78,7 @@ const SEARCH_SCOPES = { } const FILTER_CONFIG = { + format: { operator: 'match', field: ['formatId'], repeatable: true }, recordType: { operator: 'match', field: ['recordTypeId'], repeatable: true }, owner: { operator: 'match', field: ['items.owner.id', 'items.owner.label'], repeatable: true, path: 'items' }, subjectLiteral: { diff --git a/lib/jsonld_serializers.js b/lib/jsonld_serializers.js index b3bc7bc..949788f 100644 --- a/lib/jsonld_serializers.js +++ b/lib/jsonld_serializers.js @@ -269,14 +269,8 @@ class ResourceSerializer extends JsonLdItemSerializer { stmts.hasItemDates = this.body.numItemDatesParsed[0] / numItems >= parseFloat(process.env.BIB_HAS_DATES_THRESHOLD) } } - // this value was indexed but is not being used for anything. - if (this.body.recordTypeId) { - stmts.recordType = ResourceSerializer.getFormattedMaterialLikeType(this.body.recordTypeId, 'recordTypes') - delete stmts.recordTypeId - } - // This is the value that we use to determine format for filtering if (this.body.formatId) { - stmts.format = ResourceSerializer.getFormattedMaterialLikeType(this.body.recordTypeId, 'formats') + stmts.format = ResourceSerializer.getFormattedMaterialLikeType(this.body.formatId) delete stmts.formatId } @@ -291,11 +285,11 @@ class ResourceSerializer extends JsonLdItemSerializer { } } -ResourceSerializer.getFormattedMaterialLikeType = function (id, property) { - const prefLabel = nyplCore[property]()[id]?.label +ResourceSerializer.getFormattedFormat = function (formatId) { + const prefLabel = nyplCore.formats()[formatId]?.label if (!prefLabel) return null return { - '@id': id, + '@id': formatId, prefLabel } } @@ -489,6 +483,10 @@ class AggregationSerializer extends JsonLdItemSerializer { return `res:${this.body.id}` } + buildAggLabelsFromNyplCore (value, field) { + return nyplCore[field]()[value]?.label + } + async statements () { const stmts = await JsonLdItemSerializer.prototype.statements.call(this) @@ -503,12 +501,10 @@ class AggregationSerializer extends JsonLdItemSerializer { v.value = p[0] v.label = p[1] } else if (field === 'buildingLocation') { - // Build buildingLocation agg labels from nypl-core: - v.label = nyplCore.sierraLocations()[v.value]?.label - } else if (field === 'recordType') { - // Build recordType agg labels from nypl-core: - v.label = nyplCore.recordTypes()[v.value]?.label - // Unknown recordType? Remove it: + v.label = this.buildAggLabelsFromNyplCore(v.value, 'sierraLocations') + } else if (field === 'format') { + v.label = this.buildAggLabelsFromNyplCore(v.value, 'formats') + // Unknown format? Remove it: if (!v.label) return null } else { v.label = v.value diff --git a/lib/load_nypl_core.js b/lib/load_nypl_core.js index 8754804..6f3cd1c 100644 --- a/lib/load_nypl_core.js +++ b/lib/load_nypl_core.js @@ -3,7 +3,6 @@ const nyplCoreObjects = require('@nypl/nypl-core-objects') const loadNyplCoreData = () => { const vocabularies = { sierraLocations: 'by-sierra-location', - recordTypes: 'by-record-types', recapCustomerCodes: 'by-recap-customer-code', m2CustomerCodes: 'by-m2-customer-code', patronTypes: 'by-patron-type', @@ -21,6 +20,5 @@ module.exports = { patronTypes: () => _data.patronTypes || {}, sierraLocations: () => _data.sierraLocations || {}, recapCustomerCodes: () => _data.recapCustomerCodes || {}, - recordTypes: () => _data.recordTypes || {}, m2CustomerCodes: () => _data.m2CustomerCodes || {} } diff --git a/lib/resources.js b/lib/resources.js index 6026421..44d2463 100644 --- a/lib/resources.js +++ b/lib/resources.js @@ -32,12 +32,11 @@ const ITEM_FILTER_AGGREGATIONS = { // Configures aggregations: const AGGREGATIONS_SPEC = { - recordType: { terms: { field: 'recordTypeId' } }, + format: { terms: { field: 'formatId' } }, buildingLocation: { terms: { field: 'buildingLocationIds' } }, owner: { nested: { path: 'items' }, aggs: { _nested: { terms: { field: 'items.owner_packed' } } } }, subjectLiteral: { terms: { field: 'subjectLiteral.raw' } }, language: { terms: { field: 'language_packed' } }, - materialType: { terms: { field: 'materialType_packed' } }, mediaType: { terms: { field: 'mediaType_packed' } }, publisher: { terms: { field: 'publisherLiteral.raw' } }, contributorLiteral: { terms: { field: 'contributorLiteral.raw' } }, diff --git a/swagger.v1.1.x.json b/swagger.v1.1.x.json index f8082ec..e608ea3 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: 'recordType', '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: 'format', 'buildingLocation', 'owner', 'subjectLiteral', 'holdingLocation', 'deliveryLocation', 'language', 'materialType', 'mediaType', 'carrierType', 'publisher', 'contributor', 'creator', 'issuance', 'createdYear', 'dateAfter', or 'dateBefore'", "required": false, "type": "string" }, diff --git a/test/fixtures/query-0618d9d8e93ba92efa70ac0597404d31.json b/test/fixtures/query-0618d9d8e93ba92efa70ac0597404d31.json new file mode 100644 index 0000000..da7e396 --- /dev/null +++ b/test/fixtures/query-0618d9d8e93ba92efa70ac0597404d31.json @@ -0,0 +1,14974 @@ +{ + "took": 77, + "timed_out": false, + "_shards": { + "total": 2, + "successful": 2, + "skipped": 0, + "failed": 0 + }, + "hits": { + "total": { + "value": 10000, + "relation": "gte" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b12062337", + "_score": 0, + "_source": { + "extent": [ + "x, 234 p. : map ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and index.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Declaration of Principles on Interim Self-Government Arrangements (1993 September 13)", + "Arab-Israeli conflict", + "Arab-Israeli conflict -- 1973-1993", + "Diplomatic negotiations in international disputes", + "Arbitration (International law)", + "West Bank", + "West Bank -- International status", + "Gaza Strip", + "Gaza Strip -- International status" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Ithaca Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "ma" + ], + "createdYear": [ + 1994 + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Handshake in Washington : the beginning of Middle East peace?" + ], + "shelfMark": [ + "*PXLB 95-887" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1994" + ], + "creatorLiteral": [ + "King, John" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1994 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*PXLB 95-887" + }, + { + "type": "nypl:Bnumber", + "value": "12062337" + }, + { + "type": "bf:Isbn", + "value": "086372180X" + }, + { + "type": "bf:Isbn", + "value": "0863721842 (pbk.)" + }, + { + "type": "nypl:Oclc", + "value": "30861714" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp2050268" + } + ], + "idOclc": [ + "30861714" + ], + "popularity": 0, + "updatedAt": 1734462519275, + "publicationStatement": [ + "Reading, UK : Ithaca Press, c1994." + ], + "identifier": [ + "urn:shelfmark:*PXLB 95-887", + "urn:bnum:12062337", + "urn:isbn:086372180X", + "urn:isbn:0863721842 (pbk.)", + "urn:oclc:30861714", + "urn:identifier:(WaOLN)nyp2050268" + ], + "idIsbn": [ + "086372180X", + "0863721842 (pbk.)" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1994" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Declaration of Principles on Interim Self-Government Arrangements (1993 September 13)", + "Arab-Israeli conflict -- 1973-1993.", + "Arab-Israeli conflict.", + "Diplomatic negotiations in international disputes.", + "Arbitration (International law)", + "West Bank -- International status.", + "Gaza Strip -- International status." + ], + "titleDisplay": [ + "Handshake in Washington : the beginning of Middle East peace? / John King." + ], + "uri": "b12062337", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Reading, UK" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ], + "idIsbn_clean": [ + "086372180X", + "0863721842" + ] + }, + "sort": [ + 0, + "b12062337" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b12062337", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "owner": [ + { + "id": "orgs:1103", + "label": "Dorot Jewish Division" + } + ], + "identifier": [ + "urn:shelfmark:*PXLB 95-887", + "urn:barcode:33433060755836" + ], + "physicalLocation": [ + "*PXLB 95-887" + ], + "shelfMark_sort": "a*PXLB 95-000887", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*PXLB 95-887" + ], + "uri": "i14233858", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*PXLB 95-887" + }, + { + "type": "bf:Barcode", + "value": "33433060755836" + } + ], + "holdingLocation_packed": [ + "loc:maf82||Schwarzman Building - Dorot Jewish Division Room 111" + ], + "idBarcode": [ + "33433060755836" + ], + "owner_packed": [ + "orgs:1103||Dorot Jewish Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:maf82", + "label": "Schwarzman Building - Dorot Jewish Division Room 111" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b12392305", + "_score": 0, + "_source": { + "extent": [ + "377 p. : map ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. [378]).", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Arabic.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Declaration of Principles on Interim Self-Government Arrangements (1993 September 13)", + "Arab-Israeli conflict", + "Arab-Israeli conflict -- 1973-1993", + "Self-determination, National", + "Self-determination, National -- Gaza Strip", + "Self-determination, National -- West Bank", + "Palestinian Arabs", + "Palestinian Arabs -- Politics and government", + "Palestinian Arabs -- Politics and government -- West Bank", + "Palestinian Arabs -- Politics and government -- Gaza Strip" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "al-Ahlīyah lil-Nashr wa-al-Tawzīʻ" + ], + "language": [ + { + "id": "lang:ara", + "label": "Arabic" + } + ], + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "rc" + ], + "createdYear": [ + 1995 + ], + "title": [ + "Qiṣṣat ittifāq Ūslū : al-riwāyah al-ḥaqīqīyah al-kāmilah (ṭabkhat Ūslū)" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "shelfMark": [ + "*OFP 96-2008" + ], + "createdString": [ + "1995" + ], + "creatorLiteral": [ + "Nawfal, Mamdūḥ." + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1995 + ], + "idOclc": [ + "33061762", + "NYPN96-B284" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFP 96-2008" + }, + { + "type": "nypl:Bnumber", + "value": "12392305" + }, + { + "type": "nypl:Oclc", + "value": "33061762" + }, + { + "type": "nypl:Oclc", + "value": "NYPN96-B284" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp2377515" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)33061762" + } + ], + "popularity": 1, + "uniformTitle": [ + "Declaration of Principles on Interim Self-Government Arrangements (1993 September 13). Arabic. 1995." + ], + "updatedAt": 1734463188460, + "publicationStatement": [ + "ʻAmmān : al-Ahlīyah lil-Nashr wa-al-Tawzīʻ, 1995." + ], + "identifier": [ + "urn:shelfmark:*OFP 96-2008", + "urn:bnum:12392305", + "urn:oclc:33061762", + "urn:oclc:NYPN96-B284", + "urn:identifier:(WaOLN)nyp2377515", + "urn:identifier:(OCoLC)33061762" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1995" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Declaration of Principles on Interim Self-Government Arrangements (1993 September 13)", + "Arab-Israeli conflict.", + "Arab-Israeli conflict -- 1973-1993.", + "Self-determination, National -- Gaza Strip.", + "Self-determination, National -- West Bank.", + "Palestinian Arabs -- Politics and government -- West Bank.", + "Palestinian Arabs -- Politics and government -- Gaza Strip." + ], + "titleDisplay": [ + "Qiṣṣat ittifāq Ūslū : al-riwāyah al-ḥaqīqīyah al-kāmilah (ṭabkhat Ūslū) / Mamdūḥ Nawfal." + ], + "uri": "b12392305", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "ʻAmmān" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b12392305" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b12392305", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*OFP 96-2008", + "urn:barcode:33433005557115" + ], + "physicalLocation": [ + "*OFP 96-2008" + ], + "shelfMark_sort": "a*OFP 96-002008", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OFP 96-2008" + ], + "uri": "i10520051", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OFP 96-2008" + }, + { + "type": "bf:Barcode", + "value": "33433005557115" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005557115" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847213", + "_score": 0, + "_source": { + "extent": [ + "v. illus., plates." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Contains \"Literatur\".", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Iron founding" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "J. Springer" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1911 + ], + "buildingLocationIds": [ + "rc" + ], + "dateEndString": [ + "9999" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Handbuch der Eisen- und Stahlgiesserei" + ], + "shelfMark": [ + "3-VIR (Geiger, C. Handbuch der Eisen- und Stahlgiesserei)" + ], + "numItemVolumesParsed": [ + 2 + ], + "creatorLiteral": [ + "Geiger, Karl." + ], + "createdString": [ + "1911" + ], + "idLccn": [ + "11026935 //r22" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Bauer, O.", + "Beck, Ludwig." + ], + "dateStartYear": [ + 1911 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-VIR (Geiger, C. Handbuch der Eisen- und Stahlgiesserei)" + }, + { + "type": "nypl:Bnumber", + "value": "13847213" + }, + { + "type": "bf:Lccn", + "value": "11026935 //r22" + }, + { + "type": "nypl:Oclc", + "value": "9981583" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176354" + } + ], + "idOclc": [ + "9981583" + ], + "dateEndYear": [ + 9999 + ], + "holdings": [], + "updatedAt": 1671736401029, + "publicationStatement": [ + "Berlin, J. Springer, 1911-" + ], + "identifier": [ + "urn:bnum:13847213", + "urn:lccn:11026935 //r22", + "urn:oclc:9981583", + "urn:undefined:(WaOLN)nyp0176354" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1911" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Iron founding." + ], + "titleDisplay": [ + "Handbuch der Eisen- und Stahlgiesserei unter Mitarbeit von ... O. Bauer ... L. Beck ... [u.a.] hrsg. von Dr.-Ing. C. Geiger." + ], + "uri": "b13847213", + "lccClassification": [ + "TS230 .G4" + ], + "numItems": [ + 2 + ], + "numAvailable": [ + 2 + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Berlin" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + 0, + "b13847213" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847213", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "identifier": [ + "urn:barcode:33433084623499" + ], + "physicalLocation": [ + "3-VIR (Geiger, C. Handbuch der Eisen- und Stahlgiesserei)" + ], + "shelfMark_sort": "a3-VIR (Geiger, C. Handbuch der Eisen- und Stahlgiesserei) Bd. 2 (1916)", + "catalogItemType_packed": [ + "catalogItemType:66||book, poor condition, non-MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" + ], + "uri": "i27688459", + "shelfMark": [ + "3-VIR (Geiger, C. Handbuch der Eisen- und Stahlgiesserei) Bd. 2 (1916)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-VIR (Geiger, C. Handbuch der Eisen- und Stahlgiesserei) Bd. 2 (1916)" + }, + { + "type": "bf:Barcode", + "value": "33433084623499" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "Bd. 2 (1916)" + ], + "idBarcode": [ + "33433084623499" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:66", + "label": "book, poor condition, non-MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 2-" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847213", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "identifier": [ + "urn:barcode:33433084623507" + ], + "physicalLocation": [ + "3-VIR (Geiger, C. Handbuch der Eisen- und Stahlgiesserei) Library has: Bd.1-2" + ], + "shelfMark_sort": "a3-VIR (Geiger, C. Handbuch der Eisen- und Stahlgiesserei) Library has: Bd.1-2 Bd. 1(1911)", + "catalogItemType_packed": [ + "catalogItemType:66||book, poor condition, non-MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "uri": "i16855406", + "shelfMark": [ + "3-VIR (Geiger, C. Handbuch der Eisen- und Stahlgiesserei) Library has: Bd.1-2 Bd. 1(1911)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-VIR (Geiger, C. Handbuch der Eisen- und Stahlgiesserei) Library has: Bd.1-2 Bd. 1(1911)" + }, + { + "type": "bf:Barcode", + "value": "33433084623507" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "Bd. 1(1911)" + ], + "idBarcode": [ + "33433084623507" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:66", + "label": "book, poor condition, non-MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + " 1-" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847219", + "_score": 0, + "_source": { + "extent": [ + "viii, 374 p. illus., diagrs." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 361-363.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Steel" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "McGraw-Hill book company, inc." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1921 + ], + "buildingLocationIds": [ + "rc" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Heat treatment of soft and medium steels; theory and practice of the preliminary heat treatments designed to give maximum toughness to steels used for machine parts" + ], + "shelfMark": [ + "VIR (Giolitti, F. Heat treatment of soft and medium steels)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1921" + ], + "creatorLiteral": [ + "Giolitti, Federico." + ], + "idLccn": [ + "21010778" + ], + "numElectronicResources": [ + 1 + ], + "contributorLiteral": [ + "Thum, Ernest Edgar, 1884-", + "Vernaci, D. G." + ], + "dateStartYear": [ + 1921 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Giolitti, F. Heat treatment of soft and medium steels)" + }, + { + "type": "nypl:Bnumber", + "value": "13847219" + }, + { + "type": "nypl:Oclc", + "value": "3603338" + }, + { + "type": "bf:Lccn", + "value": "21010778" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176360" + } + ], + "idOclc": [ + "3603338" + ], + "updatedAt": 1711589748669, + "publicationStatement": [ + "New York [etc.] McGraw-Hill book company, inc., 1921." + ], + "identifier": [ + "urn:shelfmark:VIR (Giolitti, F. Heat treatment of soft and medium steels)", + "urn:bnum:13847219", + "urn:oclc:3603338", + "urn:lccn:21010778", + "urn:identifier:(WaOLN)nyp0176360" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1921" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Steel." + ], + "titleDisplay": [ + "Heat treatment of soft and medium steels; theory and practice of the preliminary heat treatments designed to give maximum toughness to steels used for machine parts, by Federico Giolitti; tr. by E. E. Thum and D. G. Vernaci." + ], + "uri": "b13847219", + "lccClassification": [ + "TS320 .G5" + ], + "electronicResources": [ + { + "label": "Full text available via HathiTrust", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433066397435" + } + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "New York [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b13847219" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847219", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VIR (Giolitti, F. Heat treatment of soft and medium steels)", + "urn:barcode:33433066397435" + ], + "physicalLocation": [ + "VIR (Giolitti, F. Heat treatment of soft and medium steels)" + ], + "shelfMark_sort": "aVIR (Giolitti, F. Heat treatment of soft and medium steels)", + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VIR (Giolitti, F. Heat treatment of soft and medium steels)" + ], + "uri": "i15213352", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Giolitti, F. Heat treatment of soft and medium steels)" + }, + { + "type": "bf:Barcode", + "value": "33433066397435" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433066397435" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847223", + "_score": 0, + "_source": { + "extent": [ + "1 v. (unpaged) illus." + ], + "note": [ + { + "noteType": "Note", + "label": "Book printed on samples of paper made by W.C. Hamilton & Sons.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Plates printed on both sides.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Papermaking" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "W.C. Hamilton & Sons" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + null + ], + "dateEndString": [ + "uuuu" + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Along the pathway from fibre to paper." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VMP (Hamilton, W.C, & Sons, firm, paper manufacturers. Along the pathway from fibre to paper)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "uuuu" + ], + "creatorLiteral": [ + "Riverside Paper Mills Company." + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + null + ], + "idOclc": [ + "258755" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMP (Hamilton, W.C, & Sons, firm, paper manufacturers. Along the pathway from fibre to paper)" + }, + { + "type": "nypl:Bnumber", + "value": "13847223" + }, + { + "type": "nypl:Oclc", + "value": "258755" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176364" + } + ], + "dateEndYear": [ + null + ], + "updatedAt": 1711306043017, + "publicationStatement": [ + "Lafayette Station, in Montgomery County, Pennsylvania, W.C. Hamilton & Sons, n.d." + ], + "identifier": [ + "urn:shelfmark:VMP (Hamilton, W.C, & Sons, firm, paper manufacturers. Along the pathway from fibre to paper)", + "urn:bnum:13847223", + "urn:oclc:258755", + "urn:identifier:(WaOLN)nyp0176364" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "uuuu" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Papermaking." + ], + "titleDisplay": [ + "Along the pathway from fibre to paper." + ], + "uri": "b13847223", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Lafayette Station, in Montgomery County, Pennsylvania" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "28 cm." + ] + }, + "sort": [ + 0, + "b13847223" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847223", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VMP (Hamilton, W.C, & Sons, firm, paper manufacturers. Along the pathway from fibre to paper)", + "urn:barcode:33433093799298" + ], + "physicalLocation": [ + "VMP (Hamilton, W.C, & Sons, firm, paper manufacturers. Along the pathway from fibre to paper)" + ], + "shelfMark_sort": "aVMP (Hamilton, W.C, & Sons, firm, paper manufacturers. Along the pathway from fibre to paper)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VMP (Hamilton, W.C, & Sons, firm, paper manufacturers. Along the pathway from fibre to paper)" + ], + "uri": "i16855412", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMP (Hamilton, W.C, & Sons, firm, paper manufacturers. Along the pathway from fibre to paper)" + }, + { + "type": "bf:Barcode", + "value": "33433093799298" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093799298" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847233", + "_score": 0, + "_source": { + "extent": [ + "105 p. illus." + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "microfilmed", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sheep", + "Sheep -- Karakul" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Laborde" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1954 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "L'astrakan vérités, légendes." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*ZV-1098, no. 3" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1954" + ], + "creatorLiteral": [ + "Laborde, Pierre." + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1954 + ], + "donor": [ + "National Endowment for the Humanities Preservation Grant 8, 2003/2005." + ], + "idOclc": [ + "NYPG06-B4181" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-1098, no. 3" + }, + { + "type": "nypl:Bnumber", + "value": "13847233" + }, + { + "type": "nypl:Oclc", + "value": "NYPG06-B4181" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)G100000015" + }, + { + "type": "bf:Identifier", + "value": "NEH8-SIBL" + } + ], + "updatedAt": 1711630111181, + "publicationStatement": [ + "[Paris : Laborde, c1954]" + ], + "identifier": [ + "urn:shelfmark:*ZV-1098, no. 3", + "urn:bnum:13847233", + "urn:oclc:NYPG06-B4181", + "urn:identifier:(WaOLN)G100000015", + "urn:identifier:NEH8-SIBL" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1954" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sheep -- Karakul." + ], + "titleDisplay": [ + "L'astrakan [microform] vérités, légendes." + ], + "uri": "b13847233", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "[Paris" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b13847233" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847233", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VMG (Laborde, P. Astrakan) [Text]", + "urn:barcode:33433067119697" + ], + "physicalLocation": [ + "VMG (Laborde, P. Astrakan) [Text]" + ], + "shelfMark_sort": "aVMG (Laborde, P. Astrakan) [Text]", + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VMG (Laborde, P. Astrakan) [Text]" + ], + "uri": "i15213357", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMG (Laborde, P. Astrakan) [Text]" + }, + { + "type": "bf:Barcode", + "value": "33433067119697" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433067119697" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NB" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847233", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*ZV-1098", + "urn:barcode:33433057291225" + ], + "physicalLocation": [ + "*ZV-1098" + ], + "shelfMark_sort": "a*ZV-001098", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZV-1098" + ], + "uri": "i24055514", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-1098" + }, + { + "type": "bf:Barcode", + "value": "33433057291225" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433057291225" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847234", + "_score": 0, + "_source": { + "extent": [ + "126 p. incl. illus., tables. plates." + ], + "note": [ + { + "noteType": "Note", + "label": "At head of title: Department of scientific and industrial research.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Most of the plates printed on both sides.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "H. C. H. Carpenter, chairman.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "\"Minority report, by Mr. J. H. B. Jenkins\": p. 26-36.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "H. M. Stationery off." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1921 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "... First report of the Gas cylinders research committee." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "3-VIR (Great Britain. Dept. of scientific and industrial research. Gas cylinders research committee. First report)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1921" + ], + "creatorLiteral": [ + "Great Britain. Department of Scientific and Industrial Research Gas Cylinders Research Committee." + ], + "idLccn": [ + "22020515" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1921 + ], + "idOclc": [ + "38718037" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-VIR (Great Britain. Dept. of scientific and industrial research. Gas cylinders research committee. First report)" + }, + { + "type": "nypl:Bnumber", + "value": "13847234" + }, + { + "type": "nypl:Oclc", + "value": "38718037" + }, + { + "type": "bf:Lccn", + "value": "22020515" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176375" + } + ], + "updatedAt": 1711366327481, + "publicationStatement": [ + "London, H. M. Stationery off., 1921." + ], + "identifier": [ + "urn:shelfmark:3-VIR (Great Britain. Dept. of scientific and industrial research. Gas cylinders research committee. First report)", + "urn:bnum:13847234", + "urn:oclc:38718037", + "urn:lccn:22020515", + "urn:identifier:(WaOLN)nyp0176375" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1921" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "... First report of the Gas cylinders research committee." + ], + "uri": "b13847234", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b13847234" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847234", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:3-VIR (Great Britain. Dept. of scientific and industrial research. Gas cylinders research committee. First report) report no. 1-4 ", + "urn:barcode:33433093984858" + ], + "physicalLocation": [ + "3-VIR (Great Britain. Dept. of scientific and industrial research. Gas cylinders research committee. First report)" + ], + "shelfMark_sort": "a3-VIR (Great Britain. Dept. of scientific and industrial research. Gas cylinders research committee. First report) report no. 000001-4 ", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "3-VIR (Great Britain. Dept. of scientific and industrial research. Gas cylinders research committee. First report) report no. 1-4 " + ], + "uri": "i16855418", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-VIR (Great Britain. Dept. of scientific and industrial research. Gas cylinders research committee. First report) report no. 1-4 " + }, + { + "type": "bf:Barcode", + "value": "33433093984858" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "report no. 1-4 " + ], + "idBarcode": [ + "33433093984858" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847236", + "_score": 0, + "_source": { + "extent": [ + "v. 93 p. illus." + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Knit goods" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Dry goods economist" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1927 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Knitting, its products and processes a concise survey of knit goods manufacture, from the raw material to the finished merchandise" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*ZV-533, no. 8" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1927" + ], + "creatorLiteral": [ + "Caplin, Jessie F." + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1927 + ], + "donor": [ + "National Endowment for the Humanities Preservation Grant 8, 2003/2005." + ], + "idOclc": [ + "NYPG04-B2392" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-533, no. 8" + }, + { + "type": "nypl:Bnumber", + "value": "13847236" + }, + { + "type": "nypl:Oclc", + "value": "NYPG04-B2392" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)G300000018" + }, + { + "type": "bf:Identifier", + "value": "NEH8-SIBL" + } + ], + "updatedAt": 1711339745259, + "publicationStatement": [ + "New York : Dry goods economist, 1927." + ], + "identifier": [ + "urn:shelfmark:*ZV-533, no. 8", + "urn:bnum:13847236", + "urn:oclc:NYPG04-B2392", + "urn:identifier:(WaOLN)G300000018", + "urn:identifier:NEH8-SIBL" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1927" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Knit goods." + ], + "titleDisplay": [ + "Knitting, its products and processes [microform] a concise survey of knit goods manufacture, from the raw material to the finished merchandise, by Jessie F. Caplin." + ], + "uri": "b13847236", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "20 cm." + ] + }, + "sort": [ + 0, + "b13847236" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847236", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VLD (Caplin, J. F. Knitting, its products and processes) [Text]", + "urn:barcode:33433059736474" + ], + "physicalLocation": [ + "VLD (Caplin, J. F. Knitting, its products and processes) [Text]" + ], + "shelfMark_sort": "aVLD (Caplin, J. F. Knitting, its products and processes) [Text]", + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VLD (Caplin, J. F. Knitting, its products and processes) [Text]" + ], + "uri": "i14429880", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VLD (Caplin, J. F. Knitting, its products and processes) [Text]" + }, + { + "type": "bf:Barcode", + "value": "33433059736474" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433059736474" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847236", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*ZV-533", + "urn:barcode:33433057306981" + ], + "physicalLocation": [ + "*ZV-533" + ], + "shelfMark_sort": "a*ZV-000533", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZV-533" + ], + "uri": "i24055688", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-533" + }, + { + "type": "bf:Barcode", + "value": "33433057306981" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433057306981" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847237", + "_score": 0, + "_source": { + "extent": [ + "xi, 334 p." + ], + "note": [ + { + "noteType": "Note", + "label": "\"This volume is a modified version of a series of articles ... which first appeared under the title \"Knowledge and its enlargement\" in The Paper maker.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Bibliography, p. 325-334.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Papermaking" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Manchester University Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1960 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Paper-making practice" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VMP (Hardman, H. Paper-making practice)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1960" + ], + "creatorLiteral": [ + "Hardman, H." + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Cole, E. J." + ], + "dateStartYear": [ + 1960 + ], + "idOclc": [ + "13301366" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMP (Hardman, H. Paper-making practice)" + }, + { + "type": "nypl:Bnumber", + "value": "13847237" + }, + { + "type": "nypl:Oclc", + "value": "13301366" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176379" + } + ], + "updatedAt": 1711657765852, + "publicationStatement": [ + "Manchester : Manchester University Press, [1960]" + ], + "identifier": [ + "urn:shelfmark:VMP (Hardman, H. Paper-making practice)", + "urn:bnum:13847237", + "urn:oclc:13301366", + "urn:identifier:(WaOLN)nyp0176379" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1960" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Papermaking." + ], + "titleDisplay": [ + "Paper-making practice, by H. Hardman and E. J. Cole." + ], + "uri": "b13847237", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Manchester" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + 0, + "b13847237" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847237", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VMP (Hardman, H. Paper-making practice)", + "urn:barcode:33433093799314" + ], + "physicalLocation": [ + "VMP (Hardman, H. Paper-making practice)" + ], + "shelfMark_sort": "aVMP (Hardman, H. Paper-making practice)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VMP (Hardman, H. Paper-making practice)" + ], + "uri": "i16855419", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMP (Hardman, H. Paper-making practice)" + }, + { + "type": "bf:Barcode", + "value": "33433093799314" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093799314" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847238", + "_score": 0, + "_source": { + "extent": [ + "71, [1] p., 1 ℓ. incl. front., illus., 2 fold. pl., ports. fold. map." + ], + "note": [ + { + "noteType": "Note", + "label": "Frontispiece, plates and part of the illustrations are printed in blue and black.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "International Paper Company", + "Papermaking" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "International Paper Company" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1921 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "News print, the origin of paper making and the manufacturing of news print" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VMP+ (Haskell, W. E. News print)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1921" + ], + "creatorLiteral": [ + "Haskell, William Edwin, 1862-" + ], + "idLccn": [ + "21005934" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1921 + ], + "idOclc": [ + "3578042" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMP+ (Haskell, W. E. News print)" + }, + { + "type": "nypl:Bnumber", + "value": "13847238" + }, + { + "type": "nypl:Oclc", + "value": "3578042" + }, + { + "type": "bf:Lccn", + "value": "21005934" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176380" + } + ], + "updatedAt": 1711342213515, + "publicationStatement": [ + "New York, International Paper Company, 1921." + ], + "identifier": [ + "urn:shelfmark:VMP+ (Haskell, W. E. News print)", + "urn:bnum:13847238", + "urn:oclc:3578042", + "urn:lccn:21005934", + "urn:identifier:(WaOLN)nyp0176380" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1921" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "International Paper Company.", + "Papermaking." + ], + "titleDisplay": [ + "News print, the origin of paper making and the manufacturing of news print, by W. E. Haskell." + ], + "uri": "b13847238", + "lccClassification": [ + "TS1096.I7 H3" + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "31 cm." + ] + }, + "sort": [ + 0, + "b13847238" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847238", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VMP+ (Haskell, W. E. News print)", + "urn:barcode:33433094013707" + ], + "physicalLocation": [ + "VMP+ (Haskell, W. E. News print)" + ], + "shelfMark_sort": "aVMP+ (Haskell, W. E. News print)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VMP+ (Haskell, W. E. News print)" + ], + "uri": "i12313523", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMP+ (Haskell, W. E. News print)" + }, + { + "type": "bf:Barcode", + "value": "33433094013707" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433094013707" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847239", + "_score": 0, + "_source": { + "extent": [ + "xvi, 779 p. front., plates." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Chemistry, Technical" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "F. Siemenroth" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1911 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Modern industrial chemistry" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VOE (Blücher, H. Modern industrial chemistry)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1911" + ], + "creatorLiteral": [ + "Blücher, Hans, 1867-1927." + ], + "idLccn": [ + "agr11000971" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Millington, John Price." + ], + "dateStartYear": [ + 1911 + ], + "idOclc": [ + "6441538" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VOE (Blücher, H. Modern industrial chemistry)" + }, + { + "type": "nypl:Bnumber", + "value": "13847239" + }, + { + "type": "nypl:Oclc", + "value": "6441538" + }, + { + "type": "bf:Lccn", + "value": "agr11000971" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176381" + } + ], + "updatedAt": 1711665022417, + "publicationStatement": [ + "Berlin, F. Siemenroth, 1911." + ], + "identifier": [ + "urn:shelfmark:VOE (Blücher, H. Modern industrial chemistry)", + "urn:bnum:13847239", + "urn:oclc:6441538", + "urn:lccn:agr11000971", + "urn:identifier:(WaOLN)nyp0176381" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1911" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Chemistry, Technical." + ], + "titleDisplay": [ + "Modern industrial chemistry, from the German of H. Blücher. Tr. by J. P. Millington ..." + ], + "uri": "b13847239", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Berlin" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b13847239" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847239", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VOE (Blücher, H. Modern industrial chemistry)", + "urn:barcode:33433079421842" + ], + "physicalLocation": [ + "VOE (Blücher, H. Modern industrial chemistry)" + ], + "shelfMark_sort": "aVOE (Blücher, H. Modern industrial chemistry)", + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VOE (Blücher, H. Modern industrial chemistry)" + ], + "uri": "i16855420", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VOE (Blücher, H. Modern industrial chemistry)" + }, + { + "type": "bf:Barcode", + "value": "33433079421842" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433079421842" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847240", + "_score": 0, + "_source": { + "extent": [ + "2 p. ̋., [3]-317 p., [1] ̋. illus., fold. pl., diagrs." + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + }, + { + "noteType": "Processing Action", + "label": "microfilmed", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Textile design" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Editorial Atlante, s.a." + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1944 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Teoría del ligamento en la industria textil" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VLD (Carreras Palet, J. Teoría del ligamento en la industria textil)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1944" + ], + "creatorLiteral": [ + "Carreras Palet, Juan." + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1944 + ], + "donor": [ + "National Endowment for the Humanities Preservation Grant 8, 2003/2005." + ], + "idOclc": [ + "NYPG04-B5385" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VLD (Carreras Palet, J. Teoría del ligamento en la industria textil)" + }, + { + "type": "nypl:Bnumber", + "value": "13847240" + }, + { + "type": "nypl:Oclc", + "value": "NYPG04-B5385" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)g110000023" + }, + { + "type": "bf:Identifier", + "value": "NEH8-SIBL" + } + ], + "holdings": [ + { + "holdingStatement": [ + "1944." + ], + "identifier": [ + { + "type": "bf:shelfMark", + "value": "VLD (Carreras Palet, J. Teoría del ligamento en la industria textil)" + } + ], + "physicalLocation": [ + "VLD (Carreras Palet, J. Teoría del ligamento en la industria textil)" + ], + "format": [ + "PRINT" + ], + "location": [ + { + "code": "loc:mal", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "shelfMark": [ + "VLD (Carreras Palet, J. Teoría del ligamento en la industria textil)" + ], + "uri": "h1133945" + } + ], + "updatedAt": 1711470196342, + "publicationStatement": [ + "México, D.F. : Editorial Atlante, s.a., 1944." + ], + "identifier": [ + "urn:shelfmark:VLD (Carreras Palet, J. Teoría del ligamento en la industria textil)", + "urn:bnum:13847240", + "urn:oclc:NYPG04-B5385", + "urn:identifier:(WaOLN)g110000023", + "urn:identifier:NEH8-SIBL" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1944" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Textile design." + ], + "titleDisplay": [ + "Teoría del ligamento en la industria textil [microform], por J. Carreras Palet." + ], + "uri": "b13847240", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "México, D.F." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b13847240" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847240", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VLD (Carreras Palet, J. Teoria del ligamento en la industria textil)", + "urn:barcode:33433062627561" + ], + "physicalLocation": [ + "VLD (Carreras Palet, J. Teoria del ligamento en la industria textil)" + ], + "shelfMark_sort": "aVLD (Carreras Palet, J. Teoria del ligamento en la industria textil)", + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VLD (Carreras Palet, J. Teoria del ligamento en la industria textil)" + ], + "uri": "i15213358", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VLD (Carreras Palet, J. Teoria del ligamento en la industria textil)" + }, + { + "type": "bf:Barcode", + "value": "33433062627561" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433062627561" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847240", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*ZV-718", + "urn:barcode:33433057273439" + ], + "physicalLocation": [ + "*ZV-718" + ], + "shelfMark_sort": "a*ZV-000718", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZV-718" + ], + "uri": "i24055963", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-718" + }, + { + "type": "bf:Barcode", + "value": "33433057273439" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433057273439" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847243", + "_score": 0, + "_source": { + "extent": [ + "ix, 430 p., 1 l. incl. tables, diagrs. VII pl. (2 fold.)" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "\"Bibliography 1938-1944\": p. 420-430.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tempering", + "Steel" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Iron and Steel Institute" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1946 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Symposium on the hardenability of steel" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VIR (Great Britain. Special and alloy steels committee. Symposium on the hardenability of steel)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1946" + ], + "idLccn": [ + "a 47003987" + ], + "numElectronicResources": [ + 0 + ], + "seriesStatement": [ + "Iron and Steel Institute. Special report, no. 36" + ], + "contributorLiteral": [ + "Iron and Steel Institute." + ], + "dateStartYear": [ + 1946 + ], + "idOclc": [ + "20923726" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Great Britain. Special and alloy steels committee. Symposium on the hardenability of steel)" + }, + { + "type": "nypl:Bnumber", + "value": "13847243" + }, + { + "type": "nypl:Oclc", + "value": "20923726" + }, + { + "type": "bf:Lccn", + "value": "a 47003987" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176385" + } + ], + "updatedAt": 1710975991556, + "publicationStatement": [ + "London, Iron and Steel Institute, 1946." + ], + "identifier": [ + "urn:shelfmark:VIR (Great Britain. Special and alloy steels committee. Symposium on the hardenability of steel)", + "urn:bnum:13847243", + "urn:oclc:20923726", + "urn:lccn:a 47003987", + "urn:identifier:(WaOLN)nyp0176385" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1946" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tempering.", + "Steel." + ], + "titleDisplay": [ + "Symposium on the hardenability of steel, organized by the Technical Advisory Committee of the Special and Alloy Steels Committee (Ministry of Supply) and the Iron and Steel Institute." + ], + "uri": "b13847243", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Hardenability of steel." + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + 0, + "b13847243" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847243", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VIR (Great Britain. Special and alloy steels committee. Symposium on the hardenability of steel)", + "urn:barcode:33433084623523" + ], + "physicalLocation": [ + "VIR (Great Britain. Special and alloy steels committee. Symposium on the hardenability of steel)" + ], + "shelfMark_sort": "aVIR (Great Britain. Special and alloy steels committee. Symposium on the hardenability of steel)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VIR (Great Britain. Special and alloy steels committee. Symposium on the hardenability of steel)" + ], + "uri": "i16855422", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Great Britain. Special and alloy steels committee. Symposium on the hardenability of steel)" + }, + { + "type": "bf:Barcode", + "value": "33433084623523" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433084623523" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847244", + "_score": 0, + "_source": { + "extent": [ + "x, 358 p. illus., diagrs (2 fold.)" + ], + "note": [ + { + "noteType": "Note", + "label": "\"First edition, 1944; reprinted with corrections 1945 ... \"", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Steel" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Sir I. Pitman & sons, Itd." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1945 + ], + "buildingLocationIds": [ + "rc" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The heat-treatment of steel" + ], + "shelfMark": [ + "VIR (Gregory, E. Heat-treatment of steel. 1945)" + ], + "numItemVolumesParsed": [ + 0 + ], + "creatorLiteral": [ + "Gregory, Edwin, 1894-" + ], + "createdString": [ + "1945" + ], + "idLccn": [ + "45002746" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Simons, Eric N." + ], + "dateStartYear": [ + 1945 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Gregory, E. Heat-treatment of steel. 1945)" + }, + { + "type": "nypl:Bnumber", + "value": "13847244" + }, + { + "type": "bf:Lccn", + "value": "45002746" + }, + { + "type": "nypl:Oclc", + "value": "1731412" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176386" + } + ], + "idOclc": [ + "1731412" + ], + "holdings": [], + "updatedAt": 1671736795373, + "publicationStatement": [ + "London, Sir I. Pitman & sons, Itd., [1945]" + ], + "identifier": [ + "urn:bnum:13847244", + "urn:lccn:45002746", + "urn:oclc:1731412", + "urn:undefined:(WaOLN)nyp0176386" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1945" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Steel." + ], + "titleDisplay": [ + "The heat-treatment of steel, by Edwin Gregory ... and Eric N. Simons ... with a foreword by Mr. C. K. Everitt ..." + ], + "uri": "b13847244", + "lccClassification": [ + "TS320 .G72" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + 0, + "b13847244" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847244", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:33433093984882" + ], + "physicalLocation": [ + "VIR (Gregory, E. Heat-treatment of steel. 1945)" + ], + "shelfMark_sort": "aVIR (Gregory, E. Heat-treatment of steel. 1945)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i16855423", + "shelfMark": [ + "VIR (Gregory, E. Heat-treatment of steel. 1945)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Gregory, E. Heat-treatment of steel. 1945)" + }, + { + "type": "bf:Barcode", + "value": "33433093984882" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093984882" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "formatLiteral": [ + "Text" + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847245", + "_score": 0, + "_source": { + "extent": [ + "268 p. illus." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Spinning" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "J. Bale, Sons & Danielsson" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1910 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Flax, hemp and jute spinners' catechism." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VLD (Carter, H. R. Flax, hemp and jute spinners' catechism)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1910" + ], + "creatorLiteral": [ + "Carter, H. R. (Herbert R.)" + ], + "numElectronicResources": [ + 0 + ], + "seriesStatement": [ + "Technical handbooks, no. 4" + ], + "dateStartYear": [ + 1910 + ], + "idOclc": [ + "11143651" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VLD (Carter, H. R. Flax, hemp and jute spinners' catechism)" + }, + { + "type": "nypl:Bnumber", + "value": "13847245" + }, + { + "type": "nypl:Oclc", + "value": "11143651" + } + ], + "updatedAt": 1711569820895, + "publicationStatement": [ + "London, J. Bale, Sons & Danielsson, 1910." + ], + "identifier": [ + "urn:shelfmark:VLD (Carter, H. R. Flax, hemp and jute spinners' catechism)", + "urn:bnum:13847245", + "urn:oclc:11143651" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1910" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Spinning." + ], + "titleDisplay": [ + "Flax, hemp and jute spinners' catechism." + ], + "uri": "b13847245", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + 0, + "b13847245" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847245", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VLD (Carter, H. R. Flax, hemp and jute spinners' catechism)", + "urn:barcode:33433017412242" + ], + "physicalLocation": [ + "VLD (Carter, H. R. Flax, hemp and jute spinners' catechism)" + ], + "shelfMark_sort": "aVLD (Carter, H. R. Flax, hemp and jute spinners' catechism)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VLD (Carter, H. R. Flax, hemp and jute spinners' catechism)" + ], + "uri": "i14429882", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VLD (Carter, H. R. Flax, hemp and jute spinners' catechism)" + }, + { + "type": "bf:Barcode", + "value": "33433017412242" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433017412242" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847247", + "_score": 0, + "_source": { + "extent": [ + "ix, 198 p. illus., fold. tab., diagrs. (1 fold.)" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Steel" + ], + "numItemDatesParsed": [ + 1 + ], + "publisherLiteral": [ + "Sir I. Pitman & Sons, ltd." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1946 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "The mechanical working of steel" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VIR (Gregory, E. Mechanical working of steel)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1946" + ], + "creatorLiteral": [ + "Gregory, Edwin, 1894-" + ], + "idLccn": [ + "43011315" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Simons, Eric N." + ], + "dateStartYear": [ + 1946 + ], + "idOclc": [ + "2559528" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Gregory, E. Mechanical working of steel)" + }, + { + "type": "nypl:Bnumber", + "value": "13847247" + }, + { + "type": "nypl:Oclc", + "value": "2559528" + }, + { + "type": "bf:Lccn", + "value": "43011315" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176389" + } + ], + "updatedAt": 1710980624365, + "publicationStatement": [ + "London, Sir I. Pitman & Sons, ltd., [c1943, 1946]" + ], + "identifier": [ + "urn:shelfmark:VIR (Gregory, E. Mechanical working of steel)", + "urn:bnum:13847247", + "urn:oclc:2559528", + "urn:lccn:43011315", + "urn:identifier:(WaOLN)nyp0176389" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1946" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Steel." + ], + "titleDisplay": [ + "The mechanical working of steel, by Edwin Gregory...and Eric N. Simons... With a foreword by Dr. F. C. Lea" + ], + "uri": "b13847247", + "lccClassification": [ + "TN731 .G7" + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + 0, + "b13847247" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847247", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VIR (Gregory, E. Mechanical working of steel) 1943", + "urn:barcode:33433093983843" + ], + "physicalLocation": [ + "VIR (Gregory, E. Mechanical working of steel)" + ], + "shelfMark_sort": "aVIR (Gregory, E. Mechanical working of steel) 001943", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "dateRange": [ + { + "gte": "1943", + "lte": "1943" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " -1943" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VIR (Gregory, E. Mechanical working of steel) 1943" + ], + "uri": "i16855425", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Gregory, E. Mechanical working of steel) 1943" + }, + { + "type": "bf:Barcode", + "value": "33433093983843" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "1943" + ], + "idBarcode": [ + "33433093983843" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + " -1943" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847248", + "_score": 0, + "_source": { + "extent": [ + "xvi, 360 p. illus., x pl. (1 fold.)" + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Fibers" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "C. Griffin and company; J.B. Lipincott company" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1904 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "The spinning and twisting of long vegetable fibres (flax, hemp, jute, tow, & ramie) A practical manual of the most modern methods as applied to the hackling, carding, preparing, spinning, and twisting of the long vegetable fibres of commerce." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*ZV-532, no. 1" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1904" + ], + "creatorLiteral": [ + "Carter, H. R. (Herbert R.)" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1904 + ], + "donor": [ + "National Endowment for the Humanities Preservation Grant 8, 2003/2005." + ], + "idOclc": [ + "NYPG04-B2371" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-532, no. 1" + }, + { + "type": "nypl:Bnumber", + "value": "13847248" + }, + { + "type": "nypl:Oclc", + "value": "NYPG04-B2371" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)G040000145" + }, + { + "type": "bf:Identifier", + "value": "NEH8-SIBL" + } + ], + "updatedAt": 1711140628679, + "publicationStatement": [ + "London : C. Griffin and company; Philadelphia, J.B. Lipincott company, 1904." + ], + "identifier": [ + "urn:shelfmark:*ZV-532, no. 1", + "urn:bnum:13847248", + "urn:oclc:NYPG04-B2371", + "urn:identifier:(WaOLN)G040000145", + "urn:identifier:NEH8-SIBL" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1904" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Fibers." + ], + "titleDisplay": [ + "The spinning and twisting of long vegetable fibres (flax, hemp, jute, tow, & ramie) [microform] A practical manual of the most modern methods as applied to the hackling, carding, preparing, spinning, and twisting of the long vegetable fibres of commerce. By Herbert R. Carter." + ], + "uri": "b13847248", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "London : Philadelphia" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + 0, + "b13847248" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847248", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*ZV-532", + "urn:barcode:33433057300711" + ], + "physicalLocation": [ + "*ZV-532" + ], + "shelfMark_sort": "a*ZV-000532", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZV-532" + ], + "uri": "i24055966", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-532" + }, + { + "type": "bf:Barcode", + "value": "33433057300711" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433057300711" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847252", + "_score": 0, + "_source": { + "extent": [ + "105 p. : ill. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. 105) and index.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Machine knitting" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Textile Institute" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 3 + ], + "createdYear": [ + 1951 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Principles of machine knitting" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*ZV-517, no. 2" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1951" + ], + "creatorLiteral": [ + "Chamberlain, John." + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1951 + ], + "donor": [ + "National Endowment for the Humanities Preservation Grant 8, 2003/2005." + ], + "idOclc": [ + "NYPG04-B2160" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-517, no. 2" + }, + { + "type": "nypl:Bnumber", + "value": "13847252" + }, + { + "type": "nypl:Oclc", + "value": "NYPG04-B2160" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)G100000012" + }, + { + "type": "bf:Identifier", + "value": "NEH8-SIBL" + } + ], + "updatedAt": 1710965914609, + "publicationStatement": [ + "Manchester [England] : Textile Institute, 1951." + ], + "identifier": [ + "urn:shelfmark:*ZV-517, no. 2", + "urn:bnum:13847252", + "urn:oclc:NYPG04-B2160", + "urn:identifier:(WaOLN)G100000012", + "urn:identifier:NEH8-SIBL" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1951" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Machine knitting." + ], + "titleDisplay": [ + "Principles of machine knitting [microform] / by John Chamberlain." + ], + "uri": "b13847252", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Manchester [England]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Machine knitting." + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + 0, + "b13847252" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 3, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847252", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VLD (Chamberlain, J. Knitted fabrics) [Text]", + "urn:barcode:33433022739977" + ], + "physicalLocation": [ + "VLD (Chamberlain, J. Knitted fabrics) [Text]" + ], + "shelfMark_sort": "aVLD (Chamberlain, J. Knitted fabrics) [Text]", + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VLD (Chamberlain, J. Knitted fabrics) [Text]" + ], + "uri": "i14429885", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VLD (Chamberlain, J. Knitted fabrics) [Text]" + }, + { + "type": "bf:Barcode", + "value": "33433022739977" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433022739977" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847252", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VLD (Chamberlain, J. Knitted fabrics)", + "urn:barcode:33433022739969" + ], + "physicalLocation": [ + "VLD (Chamberlain, J. Knitted fabrics)" + ], + "shelfMark_sort": "aVLD (Chamberlain, J. Knitted fabrics)", + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VLD (Chamberlain, J. Knitted fabrics)" + ], + "uri": "i15213359", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VLD (Chamberlain, J. Knitted fabrics)" + }, + { + "type": "bf:Barcode", + "value": "33433022739969" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433022739969" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847252", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*ZV-517", + "urn:barcode:33433057310181" + ], + "physicalLocation": [ + "*ZV-517" + ], + "shelfMark_sort": "a*ZV-000517", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZV-517" + ], + "uri": "i24055890", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-517" + }, + { + "type": "bf:Barcode", + "value": "33433057310181" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433057310181" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847255", + "_score": 0, + "_source": { + "extent": [ + "xii, 400 p. incl. illus., tables." + ], + "note": [ + { + "noteType": "Note", + "label": "First edition published 1916 under title: Papierstoffgarne und Gewebe. Diss.--Sächs. Technische Hochschule, Dresden. Second edition published 1917: Handbuch der Papergarnspinnerei und -weberei.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Advertisements, p. 365-400.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "O.H. Hörisch" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1919 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Handbuch der Papier-Textil-Industrie" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VMP (Heinke, W. Handbuch der Papier-Textil-Industrie)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1919" + ], + "creatorLiteral": [ + "Heinke, Wilhelm" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Rasser, E. O." + ], + "dateStartYear": [ + 1919 + ], + "idOclc": [ + "33085839" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMP (Heinke, W. Handbuch der Papier-Textil-Industrie)" + }, + { + "type": "nypl:Bnumber", + "value": "13847255" + }, + { + "type": "nypl:Oclc", + "value": "33085839" + } + ], + "updatedAt": 1711589254806, + "publicationStatement": [ + "Dresden, O.H. Hörisch, 1919." + ], + "identifier": [ + "urn:shelfmark:VMP (Heinke, W. Handbuch der Papier-Textil-Industrie)", + "urn:bnum:13847255", + "urn:oclc:33085839" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1919" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Handbuch der Papier-Textil-Industrie herausgegeben von Dr. Ing. Wilh. Heinke und Dr. E.O. Rasser. Dritte bedeutend erweiterte und verbesserte Auflage des handbuches der Papier-garnspinnerei und -weberei von Dr.-Ing. Heinke." + ], + "uri": "b13847255", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Dresden" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "26 cm." + ] + }, + "sort": [ + 0, + "b13847255" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847255", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VMP (Heinke, W. Handbuch der Papier-Textil-Industrie)", + "urn:barcode:33433093799322" + ], + "physicalLocation": [ + "VMP (Heinke, W. Handbuch der Papier-Textil-Industrie)" + ], + "shelfMark_sort": "aVMP (Heinke, W. Handbuch der Papier-Textil-Industrie)", + "catalogItemType_packed": [ + "catalogItemType:66||book, poor condition, non-MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VMP (Heinke, W. Handbuch der Papier-Textil-Industrie)" + ], + "uri": "i16855429", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMP (Heinke, W. Handbuch der Papier-Textil-Industrie)" + }, + { + "type": "bf:Barcode", + "value": "33433093799322" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093799322" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:66", + "label": "book, poor condition, non-MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847256", + "_score": 0, + "_source": { + "extent": [ + "240 p. illus." + ], + "note": [ + { + "noteType": "Note", + "label": "Label mounted on t.p.: Transatlantic Arts, Hollywood-by-the-Sea, Fla.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Simons, Eric N., joint author", + "Steelwork" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Odhams Books" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1964 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Steel working processes; principles and practice of forging, rolling, pressing, squeezing, drawing and allied methods of metal forming" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VIR (Gregory, E. Steel working processes)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1964" + ], + "creatorLiteral": [ + "Gregory, Edwin, 1894-" + ], + "idLccn": [ + "64057006" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Simons, Eric N." + ], + "dateStartYear": [ + 1964 + ], + "idOclc": [ + "1804405" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Gregory, E. Steel working processes)" + }, + { + "type": "nypl:Bnumber", + "value": "13847256" + }, + { + "type": "nypl:Oclc", + "value": "1804405" + }, + { + "type": "bf:Lccn", + "value": "64057006" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176398" + } + ], + "updatedAt": 1710975157036, + "publicationStatement": [ + "London, Odhams Books [1964]" + ], + "identifier": [ + "urn:shelfmark:VIR (Gregory, E. Steel working processes)", + "urn:bnum:13847256", + "urn:oclc:1804405", + "urn:lccn:64057006", + "urn:identifier:(WaOLN)nyp0176398" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1964" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Simons, Eric N., joint author.", + "Steelwork." + ], + "titleDisplay": [ + "Steel working processes; principles and practice of forging, rolling, pressing, squeezing, drawing and allied methods of metal forming, by Edwin Gregory and Eric N. Simons. With additional material by Kenneth E. Gregory." + ], + "uri": "b13847256", + "lccClassification": [ + "TS320 .G73" + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + 0, + "b13847256" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847256", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VIR (Gregory, E. Steel working processes)", + "urn:barcode:33433093983801" + ], + "physicalLocation": [ + "VIR (Gregory, E. Steel working processes)" + ], + "shelfMark_sort": "aVIR (Gregory, E. Steel working processes)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VIR (Gregory, E. Steel working processes)" + ], + "uri": "i16855430", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Gregory, E. Steel working processes)" + }, + { + "type": "bf:Barcode", + "value": "33433093983801" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093983801" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847257", + "_score": 0, + "_source": { + "extent": [ + "203 p. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Includes, in an appendix, a contents list and author index for issues no. 1-50 (1973-1998) of Archivio sardo del movimento operaio, contadino e autonomistico (p. 175-201).", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Sotgiu, Girolamo", + "Archivio sardo del movimento operaio, contadino e autonomistico", + "Archivio sardo del movimento operaio, contadino e autonomistico -- Indexes", + "Sardinia (Italy)", + "Sardinia (Italy) -- Historiography" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Carocci" + ], + "language": [ + { + "id": "lang:ita", + "label": "Italian" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1998 + ], + "buildingLocationIds": [ + "ma" + ], + "title": [ + "La storiografia sarda degli ultimi decenni : Girolamo Sotgiu tra cultura e impegno politico" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "JFE 98-11441" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1998" + ], + "numElectronicResources": [ + 0 + ], + "seriesStatement": [ + "Archivio sardo del movimento operaio contadino e autonomistico ; n. 50" + ], + "contributorLiteral": [ + "Accardo, Aldo." + ], + "dateStartYear": [ + 1998 + ], + "idOclc": [ + "39378916" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 98-11441" + }, + { + "type": "nypl:Bnumber", + "value": "13847257" + }, + { + "type": "bf:Isbn", + "value": "8843011146" + }, + { + "type": "nypl:Oclc", + "value": "39378916" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176399" + } + ], + "uniformTitle": [ + "Archivio sardo del movimento operaio, contadino e autonomistico ; n. 50." + ], + "updatedAt": 1711340233624, + "publicationStatement": [ + "Roma : Carocci, 1998." + ], + "idIsbn": [ + "8843011146" + ], + "identifier": [ + "urn:shelfmark:JFE 98-11441", + "urn:bnum:13847257", + "urn:isbn:8843011146", + "urn:oclc:39378916", + "urn:identifier:(WaOLN)nyp0176399" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1998" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Sotgiu, Girolamo.", + "Archivio sardo del movimento operaio, contadino e autonomistico -- Indexes.", + "Sardinia (Italy) -- Historiography." + ], + "titleDisplay": [ + "La storiografia sarda degli ultimi decenni : Girolamo Sotgiu tra cultura e impegno politico / scritti di Aldo Accardo ... [et al.]." + ], + "uri": "b13847257", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Roma" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ], + "idIsbn_clean": [ + "8843011146" + ] + }, + "sort": [ + 0, + "b13847257" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847257", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "identifier": [ + "urn:shelfmark:JFE 98-11441", + "urn:barcode:33433049733235" + ], + "physicalLocation": [ + "JFE 98-11441" + ], + "shelfMark_sort": "aJFE 98-011441", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JFE 98-11441" + ], + "uri": "i14429886", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 98-11441" + }, + { + "type": "bf:Barcode", + "value": "33433049733235" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433049733235" + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847260", + "_score": 0, + "_source": { + "extent": [ + "266 p., 24 leaves of plates : ill. ;" + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Textile industry", + "Textile fabrics" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Éditions de L'Industrie Textile" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1948 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Analyse de l'étirage en filature" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*ZV-510, no. 7" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1948" + ], + "creatorLiteral": [ + "Champion, Jean." + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1948 + ], + "donor": [ + "National Endowment for the Humanities Preservation Grant 8, 2003/2005." + ], + "idOclc": [ + "NYPG04-B2055" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-510, no. 7" + }, + { + "type": "nypl:Bnumber", + "value": "13847260" + }, + { + "type": "nypl:Oclc", + "value": "NYPG04-B2055" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)G230000015" + }, + { + "type": "bf:Identifier", + "value": "NEH8-SIBL" + } + ], + "updatedAt": 1711401665748, + "publicationStatement": [ + "Paris : Éditions de L'Industrie Textile, [1948?]" + ], + "identifier": [ + "urn:shelfmark:*ZV-510, no. 7", + "urn:bnum:13847260", + "urn:oclc:NYPG04-B2055", + "urn:identifier:(WaOLN)G230000015", + "urn:identifier:NEH8-SIBL" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1948" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Textile industry.", + "Textile fabrics." + ], + "titleDisplay": [ + "Analyse de l'étirage en filature [microform] / Jean Champion." + ], + "uri": "b13847260", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Paris" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + 0, + "b13847260" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847260", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VLD (Champion, J. Analyse de l'étirage en filature) [Text]", + "urn:barcode:33433017412226" + ], + "physicalLocation": [ + "VLD (Champion, J. Analyse de l'étirage en filature) [Text]" + ], + "shelfMark_sort": "aVLD (Champion, J. Analyse de l'étirage en filature) [Text]", + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VLD (Champion, J. Analyse de l'étirage en filature) [Text]" + ], + "uri": "i14429887", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VLD (Champion, J. Analyse de l'étirage en filature) [Text]" + }, + { + "type": "bf:Barcode", + "value": "33433017412226" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433017412226" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847260", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*ZV-510", + "urn:barcode:33433057310033" + ], + "physicalLocation": [ + "*ZV-510" + ], + "shelfMark_sort": "a*ZV-000510", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZV-510" + ], + "uri": "i24055968", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-510" + }, + { + "type": "bf:Barcode", + "value": "33433057310033" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433057310033" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847261", + "_score": 0, + "_source": { + "extent": [ + "164 p. illus." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Steel", + "Steel -- Metallurgy" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "American Society for Metals" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1952 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Elements of hardenability." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VIR (Grossmann, M. A. Elements of hardenability)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1952" + ], + "creatorLiteral": [ + "Grossmann, M. A. (Marcus Aurelius), 1890-1952." + ], + "idLccn": [ + "52001601 /L" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1952 + ], + "idOclc": [ + "3257993" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Grossmann, M. A. Elements of hardenability)" + }, + { + "type": "nypl:Bnumber", + "value": "13847261" + }, + { + "type": "nypl:Oclc", + "value": "3257993" + }, + { + "type": "bf:Lccn", + "value": "52001601 /L" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176403" + } + ], + "updatedAt": 1711561005426, + "publicationStatement": [ + "Cleveland, American Society for Metals, 1952." + ], + "identifier": [ + "urn:shelfmark:VIR (Grossmann, M. A. Elements of hardenability)", + "urn:bnum:13847261", + "urn:oclc:3257993", + "urn:lccn:52001601 /L", + "urn:identifier:(WaOLN)nyp0176403" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1952" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Steel -- Metallurgy." + ], + "titleDisplay": [ + "Elements of hardenability." + ], + "uri": "b13847261", + "lccClassification": [ + "TN756 .G7" + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Cleveland" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Hardenability." + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b13847261" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847261", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VIR (Grossmann, M. A. Elements of hardenability)", + "urn:barcode:33433093983892" + ], + "physicalLocation": [ + "VIR (Grossmann, M. A. Elements of hardenability)" + ], + "shelfMark_sort": "aVIR (Grossmann, M. A. Elements of hardenability)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VIR (Grossmann, M. A. Elements of hardenability)" + ], + "uri": "i16855433", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Grossmann, M. A. Elements of hardenability)" + }, + { + "type": "bf:Barcode", + "value": "33433093983892" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093983892" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847262", + "_score": 0, + "_source": { + "extent": [ + "516 p. illus." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography, p. [499]-507.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Cellulose", + "Paper industry", + "Paper industry -- Chemistry", + "Papermaking", + "Papermaking -- Chemistry" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Verlag Technik" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1959 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Chemische Technologie der Zellstoff- und Papierherstellung." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1959)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1959" + ], + "creatorLiteral": [ + "Hentschel, Hans." + ], + "idLccn": [ + "a 59008933" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1959 + ], + "idOclc": [ + "7415483" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1959)" + }, + { + "type": "nypl:Bnumber", + "value": "13847262" + }, + { + "type": "nypl:Oclc", + "value": "7415483" + }, + { + "type": "bf:Lccn", + "value": "a 59008933" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176404" + } + ], + "updatedAt": 1711440737313, + "publicationStatement": [ + "Berlin, Verlag Technik, 1959." + ], + "identifier": [ + "urn:shelfmark:VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1959)", + "urn:bnum:13847262", + "urn:oclc:7415483", + "urn:lccn:a 59008933", + "urn:identifier:(WaOLN)nyp0176404" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1959" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Cellulose.", + "Paper industry -- Chemistry.", + "Papermaking -- Chemistry." + ], + "titleDisplay": [ + "Chemische Technologie der Zellstoff- und Papierherstellung." + ], + "uri": "b13847262", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Berlin" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ] + }, + "sort": [ + 0, + "b13847262" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847262", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1959)", + "urn:barcode:33433093799355" + ], + "physicalLocation": [ + "VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1959)" + ], + "shelfMark_sort": "aVMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1959)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1959)" + ], + "uri": "i16855434", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1959)" + }, + { + "type": "bf:Barcode", + "value": "33433093799355" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093799355" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847263", + "_score": 0, + "_source": { + "extent": [ + "ix, 178 p. illus., diagrs." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Tool-steel" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "J. Wiley & Sons, inc.; Chapman & Hall, limited" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1931 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "High speed steel" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VIR (Grossmann, M. A. High speed steel)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1931" + ], + "creatorLiteral": [ + "Grossmann, M. A. (Marcus Aurelius), 1890-1952." + ], + "idLccn": [ + "31001977" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Bain, Edgar Collins, 1891-1971." + ], + "dateStartYear": [ + 1931 + ], + "idOclc": [ + "2157540" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Grossmann, M. A. High speed steel)" + }, + { + "type": "nypl:Bnumber", + "value": "13847263" + }, + { + "type": "nypl:Oclc", + "value": "2157540" + }, + { + "type": "bf:Lccn", + "value": "31001977" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176405" + } + ], + "updatedAt": 1711591076821, + "publicationStatement": [ + "New York, J. Wiley & Sons, inc.; London, Chapman & Hall, limited, 1931." + ], + "identifier": [ + "urn:shelfmark:VIR (Grossmann, M. A. High speed steel)", + "urn:bnum:13847263", + "urn:oclc:2157540", + "urn:lccn:31001977", + "urn:identifier:(WaOLN)nyp0176405" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1931" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Tool-steel." + ], + "titleDisplay": [ + "High speed steel, by Marcus A. Grossmann and Edgard C. Bain." + ], + "uri": "b13847263", + "lccClassification": [ + "TS320 .G75" + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "New York, London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b13847263" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847263", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VIR (Grossmann, M. A. High speed steel)", + "urn:barcode:33433093983884" + ], + "physicalLocation": [ + "VIR (Grossmann, M. A. High speed steel)" + ], + "shelfMark_sort": "aVIR (Grossmann, M. A. High speed steel)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VIR (Grossmann, M. A. High speed steel)" + ], + "uri": "i16855435", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Grossmann, M. A. High speed steel)" + }, + { + "type": "bf:Barcode", + "value": "33433093983884" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093983884" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847265", + "_score": 0, + "_source": { + "extent": [ + "3 p. l., 244 p. illus., diagrs. (1 fold.)" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Revised 1940\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "\"References\" at end of most of the chapters.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Steel" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1940 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Principles of heat treatment" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VIR (Grossmann, M. A. Principles of heat treatment. 1940)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1940" + ], + "creatorLiteral": [ + "Grossmann, M. A. (Marcus Aurelius), 1890-1952." + ], + "idLccn": [ + "41005375" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1940 + ], + "idOclc": [ + "1182832" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Grossmann, M. A. Principles of heat treatment. 1940)" + }, + { + "type": "nypl:Bnumber", + "value": "13847265" + }, + { + "type": "nypl:Oclc", + "value": "1182832" + }, + { + "type": "bf:Lccn", + "value": "41005375" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176407" + } + ], + "updatedAt": 1711055834057, + "publicationStatement": [ + "[Cleveland, 1940]" + ], + "identifier": [ + "urn:shelfmark:VIR (Grossmann, M. A. Principles of heat treatment. 1940)", + "urn:bnum:13847265", + "urn:oclc:1182832", + "urn:lccn:41005375", + "urn:identifier:(WaOLN)nyp0176407" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1940" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Steel." + ], + "titleDisplay": [ + "Principles of heat treatment, by M. A. Grossmann ... A series of educational lectures on the principles of heat treatment of steels, first presented to members of th A. S. M. during the seventeenth National metal congress and exposition, Chicago, 1935, and later extended to include the more recent developments." + ], + "uri": "b13847265", + "lccClassification": [ + "TS320 .G76 1940" + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "[Cleveland" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "titleAlt": [ + "Heat treatment." + ], + "dimensions": [ + "23 1/2 cm." + ] + }, + "sort": [ + 0, + "b13847265" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847265", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VIR (Grossmann, M. A. Principles of heat treatment. 1940)", + "urn:barcode:33433093983876" + ], + "physicalLocation": [ + "VIR (Grossmann, M. A. Principles of heat treatment. 1940)" + ], + "shelfMark_sort": "aVIR (Grossmann, M. A. Principles of heat treatment. 1940)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VIR (Grossmann, M. A. Principles of heat treatment. 1940)" + ], + "uri": "i16855436", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Grossmann, M. A. Principles of heat treatment. 1940)" + }, + { + "type": "bf:Barcode", + "value": "33433093983876" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093983876" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847266", + "_score": 0, + "_source": { + "extent": [ + "589 p. illus." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography, p. 569-577.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Cellulose", + "Papermaking" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Fachbuchverlag" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1962 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Chemische Technologie der Zellstoff- und Papierherstellung." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1962)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1962" + ], + "creatorLiteral": [ + "Hentschel, Hans." + ], + "idLccn": [ + "63042577 /L" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1962 + ], + "idOclc": [ + "4301160" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1962)" + }, + { + "type": "nypl:Bnumber", + "value": "13847266" + }, + { + "type": "nypl:Oclc", + "value": "4301160" + }, + { + "type": "bf:Lccn", + "value": "63042577 /L" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176408" + } + ], + "updatedAt": 1711440737313, + "publicationStatement": [ + "Leipzig, Fachbuchverlag, 1962." + ], + "identifier": [ + "urn:shelfmark:VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1962)", + "urn:bnum:13847266", + "urn:oclc:4301160", + "urn:lccn:63042577 /L", + "urn:identifier:(WaOLN)nyp0176408" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1962" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Cellulose.", + "Papermaking." + ], + "titleDisplay": [ + "Chemische Technologie der Zellstoff- und Papierherstellung." + ], + "uri": "b13847266", + "lccClassification": [ + "TS1145 .H4 1962" + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Leipzig" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + 0, + "b13847266" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847266", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1962)", + "urn:barcode:33433093799363" + ], + "physicalLocation": [ + "VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1962)" + ], + "shelfMark_sort": "aVMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1962)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1962)" + ], + "uri": "i16855437", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1962)" + }, + { + "type": "bf:Barcode", + "value": "33433093799363" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093799363" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847268", + "_score": 0, + "_ignored": [ + "title.keyword", + "title.keywordLowercased", + "title.keywordLowercasedStripped" + ], + "_source": { + "extent": [ + "303 p. illus." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 289-297.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Steel", + "Steel -- Heat treatment" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "American Society for Metals" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1953 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Principles of heat treatment; a series of educational lectures on the principles of heat treatment of steels, first presented to members of the ASM during the seventeenth National Metal Congress and Exposition, Chicago, 1935, and later extended to include the more recent developments." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VIR (Grossmann, M. A. Principles of heat treatment. 1953)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1953" + ], + "creatorLiteral": [ + "Grossmann, M. A. (Marcus Aurelius), 1890-1952." + ], + "idLccn": [ + "a 55002921" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1953 + ], + "idOclc": [ + "1698205" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Grossmann, M. A. Principles of heat treatment. 1953)" + }, + { + "type": "nypl:Bnumber", + "value": "13847268" + }, + { + "type": "nypl:Oclc", + "value": "1698205" + }, + { + "type": "bf:Lccn", + "value": "a 55002921" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176410" + } + ], + "updatedAt": 1710965914609, + "publicationStatement": [ + "Cleveland, American Society for Metals, 1953]" + ], + "identifier": [ + "urn:shelfmark:VIR (Grossmann, M. A. Principles of heat treatment. 1953)", + "urn:bnum:13847268", + "urn:oclc:1698205", + "urn:lccn:a 55002921", + "urn:identifier:(WaOLN)nyp0176410" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1953" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Steel -- Heat treatment." + ], + "titleDisplay": [ + "Principles of heat treatment; a series of educational lectures on the principles of heat treatment of steels, first presented to members of the ASM during the seventeenth National Metal Congress and Exposition, Chicago, 1935, and later extended to include the more recent developments." + ], + "uri": "b13847268", + "lccClassification": [ + "TN672 .G" + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Cleveland" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + 0, + "b13847268" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847268", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VIR (Grossmann, M. A. Principles of heat treatment. 1953)", + "urn:barcode:33433093983868" + ], + "physicalLocation": [ + "VIR (Grossmann, M. A. Principles of heat treatment. 1953)" + ], + "shelfMark_sort": "aVIR (Grossmann, M. A. Principles of heat treatment. 1953)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VIR (Grossmann, M. A. Principles of heat treatment. 1953)" + ], + "uri": "i16855438", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Grossmann, M. A. Principles of heat treatment. 1953)" + }, + { + "type": "bf:Barcode", + "value": "33433093983868" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093983868" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847269", + "_score": 0, + "_source": { + "extent": [ + "ix, 302 p. illus." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. 290-296.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Steel", + "Steel -- Heat treatment" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "American Society for Metals" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1964 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Principles of heat treatment" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VIR (Grossmann, M. A. Principles of heat treatment. 1964)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1964" + ], + "creatorLiteral": [ + "Grossmann, M. A. (Marcus Aurelius), 1890-1952." + ], + "idLccn": [ + "64006976" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Bain, Edgar Collins, 1891-1971." + ], + "dateStartYear": [ + 1964 + ], + "idOclc": [ + "945612" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Grossmann, M. A. Principles of heat treatment. 1964)" + }, + { + "type": "nypl:Bnumber", + "value": "13847269" + }, + { + "type": "nypl:Oclc", + "value": "945612" + }, + { + "type": "bf:Lccn", + "value": "64006976" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176411" + } + ], + "updatedAt": 1710965914609, + "publicationStatement": [ + "Metals Park, Ohio, American Society for Metals [1964]" + ], + "identifier": [ + "urn:shelfmark:VIR (Grossmann, M. A. Principles of heat treatment. 1964)", + "urn:bnum:13847269", + "urn:oclc:945612", + "urn:lccn:64006976", + "urn:identifier:(WaOLN)nyp0176411" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1964" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Steel -- Heat treatment." + ], + "titleDisplay": [ + "Principles of heat treatment, by M. A. Grossmann and E. C. Bain." + ], + "uri": "b13847269", + "lccClassification": [ + "TN751 .G7 1964" + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Metals Park, Ohio" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b13847269" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847269", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VIR (Grossmann, M. A. Principles of heat treatment. 1964)", + "urn:barcode:33433093984759" + ], + "physicalLocation": [ + "VIR (Grossmann, M. A. Principles of heat treatment. 1964)" + ], + "shelfMark_sort": "aVIR (Grossmann, M. A. Principles of heat treatment. 1964)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VIR (Grossmann, M. A. Principles of heat treatment. 1964)" + ], + "uri": "i16855439", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Grossmann, M. A. Principles of heat treatment. 1964)" + }, + { + "type": "bf:Barcode", + "value": "33433093984759" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093984759" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847270", + "_score": 0, + "_source": { + "extent": [ + "722 p. illus." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Bibliography: p. [698]-709.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Cellulose", + "Papermaking" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "VEB Fachbuchverlag" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1967 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Chemische Technologie der Zellstoff- und Papierherstellung." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1967)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1967" + ], + "creatorLiteral": [ + "Hentschel, Hans." + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1967 + ], + "idOclc": [ + "7431737" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1967)" + }, + { + "type": "nypl:Bnumber", + "value": "13847270" + }, + { + "type": "nypl:Oclc", + "value": "7431737" + } + ], + "updatedAt": 1711318207100, + "publicationStatement": [ + "Leipzig, VEB Fachbuchverlag, 1967." + ], + "identifier": [ + "urn:shelfmark:VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1967)", + "urn:bnum:13847270", + "urn:oclc:7431737" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1967" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Cellulose.", + "Papermaking." + ], + "titleDisplay": [ + "Chemische Technologie der Zellstoff- und Papierherstellung." + ], + "uri": "b13847270", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Leipzig" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ] + }, + "sort": [ + 0, + "b13847270" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847270", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1967)", + "urn:barcode:33433093799348" + ], + "physicalLocation": [ + "VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1967)" + ], + "shelfMark_sort": "aVMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1967)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1967)" + ], + "uri": "i16855440", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMP (Hentschel, H. Chemische Technologie der Zellstoff- und Papierherstellung. 1967)" + }, + { + "type": "bf:Barcode", + "value": "33433093799348" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093799348" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847274", + "_score": 0, + "_source": { + "extent": [ + "103 p. (on double leaves) illus." + ], + "note": [ + { + "noteType": "Language", + "label": "Text in English, German, and French.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Watermarks" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Amstutz & Herdeg" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1952 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Art in the watermark." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VMP (Herdeg, W. Art in the watermark)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1952" + ], + "creatorLiteral": [ + "Herdeg, Walter, 1908-" + ], + "idLccn": [ + "52039845 //REV" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1952 + ], + "idOclc": [ + "727875" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMP (Herdeg, W. Art in the watermark)" + }, + { + "type": "nypl:Bnumber", + "value": "13847274" + }, + { + "type": "nypl:Oclc", + "value": "727875" + }, + { + "type": "bf:Lccn", + "value": "52039845 //REV" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176416" + } + ], + "updatedAt": 1711310247895, + "publicationStatement": [ + "Zurich, Amstutz & Herdeg [1952]" + ], + "identifier": [ + "urn:shelfmark:VMP (Herdeg, W. Art in the watermark)", + "urn:bnum:13847274", + "urn:oclc:727875", + "urn:lccn:52039845 //REV", + "urn:identifier:(WaOLN)nyp0176416" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1952" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Watermarks." + ], + "titleDisplay": [ + "Art in the watermark. Introd. by Armin Renker." + ], + "uri": "b13847274", + "lccClassification": [ + "Z237 .H48" + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Zurich" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "25 cm." + ] + }, + "sort": [ + 0, + "b13847274" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847274", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VMP (Herdeg, W. Art in the watermark)", + "urn:barcode:33433093799371" + ], + "physicalLocation": [ + "VMP (Herdeg, W. Art in the watermark)" + ], + "shelfMark_sort": "aVMP (Herdeg, W. Art in the watermark)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VMP (Herdeg, W. Art in the watermark)" + ], + "uri": "i16855442", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMP (Herdeg, W. Art in the watermark)" + }, + { + "type": "bf:Barcode", + "value": "33433093799371" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093799371" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847277", + "_score": 0, + "_source": { + "extent": [ + "1115 p. illus." + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "A. Felix" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1889 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Bolley's Handbuch der technisch-chemischen Untersuchungen. Eine Anleitung zur Prüfung und Werthbestimmung der im gesammten Gewerbswesen oder der Hauswirthschaft vorkommenden und zur chemischen Untersuchung geeigneten Natur- und Kunsterzeugnisse." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VOE (Bolley, P. A. Bolley's Handbuch der technisch-chemischen Untersuchungen)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1889" + ], + "creatorLiteral": [ + "Bolley, P. A. (Pompejus Alexander), 1812-1870." + ], + "numElectronicResources": [ + 1 + ], + "dateStartYear": [ + 1889 + ], + "idOclc": [ + "16679374" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VOE (Bolley, P. A. Bolley's Handbuch der technisch-chemischen Untersuchungen)" + }, + { + "type": "nypl:Bnumber", + "value": "13847277" + }, + { + "type": "nypl:Oclc", + "value": "16679374" + } + ], + "updatedAt": 1711576845371, + "publicationStatement": [ + "Leipzig, A. Felix, 1889." + ], + "identifier": [ + "urn:shelfmark:VOE (Bolley, P. A. Bolley's Handbuch der technisch-chemischen Untersuchungen)", + "urn:bnum:13847277", + "urn:oclc:16679374" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1889" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Bolley's Handbuch der technisch-chemischen Untersuchungen. Eine Anleitung zur Prüfung und Werthbestimmung der im gesammten Gewerbswesen oder der Hauswirthschaft vorkommenden und zur chemischen Untersuchung geeigneten Natur- und Kunsterzeugnisse. Nach Prof. Dr. Emil Kopps Tode bearb. von Dr. Carl Stahlschmidt." + ], + "uri": "b13847277", + "electronicResources": [ + { + "label": "Full text available via HathiTrust", + "url": "http://hdl.handle.net/2027/nyp.33433079421859" + } + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Leipzig" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ] + }, + "sort": [ + 0, + "b13847277" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847277", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VOE (Bolley, P. A. Bolley's Handbuch der technisch-chemischen Untersuchungen)", + "urn:barcode:33433079421859" + ], + "physicalLocation": [ + "VOE (Bolley, P. A. Bolley's Handbuch der technisch-chemischen Untersuchungen)" + ], + "shelfMark_sort": "aVOE (Bolley, P. A. Bolley's Handbuch der technisch-chemischen Untersuchungen)", + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VOE (Bolley, P. A. Bolley's Handbuch der technisch-chemischen Untersuchungen)" + ], + "uri": "i16855444", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VOE (Bolley, P. A. Bolley's Handbuch der technisch-chemischen Untersuchungen)" + }, + { + "type": "bf:Barcode", + "value": "33433079421859" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433079421859" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847279", + "_score": 0, + "_source": { + "extent": [ + "l p. ℓ., xii, 426 p. illus. tables." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Analytical chemistry", + "Chemistry, Technical" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "H. G. Bohn" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1857 + ], + "buildingLocationIds": [ + "rc" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Manual of technical analysis: a guide for the testing and valuation of the various natural and artificial substances employed in the arts, and in domestic economy. Founded upon the Handbuch der technisch-chemischen untersuchungen of dr. P.A. Bolley ..." + ], + "shelfMark": [ + "VOE (Bolley, P. A. Manual of technical analysis)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1857" + ], + "creatorLiteral": [ + "Bolley, P. A. (Pompejus Alexander), 1812-1870." + ], + "idLccn": [ + "05003585" + ], + "seriesStatement": [ + "Bohn's scientific library" + ], + "numElectronicResources": [ + 1 + ], + "contributorLiteral": [ + "Paul, B. H. (Benjamin Horatio)" + ], + "dateStartYear": [ + 1857 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VOE (Bolley, P. A. Manual of technical analysis)" + }, + { + "type": "nypl:Bnumber", + "value": "13847279" + }, + { + "type": "nypl:Oclc", + "value": "6656567" + }, + { + "type": "bf:Lccn", + "value": "05003585" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176421" + } + ], + "idOclc": [ + "6656567" + ], + "updatedAt": 1711595413869, + "publicationStatement": [ + "London, H. G. Bohn, 1857." + ], + "identifier": [ + "urn:shelfmark:VOE (Bolley, P. A. Manual of technical analysis)", + "urn:bnum:13847279", + "urn:oclc:6656567", + "urn:lccn:05003585", + "urn:identifier:(WaOLN)nyp0176421" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1857" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Analytical chemistry.", + "Chemistry, Technical." + ], + "titleDisplay": [ + "Manual of technical analysis: a guide for the testing and valuation of the various natural and artificial substances employed in the arts, and in domestic economy. Founded upon the Handbuch der technisch-chemischen untersuchungen of dr. P.A. Bolley ... by Benjamin H. Paul." + ], + "uri": "b13847279", + "lccClassification": [ + "QD75 .B68" + ], + "electronicResources": [ + { + "label": "Full text available via HathiTrust", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433062727726" + } + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + 0, + "b13847279" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847279", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VOE (Bolley, P. A. Manual of technical analysis)", + "urn:barcode:33433062727726" + ], + "physicalLocation": [ + "VOE (Bolley, P. A. Manual of technical analysis)" + ], + "shelfMark_sort": "aVOE (Bolley, P. A. Manual of technical analysis)", + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VOE (Bolley, P. A. Manual of technical analysis)" + ], + "uri": "i15213363", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VOE (Bolley, P. A. Manual of technical analysis)" + }, + { + "type": "bf:Barcode", + "value": "33433062727726" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433062727726" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847280", + "_score": 0, + "_source": { + "extent": [ + "159 p. : ill. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. 157-158).", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Textile fabrics", + "Textile fabrics -- History", + "Textile design", + "Weaving", + "Weaving -- Sweden" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Bokförlaget Natur och Kultur" + ], + "language": [ + { + "id": "lang:swe", + "label": "Swedish" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1928 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Gamla vävnader och deras mönster" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*ZV-510, no. 2" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1928" + ], + "creatorLiteral": [ + "Collin, Maria." + ], + "numElectronicResources": [ + 0 + ], + "seriesStatement": [ + "Natur och kultur ; 88" + ], + "dateStartYear": [ + 1928 + ], + "donor": [ + "National Endowment for the Humanities Preservation Grant 8, 2003/2005." + ], + "idOclc": [ + "NYPG04-B2035" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-510, no. 2" + }, + { + "type": "nypl:Bnumber", + "value": "13847280" + }, + { + "type": "nypl:Oclc", + "value": "NYPG04-B2035" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)G230000002" + }, + { + "type": "bf:Identifier", + "value": "NEH8-SIBL" + } + ], + "updatedAt": 1711576036297, + "publicationStatement": [ + "Stockholm : Bokförlaget Natur och Kultur, 1928." + ], + "identifier": [ + "urn:shelfmark:*ZV-510, no. 2", + "urn:bnum:13847280", + "urn:oclc:NYPG04-B2035", + "urn:identifier:(WaOLN)G230000002", + "urn:identifier:NEH8-SIBL" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1928" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Textile fabrics -- History.", + "Textile design.", + "Weaving -- Sweden." + ], + "titleDisplay": [ + "Gamla vävnader och deras mönster [microform] / av Maria Collin." + ], + "uri": "b13847280", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Stockholm" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "18 cm." + ] + }, + "sort": [ + 0, + "b13847280" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847280", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VLD (Collin, M. Gamla vävnader och deras mönster) [Text]", + "urn:barcode:33433017412168" + ], + "physicalLocation": [ + "VLD (Collin, M. Gamla vävnader och deras mönster) [Text]" + ], + "shelfMark_sort": "aVLD (Collin, M. Gamla vävnader och deras mönster) [Text]", + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VLD (Collin, M. Gamla vävnader och deras mönster) [Text]" + ], + "uri": "i14429891", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VLD (Collin, M. Gamla vävnader och deras mönster) [Text]" + }, + { + "type": "bf:Barcode", + "value": "33433017412168" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433017412168" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847280", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*ZV-510", + "urn:barcode:33433057310033" + ], + "physicalLocation": [ + "*ZV-510" + ], + "shelfMark_sort": "a*ZV-000510", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZV-510" + ], + "uri": "i24055968", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-510" + }, + { + "type": "bf:Barcode", + "value": "33433057310033" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433057310033" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847281", + "_score": 0, + "_source": { + "extent": [ + "303 p." + ], + "note": [ + { + "noteType": "Note", + "label": "\"First edition.\"", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Chemurgy" + ], + "numItemDatesParsed": [ + 1 + ], + "publisherLiteral": [ + "The Bobbs-Merrill company" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1939 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Pioneers of plenty; the story of chemurgy." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VOE (Borth, C. Pioneers of plenty. 1939)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1939" + ], + "creatorLiteral": [ + "Borth, Christy." + ], + "idLccn": [ + "39027845" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1939 + ], + "idOclc": [ + "566136" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VOE (Borth, C. Pioneers of plenty. 1939)" + }, + { + "type": "nypl:Bnumber", + "value": "13847281" + }, + { + "type": "nypl:Oclc", + "value": "566136" + }, + { + "type": "bf:Lccn", + "value": "39027845" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176423" + } + ], + "popularity": 4, + "updatedAt": 1722354487000, + "publicationStatement": [ + "Indianapolis, New York, The Bobbs-Merrill company [1939]" + ], + "identifier": [ + "urn:shelfmark:VOE (Borth, C. Pioneers of plenty. 1939)", + "urn:bnum:13847281", + "urn:oclc:566136", + "urn:lccn:39027845", + "urn:identifier:(WaOLN)nyp0176423" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1939" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Chemurgy." + ], + "titleDisplay": [ + "Pioneers of plenty; the story of chemurgy." + ], + "uri": "b13847281", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Indianapolis, New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ] + }, + "sort": [ + 0, + "b13847281" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847281", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VOE (Borth, C. Pioneers of plenty. 1939) 1939 1939", + "urn:barcode:33433018710727" + ], + "physicalLocation": [ + "VOE (Borth, C. Pioneers of plenty. 1939) 1939" + ], + "shelfMark_sort": "aVOE (Borth, C. Pioneers of plenty. 1939) 1939 001939", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "dateRange": [ + { + "gte": "1939", + "lte": "1939" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " -1939" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VOE (Borth, C. Pioneers of plenty. 1939) 1939 1939" + ], + "uri": "i12313524", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VOE (Borth, C. Pioneers of plenty. 1939) 1939 1939" + }, + { + "type": "bf:Barcode", + "value": "33433018710727" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "enumerationChronology": [ + "1939" + ], + "idBarcode": [ + "33433018710727" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + " -1939" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847282", + "_score": 0, + "_source": { + "extent": [ + "410 p. illus." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Chemurgy" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "The Bobbs-Merrill company" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1942 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Pioneers of plenty; the story of chemurgy" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VOE (Borth, C. Pioneers of plenty. 1942)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1942" + ], + "creatorLiteral": [ + "Borth, Christy." + ], + "idLccn": [ + "42007921" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1942 + ], + "idOclc": [ + "597298" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VOE (Borth, C. Pioneers of plenty. 1942)" + }, + { + "type": "nypl:Bnumber", + "value": "13847282" + }, + { + "type": "nypl:Oclc", + "value": "597298" + }, + { + "type": "bf:Lccn", + "value": "42007921" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176424" + } + ], + "updatedAt": 1711654690676, + "publicationStatement": [ + "Indianapolis, New York, The Bobbs-Merrill company [1942]" + ], + "identifier": [ + "urn:shelfmark:VOE (Borth, C. Pioneers of plenty. 1942)", + "urn:bnum:13847282", + "urn:oclc:597298", + "urn:lccn:42007921", + "urn:identifier:(WaOLN)nyp0176424" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1942" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Chemurgy." + ], + "titleDisplay": [ + "Pioneers of plenty; the story of chemurgy, by Christy Borth ..." + ], + "uri": "b13847282", + "lccClassification": [ + "TP149 .B74 1942" + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Indianapolis, New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + 0, + "b13847282" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847282", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VOE (Borth, C. Pioneers of plenty. 1942)", + "urn:barcode:33433093803256" + ], + "physicalLocation": [ + "VOE (Borth, C. Pioneers of plenty. 1942)" + ], + "shelfMark_sort": "aVOE (Borth, C. Pioneers of plenty. 1942)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VOE (Borth, C. Pioneers of plenty. 1942)" + ], + "uri": "i16855445", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VOE (Borth, C. Pioneers of plenty. 1942)" + }, + { + "type": "bf:Barcode", + "value": "33433093803256" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093803256" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847285", + "_score": 0, + "_source": { + "extent": [ + "95 p. : ill. ;" + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Weaving", + "Weaving -- Sweden" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Åhlén & Åkerlunds Förlag" + ], + "language": [ + { + "id": "lang:swe", + "label": "Swedish" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1929 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Våra hemvävnader i lärft, kypert och atlas samt rosengång och munkabälte m. m." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*ZV-510, no. 6" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1929" + ], + "creatorLiteral": [ + "Collin, Maria." + ], + "numElectronicResources": [ + 0 + ], + "seriesStatement": [ + "Husmoderns handböcker" + ], + "dateStartYear": [ + 1929 + ], + "donor": [ + "National Endowment for the Humanities Preservation Grant 8, 2003/2005." + ], + "idOclc": [ + "NYPG04-B2054" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-510, no. 6" + }, + { + "type": "nypl:Bnumber", + "value": "13847285" + }, + { + "type": "nypl:Oclc", + "value": "NYPG04-B2054" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)G230000010" + }, + { + "type": "bf:Identifier", + "value": "NEH8-SIBL" + } + ], + "updatedAt": 1710986616071, + "publicationStatement": [ + "Stockholm : Åhlén & Åkerlunds Förlag, 1929." + ], + "identifier": [ + "urn:shelfmark:*ZV-510, no. 6", + "urn:bnum:13847285", + "urn:oclc:NYPG04-B2054", + "urn:identifier:(WaOLN)G230000010", + "urn:identifier:NEH8-SIBL" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1929" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Weaving -- Sweden." + ], + "titleDisplay": [ + "Våra hemvävnader [microform] : i lärft, kypert och atlas samt rosengång och munkabälte m. m. / av Maria Collin." + ], + "uri": "b13847285", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Stockholm" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + 0, + "b13847285" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847285", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VLD (Collin, M. Våra hemvävnader i lärft) [Text]", + "urn:barcode:33433017412150" + ], + "physicalLocation": [ + "VLD (Collin, M. Våra hemvävnader i lärft) [Text]" + ], + "shelfMark_sort": "aVLD (Collin, M. Våra hemvävnader i lärft) [Text]", + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VLD (Collin, M. Våra hemvävnader i lärft) [Text]" + ], + "uri": "i14429892", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VLD (Collin, M. Våra hemvävnader i lärft) [Text]" + }, + { + "type": "bf:Barcode", + "value": "33433017412150" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433017412150" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847285", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*ZV-510", + "urn:barcode:33433057310033" + ], + "physicalLocation": [ + "*ZV-510" + ], + "shelfMark_sort": "a*ZV-000510", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZV-510" + ], + "uri": "i24055968", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-510" + }, + { + "type": "bf:Barcode", + "value": "33433057310033" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433057310033" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847287", + "_score": 0, + "_source": { + "extent": [ + "xii, 611 p. illus." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Chemical engineering" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Wiley" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1950 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Unit operations" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VOE (Brown, G. G. Unit operations)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1950" + ], + "creatorLiteral": [ + "Brown, George Granger, 1896-" + ], + "idLccn": [ + "50009846" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1950 + ], + "idOclc": [ + "566259" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VOE (Brown, G. G. Unit operations)" + }, + { + "type": "nypl:Bnumber", + "value": "13847287" + }, + { + "type": "nypl:Oclc", + "value": "566259" + }, + { + "type": "bf:Lccn", + "value": "50009846" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176429" + } + ], + "updatedAt": 1711360106775, + "publicationStatement": [ + "New York, Wiley [1950]" + ], + "identifier": [ + "urn:shelfmark:VOE (Brown, G. G. Unit operations)", + "urn:bnum:13847287", + "urn:oclc:566259", + "urn:lccn:50009846", + "urn:identifier:(WaOLN)nyp0176429" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1950" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Chemical engineering." + ], + "titleDisplay": [ + "Unit operations [by] George Granger Brown [and others]" + ], + "uri": "b13847287", + "lccClassification": [ + "TP155 .B7" + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "29 cm." + ] + }, + "sort": [ + 0, + "b13847287" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847287", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VOE (Brown, G. G. Unit operations)", + "urn:barcode:33433093803215" + ], + "physicalLocation": [ + "VOE (Brown, G. G. Unit operations)" + ], + "shelfMark_sort": "aVOE (Brown, G. G. Unit operations)", + "catalogItemType_packed": [ + "catalogItemType:66||book, poor condition, non-MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VOE (Brown, G. G. Unit operations)" + ], + "uri": "i16855449", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VOE (Brown, G. G. Unit operations)" + }, + { + "type": "bf:Barcode", + "value": "33433093803215" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093803215" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:66", + "label": "book, poor condition, non-MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847288", + "_score": 0, + "_source": { + "extent": [ + "ix, 271 p., 1 pl." + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Steel" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "McGraw-Hill book company, inc." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1914 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "The steel foundry" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "3-VIR (Hall, J. H. Steel foundry)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1914" + ], + "creatorLiteral": [ + "Hall, John Howe, 1881-" + ], + "idLccn": [ + "14005545 //r37" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1914 + ], + "idOclc": [ + "2658413" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-VIR (Hall, J. H. Steel foundry)" + }, + { + "type": "nypl:Bnumber", + "value": "13847288" + }, + { + "type": "nypl:Oclc", + "value": "2658413" + }, + { + "type": "bf:Lccn", + "value": "14005545 //r37" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176430" + } + ], + "updatedAt": 1711359338481, + "publicationStatement": [ + "New York [etc.] McGraw-Hill book company, inc., 1914." + ], + "identifier": [ + "urn:shelfmark:3-VIR (Hall, J. H. Steel foundry)", + "urn:bnum:13847288", + "urn:oclc:2658413", + "urn:lccn:14005545 //r37", + "urn:identifier:(WaOLN)nyp0176430" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1914" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Steel." + ], + "titleDisplay": [ + "The steel foundry, by John Howe Hall ..." + ], + "uri": "b13847288", + "lccClassification": [ + "TN730 .H23" + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "New York [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "8vo." + ] + }, + "sort": [ + 0, + "b13847288" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847288", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:3-VIR (Hall, J. H. Steel foundry)", + "urn:barcode:33433093984601" + ], + "physicalLocation": [ + "3-VIR (Hall, J. H. Steel foundry)" + ], + "shelfMark_sort": "a3-VIR (Hall, J. H. Steel foundry)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "3-VIR (Hall, J. H. Steel foundry)" + ], + "uri": "i16855450", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-VIR (Hall, J. H. Steel foundry)" + }, + { + "type": "bf:Barcode", + "value": "33433093984601" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093984601" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847290", + "_score": 0, + "_source": { + "extent": [ + "160 p. illus., diagrs." + ], + "note": [ + { + "noteType": "Note", + "label": "\"First published 1945.\"", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Steel", + "Steel -- Metallurgy", + "Cementation (Metallurgy)" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "G. Newnes, limited" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1945 + ], + "dateEndString": [ + "1945" + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Steel hardening, tempering and annealing; a concise survey of the processes of hardening, tempering and annealing" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VIR (Hall, J. J. Steel hardening, tempering and annealing)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1945" + ], + "creatorLiteral": [ + "Hall, J. J." + ], + "idLccn": [ + "46002903" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1945 + ], + "idOclc": [ + "3257529" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Hall, J. J. Steel hardening, tempering and annealing)" + }, + { + "type": "nypl:Bnumber", + "value": "13847290" + }, + { + "type": "nypl:Oclc", + "value": "3257529" + }, + { + "type": "bf:Lccn", + "value": "46002903" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176432" + } + ], + "dateEndYear": [ + 1945 + ], + "updatedAt": 1710975157036, + "publicationStatement": [ + "London, G. Newnes, limited [1945]" + ], + "identifier": [ + "urn:shelfmark:VIR (Hall, J. J. Steel hardening, tempering and annealing)", + "urn:bnum:13847290", + "urn:oclc:3257529", + "urn:lccn:46002903", + "urn:identifier:(WaOLN)nyp0176432" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1945" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Steel -- Metallurgy.", + "Cementation (Metallurgy)" + ], + "titleDisplay": [ + "Steel hardening, tempering and annealing; a concise survey of the processes of hardening, tempering and annealing, by J. J. Hall." + ], + "uri": "b13847290", + "lccClassification": [ + "TN730 .H2" + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "London" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "17 cm." + ] + }, + "sort": [ + 0, + "b13847290" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847290", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VIR (Hall, J. J. Steel hardening, tempering and annealing)", + "urn:barcode:33433093983736" + ], + "physicalLocation": [ + "VIR (Hall, J. J. Steel hardening, tempering and annealing)" + ], + "shelfMark_sort": "aVIR (Hall, J. J. Steel hardening, tempering and annealing)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VIR (Hall, J. J. Steel hardening, tempering and annealing)" + ], + "uri": "i16855451", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Hall, J. J. Steel hardening, tempering and annealing)" + }, + { + "type": "bf:Barcode", + "value": "33433093983736" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093983736" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847291", + "_score": 0, + "_source": { + "extent": [ + "x, 142 p. ill." + ], + "note": [ + { + "noteType": "Note", + "label": "New York, Isaac Pitman & Sons, pasted over imprint.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Includes index.", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Weaving" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Pitman" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1924 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Weaving" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*ZV-515, no. 1" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1924" + ], + "creatorLiteral": [ + "Crankshaw, William P." + ], + "numElectronicResources": [ + 0 + ], + "seriesStatement": [ + "Pitman's common commodities and industries" + ], + "dateStartYear": [ + 1924 + ], + "donor": [ + "National Endowment for the Humanities Preservation Grant 8, 2003/2005." + ], + "idOclc": [ + "NYPG04-B2136" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-515, no. 1" + }, + { + "type": "nypl:Bnumber", + "value": "13847291" + }, + { + "type": "nypl:Oclc", + "value": "NYPG04-B2136" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)G180000012" + }, + { + "type": "bf:Identifier", + "value": "NEH8-SIBL" + } + ], + "updatedAt": 1710986811113, + "publicationStatement": [ + "London, New York : Pitman, 1924." + ], + "identifier": [ + "urn:shelfmark:*ZV-515, no. 1", + "urn:bnum:13847291", + "urn:oclc:NYPG04-B2136", + "urn:identifier:(WaOLN)G180000012", + "urn:identifier:NEH8-SIBL" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1924" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Weaving." + ], + "titleDisplay": [ + "Weaving [microform], by W. P. Crankshaw." + ], + "uri": "b13847291", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "London, New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + 0, + "b13847291" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847291", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VLD (Crankshaw, W. P. Weaving) [Text]", + "urn:barcode:33433017412143" + ], + "physicalLocation": [ + "VLD (Crankshaw, W. P. Weaving) [Text]" + ], + "shelfMark_sort": "aVLD (Crankshaw, W. P. Weaving) [Text]", + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VLD (Crankshaw, W. P. Weaving) [Text]" + ], + "uri": "i14429894", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VLD (Crankshaw, W. P. Weaving) [Text]" + }, + { + "type": "bf:Barcode", + "value": "33433017412143" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433017412143" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847291", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*ZV-515", + "urn:barcode:33433057310157" + ], + "physicalLocation": [ + "*ZV-515" + ], + "shelfMark_sort": "a*ZV-000515", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZV-515" + ], + "uri": "i24055692", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-515" + }, + { + "type": "bf:Barcode", + "value": "33433057310157" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433057310157" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847292", + "_score": 0, + "_source": { + "extent": [ + "164 p. illus." + ], + "note": [ + { + "noteType": "Note", + "label": "\"Reprint of a series of articles published in Textile industries.\"", + "type": "bf:Note" + }, + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Looms" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "W. R. C. Smith Publishing Company" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1947 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Draper loom fixing" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*ZV-533, no. 6" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1947" + ], + "creatorLiteral": [ + "Crawford, Ben H." + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1947 + ], + "donor": [ + "National Endowment for the Humanities Preservation Grant 8, 2003/2005." + ], + "idOclc": [ + "NYPG04-B2390" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-533, no. 6" + }, + { + "type": "nypl:Bnumber", + "value": "13847292" + }, + { + "type": "nypl:Oclc", + "value": "NYPG04-B2390" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)G300000012" + }, + { + "type": "bf:Identifier", + "value": "NEH8-SIBL" + } + ], + "updatedAt": 1711553042477, + "publicationStatement": [ + "Atlanta : W. R. C. Smith Publishing Company, [c1947]" + ], + "identifier": [ + "urn:shelfmark:*ZV-533, no. 6", + "urn:bnum:13847292", + "urn:oclc:NYPG04-B2390", + "urn:identifier:(WaOLN)G300000012", + "urn:identifier:NEH8-SIBL" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1947" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Looms." + ], + "titleDisplay": [ + "Draper loom fixing [microform], by Ben H. Crawford." + ], + "uri": "b13847292", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Atlanta" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + 0, + "b13847292" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847292", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VLD (Crawford, B. H. Draper loom fixing) [Text]", + "urn:barcode:33433017412135" + ], + "physicalLocation": [ + "VLD (Crawford, B. H. Draper loom fixing) [Text]" + ], + "shelfMark_sort": "aVLD (Crawford, B. H. Draper loom fixing) [Text]", + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VLD (Crawford, B. H. Draper loom fixing) [Text]" + ], + "uri": "i14429895", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VLD (Crawford, B. H. Draper loom fixing) [Text]" + }, + { + "type": "bf:Barcode", + "value": "33433017412135" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433017412135" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847292", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*ZV-533", + "urn:barcode:33433057306981" + ], + "physicalLocation": [ + "*ZV-533" + ], + "shelfMark_sort": "a*ZV-000533", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZV-533" + ], + "uri": "i24055688", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-533" + }, + { + "type": "bf:Barcode", + "value": "33433057306981" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433057306981" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847293", + "_score": 0, + "_source": { + "extent": [ + "viii, 406 p. illus." + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographies.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Steel", + "Steel -- Handbooks, manuals, etc" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Addison-Wesley Pub. Co." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1965 + ], + "buildingLocationIds": [ + "rc" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The engineer's guide to steel" + ], + "shelfMark": [ + "VIR (Hanson, A. Engineer's guide to steel)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1965" + ], + "creatorLiteral": [ + "Hanson, Albert." + ], + "idLccn": [ + "65010407" + ], + "seriesStatement": [ + "Addison-Wesley series in metallurgy and materials" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Parr, J. Gordon (James Gordon), 1927-" + ], + "dateStartYear": [ + 1965 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Hanson, A. Engineer's guide to steel)" + }, + { + "type": "nypl:Bnumber", + "value": "13847293" + }, + { + "type": "nypl:Oclc", + "value": "963884" + }, + { + "type": "bf:Lccn", + "value": "65010407" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176435" + } + ], + "idOclc": [ + "963884" + ], + "updatedAt": 1710978851626, + "publicationStatement": [ + "Reading, Mass., Addison-Wesley Pub. Co. [1965]" + ], + "identifier": [ + "urn:shelfmark:VIR (Hanson, A. Engineer's guide to steel)", + "urn:bnum:13847293", + "urn:oclc:963884", + "urn:lccn:65010407", + "urn:identifier:(WaOLN)nyp0176435" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1965" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Steel -- Handbooks, manuals, etc." + ], + "titleDisplay": [ + "The engineer's guide to steel, by Albert Hanson and J. Gordon Parr." + ], + "uri": "b13847293", + "lccClassification": [ + "TA472 .H3" + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Reading, Mass." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b13847293" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847293", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VIR (Hanson, A. Engineer's guide to steel)", + "urn:barcode:33433093984312" + ], + "physicalLocation": [ + "VIR (Hanson, A. Engineer's guide to steel)" + ], + "shelfMark_sort": "aVIR (Hanson, A. Engineer's guide to steel)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VIR (Hanson, A. Engineer's guide to steel)" + ], + "uri": "i16855452", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Hanson, A. Engineer's guide to steel)" + }, + { + "type": "bf:Barcode", + "value": "33433093984312" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093984312" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847298", + "_score": 0, + "_source": { + "extent": [ + "xi, 303 p., [1] fold. leaf of plates : ill. ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references and indexes.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Chemical process control", + "Chemical engineering", + "Automatic control" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Wiley" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1964 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Techniques of process control" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VOE (Buckley, P. S. Techniques of process control)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1964" + ], + "creatorLiteral": [ + "Buckley, Page S." + ], + "idLccn": [ + "64020062" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1964 + ], + "idOclc": [ + "566261" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VOE (Buckley, P. S. Techniques of process control)" + }, + { + "type": "nypl:Bnumber", + "value": "13847298" + }, + { + "type": "nypl:Oclc", + "value": "566261" + }, + { + "type": "bf:Lccn", + "value": "64020062" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176440" + } + ], + "updatedAt": 1710976546622, + "publicationStatement": [ + "New York : Wiley, [1964]" + ], + "identifier": [ + "urn:shelfmark:VOE (Buckley, P. S. Techniques of process control)", + "urn:bnum:13847298", + "urn:oclc:566261", + "urn:lccn:64020062", + "urn:identifier:(WaOLN)nyp0176440" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1964" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Chemical process control.", + "Chemical engineering.", + "Automatic control." + ], + "titleDisplay": [ + "Techniques of process control / Page S. Buckley." + ], + "uri": "b13847298", + "lccClassification": [ + "TP155 .B76" + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "29 cm." + ] + }, + "sort": [ + 0, + "b13847298" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847298", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VOE (Buckley, P. S. Techniques of process control)", + "urn:barcode:33433093803207" + ], + "physicalLocation": [ + "VOE (Buckley, P. S. Techniques of process control)" + ], + "shelfMark_sort": "aVOE (Buckley, P. S. Techniques of process control)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VOE (Buckley, P. S. Techniques of process control)" + ], + "uri": "i16855455", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VOE (Buckley, P. S. Techniques of process control)" + }, + { + "type": "bf:Barcode", + "value": "33433093803207" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093803207" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847299", + "_score": 0, + "_source": { + "extent": [ + "2 v. illus., fold. plates, plans, fold. tables, diagrs. (part fold.)" + ], + "note": [ + { + "noteType": "Note", + "label": "On cover: Griffin's scientific text-books.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Contains bibliographies.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Steel", + "Steel -- Metallurgy" + ], + "numItemDatesParsed": [ + 2 + ], + "publisherLiteral": [ + "C. Griffin & company, limited; J.B. Lippincott company" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1916 + ], + "buildingLocationIds": [ + "rc" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "The metallurgy of steel" + ], + "shelfMark": [ + "3-VIR (Harbord, F. W. Metallurgy of steel. 1916)" + ], + "numItemVolumesParsed": [ + 2 + ], + "createdString": [ + "1916" + ], + "creatorLiteral": [ + "Harbord, F. W. (Frank William), 1860-1942." + ], + "idLccn": [ + "gs 16000469" + ], + "seriesStatement": [ + "Griffin's metallurgical series." + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Hall, J. W. (John William), 1854-" + ], + "dateStartYear": [ + 1916 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-VIR (Harbord, F. W. Metallurgy of steel. 1916)" + }, + { + "type": "nypl:Bnumber", + "value": "13847299" + }, + { + "type": "nypl:Oclc", + "value": "5043781" + }, + { + "type": "bf:Lccn", + "value": "gs 16000469" + } + ], + "idOclc": [ + "5043781" + ], + "updatedAt": 1711402387483, + "publicationStatement": [ + "London, C. Griffin & company, limited; Philadelphia, J.B. Lippincott company, 1916." + ], + "identifier": [ + "urn:shelfmark:3-VIR (Harbord, F. W. Metallurgy of steel. 1916)", + "urn:bnum:13847299", + "urn:oclc:5043781", + "urn:lccn:gs 16000469" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1916" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Steel -- Metallurgy." + ], + "titleDisplay": [ + "The metallurgy of steel, by F. W. Harbord and J. W. Hall." + ], + "uri": "b13847299", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "London, Philadelphia" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "--v. 1. Metallurgy, by F. W. Harbord.--v. 2. Mechanical treatment, by J. W. Hall." + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + 0, + "b13847299" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847299", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "dateRange": [ + { + "gte": "1916", + "lte": "1916" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "3-VIR (Harbord, F. W. Metallurgy of steel. 1916) v. 2 (1916)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-VIR (Harbord, F. W. Metallurgy of steel. 1916) v. 2 (1916)" + }, + { + "type": "bf:Barcode", + "value": "33433093984593" + } + ], + "enumerationChronology": [ + "v. 2 (1916)" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:3-VIR (Harbord, F. W. Metallurgy of steel. 1916) v. 2 (1916)", + "urn:barcode:33433093984593" + ], + "physicalLocation": [ + "3-VIR (Harbord, F. W. Metallurgy of steel. 1916)" + ], + "shelfMark_sort": "a3-VIR (Harbord, F. W. Metallurgy of steel. 1916) v. 000002 (1916)", + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 2-1916" + ], + "uri": "i27677458", + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093984593" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + " 2-1916" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847299", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "dateRange": [ + { + "gte": "1916", + "lte": "1916" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "3-VIR (Harbord, F. W. Metallurgy of steel. 1916) v. 1 (1916)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-VIR (Harbord, F. W. Metallurgy of steel. 1916) v. 1 (1916)" + }, + { + "type": "bf:Barcode", + "value": "33433093983686" + } + ], + "enumerationChronology": [ + "v. 1 (1916)" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:3-VIR (Harbord, F. W. Metallurgy of steel. 1916) v. 1 (1916)", + "urn:barcode:33433093983686" + ], + "physicalLocation": [ + "3-VIR (Harbord, F. W. Metallurgy of steel. 1916)" + ], + "shelfMark_sort": "a3-VIR (Harbord, F. W. Metallurgy of steel. 1916) v. 000001 (1916)", + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 1-1916" + ], + "uri": "i16855456", + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093983686" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + " 1-1916" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847300", + "_score": 0, + "_source": { + "extent": [ + "93 p. illus. 2 plates (fold.)" + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Paper", + "Paper -- Testing" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "J. Springer" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1888 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Papier-Prüfung. Ein Leitfaden bei der Untersuchung von Papier." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "3-VMP (Herzberg, W. Papier-Prüfung)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1888" + ], + "creatorLiteral": [ + "Herzberg, Wilhelm." + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1888 + ], + "idOclc": [ + "1555596" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-VMP (Herzberg, W. Papier-Prüfung)" + }, + { + "type": "nypl:Bnumber", + "value": "13847300" + }, + { + "type": "nypl:Oclc", + "value": "1555596" + } + ], + "updatedAt": 1711344238705, + "publicationStatement": [ + "Berlin, J. Springer, 1888." + ], + "identifier": [ + "urn:shelfmark:3-VMP (Herzberg, W. Papier-Prüfung)", + "urn:bnum:13847300", + "urn:oclc:1555596" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1888" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Paper -- Testing." + ], + "titleDisplay": [ + "Papier-Prüfung. Ein Leitfaden bei der Untersuchung von Papier. Herausgegeben von Wilhelm Herzberg. Mit 22 in den Text gedruckten Figuren und 2 Tafeln in Lichtdruck." + ], + "uri": "b13847300", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Berlin" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + 0, + "b13847300" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847300", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:3-VMP (Herzberg, W. Papier-Prüfung)", + "urn:barcode:33433093799397" + ], + "physicalLocation": [ + "3-VMP (Herzberg, W. Papier-Prüfung)" + ], + "shelfMark_sort": "a3-VMP (Herzberg, W. Papier-Prüfung)", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "3-VMP (Herzberg, W. Papier-Prüfung)" + ], + "uri": "i16855457", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-VMP (Herzberg, W. Papier-Prüfung)" + }, + { + "type": "bf:Barcode", + "value": "33433093799397" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093799397" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847302", + "_score": 0, + "_source": { + "extent": [ + "x, 136 p. illus." + ], + "note": [ + { + "noteType": "Reproduction", + "label": "Microfilm.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Hosiery", + "Knit goods" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Sir I. Pitman & sons, ltd." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1920 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Hosiery manufacture" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*ZV-534, no. 3" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1920" + ], + "creatorLiteral": [ + "Davis, William, M.A." + ], + "numElectronicResources": [ + 0 + ], + "seriesStatement": [ + "Pitman's textile industries series" + ], + "dateStartYear": [ + 1920 + ], + "donor": [ + "National Endowment for the Humanities Preservation Grant 8, 2003/2005." + ], + "idOclc": [ + "NYPG04-B2398" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-534, no. 3" + }, + { + "type": "nypl:Bnumber", + "value": "13847302" + }, + { + "type": "nypl:Oclc", + "value": "NYPG04-B2398" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)G090000014" + }, + { + "type": "bf:Identifier", + "value": "NEH8-SIBL" + } + ], + "updatedAt": 1711598992074, + "publicationStatement": [ + "London, New York [etc.] : Sir I. Pitman & sons, ltd., [1920]" + ], + "identifier": [ + "urn:shelfmark:*ZV-534, no. 3", + "urn:bnum:13847302", + "urn:oclc:NYPG04-B2398", + "urn:identifier:(WaOLN)G090000014", + "urn:identifier:NEH8-SIBL" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1920" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Hosiery.", + "Knit goods." + ], + "titleDisplay": [ + "Hosiery manufacture [microform], by William Davis ... With 61 illustrations including many original photo-micrographs." + ], + "uri": "b13847302", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "London, New York [etc.]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm." + ] + }, + "sort": [ + 0, + "b13847302" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847302", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VLD (Davis, W. Hosiery manufacture) [Text]", + "urn:barcode:33433017412085" + ], + "physicalLocation": [ + "VLD (Davis, W. Hosiery manufacture) [Text]" + ], + "shelfMark_sort": "aVLD (Davis, W. Hosiery manufacture) [Text]", + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VLD (Davis, W. Hosiery manufacture) [Text]" + ], + "uri": "i14429899", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VLD (Davis, W. Hosiery manufacture) [Text]" + }, + { + "type": "bf:Barcode", + "value": "33433017412085" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433017412085" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847302", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*ZV-534", + "urn:barcode:33433057300612" + ], + "physicalLocation": [ + "*ZV-534" + ], + "shelfMark_sort": "a*ZV-000534", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZV-534" + ], + "uri": "i24055977", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZV-534" + }, + { + "type": "bf:Barcode", + "value": "33433057300612" + } + ], + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433057300612" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847303", + "_score": 0, + "_source": { + "extent": [ + "2 v. illus., fold. plates, fold. plans, fold. tables, diagrs. (part fold.)" + ], + "note": [ + { + "noteType": "Note", + "label": "On cover: Griffin's scientific text-books.", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Contains bibliographies.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Steel", + "Steel -- Metallurgy" + ], + "numItemDatesParsed": [ + 2 + ], + "publisherLiteral": [ + "C. Griffin & company, limited; J.B. Lippincott company" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 2 + ], + "createdYear": [ + 1923 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "The metallurgy of steel" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VIR (Harbord, F. W. Metallurgy of steel)" + ], + "numItemVolumesParsed": [ + 2 + ], + "createdString": [ + "1923" + ], + "creatorLiteral": [ + "Harbord, F. W. (Frank William), 1860-1942." + ], + "numElectronicResources": [ + 0 + ], + "seriesStatement": [ + "Griffin's metallurgical series." + ], + "contributorLiteral": [ + "Hall, J. W. (John William)" + ], + "dateStartYear": [ + 1923 + ], + "idOclc": [ + "5043803" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Harbord, F. W. Metallurgy of steel)" + }, + { + "type": "nypl:Bnumber", + "value": "13847303" + }, + { + "type": "nypl:Oclc", + "value": "5043803" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176445" + } + ], + "updatedAt": 1710980656918, + "publicationStatement": [ + "London, C. Griffin & company, limited; Philadelphia, J.B. Lippincott company, 1923." + ], + "identifier": [ + "urn:shelfmark:VIR (Harbord, F. W. Metallurgy of steel)", + "urn:bnum:13847303", + "urn:oclc:5043803", + "urn:identifier:(WaOLN)nyp0176445" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1923" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Steel -- Metallurgy." + ], + "titleDisplay": [ + "The metallurgy of steel, by F. W. Harbord and J. W. Hall." + ], + "uri": "b13847303", + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "London, Philadelphia" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "--v. 1. Metallurgy, by F. W. Harbord.--v. 2. Mechanical treatment, by J. W. Hall." + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + 0, + "b13847303" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847303", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "dateRange": [ + { + "gte": "1923", + "lte": "1923" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VIR (Harbord, F. W. Metallurgy of steel) v. 2 (1923)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Harbord, F. W. Metallurgy of steel) v. 2 (1923)" + }, + { + "type": "bf:Barcode", + "value": "33433093983694" + } + ], + "enumerationChronology": [ + "v. 2 (1923)" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 2, + "lte": 2 + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VIR (Harbord, F. W. Metallurgy of steel) v. 2 (1923)", + "urn:barcode:33433093983694" + ], + "physicalLocation": [ + "VIR (Harbord, F. W. Metallurgy of steel)" + ], + "shelfMark_sort": "aVIR (Harbord, F. W. Metallurgy of steel) v. 000002 (1923)", + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 2-1923" + ], + "uri": "i16855459", + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093983694" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + " 2-1923" + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847303", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "dateRange": [ + { + "gte": "1923", + "lte": "1923" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VIR (Harbord, F. W. Metallurgy of steel) v. 1 (1923)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Harbord, F. W. Metallurgy of steel) v. 1 (1923)" + }, + { + "type": "bf:Barcode", + "value": "33433093983702" + } + ], + "enumerationChronology": [ + "v. 1 (1923)" + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 1, + "lte": 1 + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VIR (Harbord, F. W. Metallurgy of steel) v. 1 (1923)", + "urn:barcode:33433093983702" + ], + "physicalLocation": [ + "VIR (Harbord, F. W. Metallurgy of steel)" + ], + "shelfMark_sort": "aVIR (Harbord, F. W. Metallurgy of steel) v. 000001 (1923)", + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 1-1923" + ], + "uri": "i27673115", + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093983702" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + " 1-1923" + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847304", + "_score": 0, + "_source": { + "extent": [ + "xviii p. 1 ℓ., 261 p. illus., col. plates, diagrs." + ], + "note": [ + { + "noteType": "Note", + "label": "\"Photolith reproduction.\"--p. [iv]", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "\"Reference books on iron and steel\" at end of part I.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Steel", + "Steel -- Metallurgy", + "Steel forgings" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1938 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "The working and heat-treating of steel, prepared for use in technical schools and colleges" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "VIR (Harcourt, R. H. Working and heat-treating of steel)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1938" + ], + "creatorLiteral": [ + "Harcourt, Robert H. (Robert Henry)" + ], + "idLccn": [ + "38023102" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 1938 + ], + "idOclc": [ + "3255018" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Harcourt, R. H. Working and heat-treating of steel)" + }, + { + "type": "nypl:Bnumber", + "value": "13847304" + }, + { + "type": "nypl:Oclc", + "value": "3255018" + }, + { + "type": "bf:Lccn", + "value": "38023102" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp0176446" + } + ], + "updatedAt": 1710984286513, + "publicationStatement": [ + "Stanford University, Calif., 1938." + ], + "identifier": [ + "urn:shelfmark:VIR (Harcourt, R. H. Working and heat-treating of steel)", + "urn:bnum:13847304", + "urn:oclc:3255018", + "urn:lccn:38023102", + "urn:identifier:(WaOLN)nyp0176446" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1938" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Steel -- Metallurgy.", + "Steel forgings." + ], + "titleDisplay": [ + "The working and heat-treating of steel, prepared for use in technical schools and colleges, by Robert H. Harcourt." + ], + "uri": "b13847304", + "lccClassification": [ + "TS320 .H28" + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Stanford University, Calif." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "pt. I. The working and heat-treating of steel.--pt. II. Forge practice." + ], + "dimensions": [ + "23 cm." + ] + }, + "sort": [ + 0, + "b13847304" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847304", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:VIR (Harcourt, R. H. Working and heat-treating of steel)", + "urn:barcode:33433093983785" + ], + "physicalLocation": [ + "VIR (Harcourt, R. H. Working and heat-treating of steel)" + ], + "shelfMark_sort": "aVIR (Harcourt, R. H. Working and heat-treating of steel)", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VIR (Harcourt, R. H. Working and heat-treating of steel)" + ], + "uri": "i16855460", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VIR (Harcourt, R. H. Working and heat-treating of steel)" + }, + { + "type": "bf:Barcode", + "value": "33433093983785" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433093983785" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b13847306", + "_score": 0, + "_source": { + "extent": [ + "viii, 146 p. illus., plates (part. col.)" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "\"Literatur\": p. [145]-146.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Paper", + "Paper -- Testing" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "J. Springer" + ], + "language": [ + { + "id": "lang:ger", + "label": "German" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1902 + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Papierprüfung. Eine Anleitung zum Untersuchen von Papier." + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "3-VMP (Herzberg, W. Papierprüfung. 1902)" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1902" + ], + "creatorLiteral": [ + "Herzberg, Wilhelm." + ], + "numElectronicResources": [ + 1 + ], + "dateStartYear": [ + 1902 + ], + "idOclc": [ + "22693423" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-VMP (Herzberg, W. Papierprüfung. 1902)" + }, + { + "type": "nypl:Bnumber", + "value": "13847306" + }, + { + "type": "nypl:Oclc", + "value": "22693423" + } + ], + "updatedAt": 1715283800732, + "publicationStatement": [ + "Berlin, J. Springer, 1902." + ], + "identifier": [ + "urn:shelfmark:3-VMP (Herzberg, W. Papierprüfung. 1902)", + "urn:bnum:13847306", + "urn:oclc:22693423" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1902" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Paper -- Testing." + ], + "titleDisplay": [ + "Papierprüfung. Eine Anleitung zum Untersuchen von Papier. Von Wilhelm Herzberg ... Mit 22 Textfiguren und 2 Tafeln." + ], + "uri": "b13847306", + "electronicResources": [ + { + "label": "Full text available via HathiTrust", + "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433066378989" + } + ], + "formatId": "a", + "recordTypeId": "a", + "placeOfPublication": [ + "Berlin" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "24 cm." + ] + }, + "sort": [ + 0, + "b13847306" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b13847306", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:3-VMP (Herzberg, W. Papierprüfung. 1902)", + "urn:barcode:33433066378989" + ], + "physicalLocation": [ + "3-VMP (Herzberg, W. Papierprüfung. 1902)" + ], + "shelfMark_sort": "a3-VMP (Herzberg, W. Papierprüfung. 1902)", + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "3-VMP (Herzberg, W. Papierprüfung. 1902)" + ], + "uri": "i15213365", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "3-VMP (Herzberg, W. Papierprüfung. 1902)" + }, + { + "type": "bf:Barcode", + "value": "33433066378989" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433066378989" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + } + ] + } +} \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-027491bdb95aefdc01ba60dc5e029473.json b/test/fixtures/scsb-by-barcode-027491bdb95aefdc01ba60dc5e029473.json new file mode 100644 index 0000000..cfb98df --- /dev/null +++ b/test/fixtures/scsb-by-barcode-027491bdb95aefdc01ba60dc5e029473.json @@ -0,0 +1,322 @@ +[ + { + "itemBarcode": "33433060755836", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433005557115", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433084623499", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433084623507", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433066397435", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093799298", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433067119697", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433057291225", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093984858", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433059736474", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433057306981", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093799314", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433094013707", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433079421842", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433062627561", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433057273439", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433084623523", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093984882", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433017412242", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093983843", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433057300711", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433022739977", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433022739969", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433057310181", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093799322", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093983801", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433049733235", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433017412226", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433057310033", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093983892", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093799355", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093983884", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093983876", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093799363", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093983868", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093984759", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093799348", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093799371", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433079421859", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433062727726", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433017412168", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433057310033", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433018710727", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093803256", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433017412150", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433057310033", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093803215", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093984601", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093983736", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433017412143", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433057310157", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433017412135", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433057306981", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093984312", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093803207", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093984593", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093983686", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093799397", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433017412085", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433057300612", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093983694", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093983702", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433093983785", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, + { + "itemBarcode": "33433066378989", + "itemAvailabilityStatus": "Available", + "errorMessage": null + } +] \ No newline at end of file diff --git a/test/jsonld-serializers.test.js b/test/jsonld-serializers.test.js index e8a75f1..b38af67 100644 --- a/test/jsonld-serializers.test.js +++ b/test/jsonld-serializers.test.js @@ -72,23 +72,23 @@ describe('JSONLD Serializers', () => { ) }) - describe('recordType', () => { - it('adds label to recordType', async () => { + describe('format', () => { + it('adds label to format', async () => { const serialized = await ResourceSerializer.serialize({ - recordTypeId: 'a' + formatId: 'a' }) - expect(serialized.recordType).to.deep.equal({ + expect(serialized.format).to.deep.equal({ '@id': 'a', prefLabel: 'Book/Text' }) }) - it('removes invalid recordType', async () => { + it('removes invalid format', async () => { const serialized = await ResourceSerializer.serialize({ - recordTypeId: '!' + formatId: '!' }) - expect(serialized.recordType).to.be.a('null') + expect(serialized.format).to.be.a('null') }) }) }) @@ -155,20 +155,20 @@ describe('JSONLD Serializers', () => { } ) - it('formats recordType agg', async () => { + it('formats format agg', async () => { const serialized = await AggregationsSerializer.serialize(transformedEsResponse) - const recordTypeAgg = serialized.itemListElement - .find((agg) => agg.id === 'recordType') - expect(recordTypeAgg).to.be.a('object') + const formatAgg = serialized.itemListElement + .find((agg) => agg.id === 'format') + expect(formatAgg).to.be.a('object') - expect(recordTypeAgg).to.nested.include({ + expect(formatAgg).to.nested.include({ 'values[0].value': 'a', 'values[0].count': 2324674, 'values[0].label': 'Book/Text' }) - const bucketsWithoutLabels = recordTypeAgg.values + const bucketsWithoutLabels = formatAgg.values .filter((val) => !val.label) expect(bucketsWithoutLabels).to.have.lengthOf(0) }) diff --git a/test/resource_serializer.test.js b/test/resource_serializer.test.js index 5e6cbd1..bcd2bf3 100644 --- a/test/resource_serializer.test.js +++ b/test/resource_serializer.test.js @@ -2,9 +2,9 @@ const { expect } = require('chai') const { ResourceSerializer } = require('../lib/jsonld_serializers') const esResponse = require('./fixtures/item-filter-aggregations.json') describe('Resource Serializer', () => { - describe('formatRecordType', () => { + describe('formatformat', () => { it('should format properly', () => { - expect(ResourceSerializer.getFormattedRecordType('a')).to.deep.equal({ '@id': 'a', prefLabel: 'Book/Text' }) + expect(ResourceSerializer.getFormattedformat('a')).to.deep.equal({ '@id': 'a', prefLabel: 'Book/Text' }) }) }) describe('.formatItemFilterAggregations()', () => { diff --git a/test/resources-responses.test.js b/test/resources-responses.test.js index b38b897..7b1fece 100644 --- a/test/resources-responses.test.js +++ b/test/resources-responses.test.js @@ -266,7 +266,7 @@ describe('Test Resources responses', function () { assert(doc.itemAggregations) - assert.deepEqual(doc.recordType, { '@id': 'a', prefLabel: 'Book/Text' }) + assert.deepEqual(doc.format, { '@id': 'a', prefLabel: 'Book/Text' }) done() }) @@ -549,21 +549,21 @@ 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) => { + describe('Filter by format', function () { + it('returns only items with format a', (done) => { + const format = 'a' + request.get(`${searchAllUrl}&filters[format]=${format}`, (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) => { + const allItemsHaveformat = doc.itemListElement.every((element) => { // .. has some items that ... - return element.recordType?.[0]['@id'] === 'recordType:' + recordType + return element.format?.[0]['@id'] === 'format:' + format }) // For the result to match, only one item needs to match: - expect(allItemsHaveRecordType) + expect(allItemsHaveformat) }) done() }) From dd6ec9ed9fadd30cf11bc0b4bb0d3feaf4583713 Mon Sep 17 00:00:00 2001 From: Vera Kahn Date: Fri, 28 Feb 2025 14:50:09 -0500 Subject: [PATCH 3/4] update tests and fixtures with format --- lib/jsonld_serializers.js | 2 +- test/fixtures/es-aggregations-response.json | 2 +- ...uery-0618d9d8e93ba92efa70ac0597404d31.json | 100 +++++++++--------- ...uery-312559d18828e819302ab138853ba761.json | 62 +++++------ ...uery-527240adac4b952f3b47ee9321ae4fdb.json | 100 +++++++++--------- ...uery-5cf222b73a8feaf04323f2f9a181aa20.json | 100 +++++++++--------- ...uery-6b92b7b8228529efda574503e2e4d89e.json | 100 +++++++++--------- ...uery-7906162b20862ce1d97ae369391ef91b.json | 100 +++++++++--------- ...uery-8b22e804507ed10a7e50fd6d4bdbf310.json | 100 +++++++++--------- ...uery-b4e216cc162208dbe0e94851b1bb79ee.json | 100 +++++++++--------- ...uery-bf6caf242f418048cb7522997f55f4fa.json | 2 +- ...uery-dc67efef11246bef8987507fdce8e2f5.json | 100 +++++++++--------- ...uery-de2df871a8da81cc031afab8db724ed3.json | 50 ++++----- ...uery-e3f9fad2402defa955635684d5661a66.json | 100 +++++++++--------- ...uery-eb7a40606aa06703bc736caeea1c35f4.json | 100 +++++++++--------- ...uery-f83c30e2c474b10306888851a21090fc.json | 100 +++++++++--------- ...uery-fe1024607fdef5beb0d7a2e771848b7b.json | 100 +++++++++--------- test/resource_serializer.test.js | 2 +- 18 files changed, 660 insertions(+), 660 deletions(-) diff --git a/lib/jsonld_serializers.js b/lib/jsonld_serializers.js index 949788f..fed9bb9 100644 --- a/lib/jsonld_serializers.js +++ b/lib/jsonld_serializers.js @@ -270,7 +270,7 @@ class ResourceSerializer extends JsonLdItemSerializer { } } if (this.body.formatId) { - stmts.format = ResourceSerializer.getFormattedMaterialLikeType(this.body.formatId) + stmts.format = ResourceSerializer.getFormattedFormat(this.body.formatId) delete stmts.formatId } diff --git a/test/fixtures/es-aggregations-response.json b/test/fixtures/es-aggregations-response.json index 659ee87..d848c17 100644 --- a/test/fixtures/es-aggregations-response.json +++ b/test/fixtures/es-aggregations-response.json @@ -271,7 +271,7 @@ } ] }, - "recordType": { + "format": { "doc_count_error_upper_bound": 0, "sum_other_doc_count": 0, "buckets": [ diff --git a/test/fixtures/query-0618d9d8e93ba92efa70ac0597404d31.json b/test/fixtures/query-0618d9d8e93ba92efa70ac0597404d31.json index da7e396..0574803 100644 --- a/test/fixtures/query-0618d9d8e93ba92efa70ac0597404d31.json +++ b/test/fixtures/query-0618d9d8e93ba92efa70ac0597404d31.json @@ -172,7 +172,7 @@ ], "uri": "b12062337", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Reading, UK" ], @@ -465,7 +465,7 @@ ], "uri": "b12392305", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "ʻAmmān" ], @@ -749,7 +749,7 @@ 2 ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Berlin" ], @@ -1145,7 +1145,7 @@ } ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York [etc.]" ], @@ -1413,7 +1413,7 @@ ], "uri": "b13847223", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Lafayette Station, in Montgomery County, Pennsylvania" ], @@ -1684,7 +1684,7 @@ ], "uri": "b13847233", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Paris" ], @@ -2054,7 +2054,7 @@ ], "uri": "b13847234", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -2322,7 +2322,7 @@ ], "uri": "b13847236", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -2683,7 +2683,7 @@ ], "uri": "b13847237", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Manchester" ], @@ -2953,7 +2953,7 @@ "TS1096.I7 H3" ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -3214,7 +3214,7 @@ ], "uri": "b13847239", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Berlin" ], @@ -3513,7 +3513,7 @@ ], "uri": "b13847240", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "México, D.F." ], @@ -3879,7 +3879,7 @@ ], "uri": "b13847243", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -4159,7 +4159,7 @@ 1 ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -4406,7 +4406,7 @@ ], "uri": "b13847245", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -4670,7 +4670,7 @@ "TN731 .G7" ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -4947,7 +4947,7 @@ ], "uri": "b13847248", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London : Philadelphia" ], @@ -5217,7 +5217,7 @@ ], "uri": "b13847252", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Manchester [England]" ], @@ -5671,7 +5671,7 @@ ], "uri": "b13847255", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Dresden" ], @@ -5944,7 +5944,7 @@ "TS320 .G73" ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -6226,7 +6226,7 @@ ], "uri": "b13847257", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Roma" ], @@ -6493,7 +6493,7 @@ ], "uri": "b13847260", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Paris" ], @@ -6851,7 +6851,7 @@ "TN756 .G7" ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Cleveland" ], @@ -7125,7 +7125,7 @@ ], "uri": "b13847262", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Berlin" ], @@ -7389,7 +7389,7 @@ "TS320 .G75" ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York, London" ], @@ -7659,7 +7659,7 @@ "TS320 .G76 1940" ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Cleveland" ], @@ -7932,7 +7932,7 @@ "TS1145 .H4 1962" ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Leipzig" ], @@ -8206,7 +8206,7 @@ "TN672 .G" ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Cleveland" ], @@ -8478,7 +8478,7 @@ "TN751 .G7 1964" ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Metals Park, Ohio" ], @@ -8732,7 +8732,7 @@ ], "uri": "b13847270", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Leipzig" ], @@ -8997,7 +8997,7 @@ "Z237 .H48" ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Zurich" ], @@ -9242,7 +9242,7 @@ } ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Leipzig" ], @@ -9514,7 +9514,7 @@ } ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -9793,7 +9793,7 @@ ], "uri": "b13847280", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Stockholm" ], @@ -10155,7 +10155,7 @@ ], "uri": "b13847281", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Indianapolis, New York" ], @@ -10425,7 +10425,7 @@ "TP149 .B74 1942" ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Indianapolis, New York" ], @@ -10694,7 +10694,7 @@ ], "uri": "b13847285", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Stockholm" ], @@ -11058,7 +11058,7 @@ "TP155 .B7" ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -11319,7 +11319,7 @@ "TN730 .H23" ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York [etc.]" ], @@ -11596,7 +11596,7 @@ "TN730 .H2" ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -11874,7 +11874,7 @@ ], "uri": "b13847291", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London, New York" ], @@ -12240,7 +12240,7 @@ ], "uri": "b13847292", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Atlanta" ], @@ -12611,7 +12611,7 @@ "TA472 .H3" ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Reading, Mass." ], @@ -12883,7 +12883,7 @@ "TP155 .B76" ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -13155,7 +13155,7 @@ ], "uri": "b13847299", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London, Philadelphia" ], @@ -13536,7 +13536,7 @@ ], "uri": "b13847300", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Berlin" ], @@ -13806,7 +13806,7 @@ ], "uri": "b13847302", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London, New York [etc.]" ], @@ -14171,7 +14171,7 @@ ], "uri": "b13847303", "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London, Philadelphia" ], @@ -14579,7 +14579,7 @@ "TS320 .H28" ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Stanford University, Calif." ], @@ -14841,7 +14841,7 @@ } ], "formatId": "a", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Berlin" ], diff --git a/test/fixtures/query-312559d18828e819302ab138853ba761.json b/test/fixtures/query-312559d18828e819302ab138853ba761.json index fbd829b..2a4225e 100644 --- a/test/fixtures/query-312559d18828e819302ab138853ba761.json +++ b/test/fixtures/query-312559d18828e819302ab138853ba761.json @@ -172,7 +172,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[Place of publication not identified] : New York, N.Y." ], @@ -457,7 +457,7 @@ "A musical toast / Leonard Bernstein." ], "uri": "b10981311", - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[United States]" ], @@ -743,7 +743,7 @@ "lccClassification": [ "PS3531.O936 A83 1989" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -1007,7 +1007,7 @@ "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433066644109" } ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -1381,7 +1381,7 @@ "A toast to freedom [microform] : New York celebrates Evacuation Day." ], "uri": "b10861042", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -1779,7 +1779,7 @@ "A Toast to freedom : New York celebrates Evacuation Day." ], "uri": "b18106748", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -2047,7 +2047,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Warszawa" ], @@ -2603,7 +2603,7 @@ "The papers of Andrew Jackson / Sam B. Smith and Harriet Chappell Owsley, editors ; Robert V. Remini, consulting editor ; Sharon C. Macpherson, associate editor ; Linda D. Keeton, staff assistant." ], "uri": "b10685709", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Knoxville" ], @@ -3166,7 +3166,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "St. Paul, MN" ], @@ -3543,7 +3543,7 @@ "url": "http://www.imdb.com/title/tt0073158/" } ], - "recordTypeId": "g", + "formatId": "g", "placeOfPublication": [ "New York, NY" ], @@ -3883,7 +3883,7 @@ "lccClassification": [ "ML410.R227 P76 2006" ], - "recordTypeId": "g", + "formatId": "g", "placeOfPublication": [ "Vancouver, B.C." ], @@ -4167,7 +4167,7 @@ "Jacob's Pillow. 1984 [videorecording] : special events." ], "uri": "b15994132", - "recordTypeId": "g", + "formatId": "g", "issuance": [ { "id": "urn:biblevel:m", @@ -4453,7 +4453,7 @@ "Mad dogs and Englishmen [sound recording] : the complete recordings, vol. 2 : 1932-1936 / Noël Coward." ], "uri": "b15557108", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[S.l.]" ], @@ -4960,7 +4960,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=090266019021" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York, NY" ], @@ -5188,7 +5188,7 @@ "J. Papp at Columbia University [sound recording] : [speech and performance] / [toast and performance by J. Papp ; music arranged and conducted by Stanley Silverman.]" ], "uri": "b16645835", - "recordTypeId": "j", + "formatId": "j", "titleAlt": [ "Joseph Papp at Columbia", "New York Shakespeare Festival recordings collection." @@ -5358,7 +5358,7 @@ "Omnibus." ], "uri": "b15316446", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New Rochelle, N.Y." ], @@ -5697,7 +5697,7 @@ "lccClassification": [ "M1630.18 .V65 2018" ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Atlanta, Georgia]" ], @@ -6252,7 +6252,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=886970740920" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[New York]" ], @@ -7029,7 +7029,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=0094637087954" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York, NY" ], @@ -7808,7 +7808,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=0724358621150" } ], - "recordTypeId": "j", + "formatId": "j", "issuance": [ { "id": "urn:biblevel:m", @@ -8007,7 +8007,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York :" ], @@ -8326,7 +8326,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Atlanta, Georgia]" ], @@ -8615,7 +8615,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Melbourne, Vic." ], @@ -8930,7 +8930,7 @@ "numAvailable": [ 0 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Lincoln" ], @@ -9216,7 +9216,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Columbia, S.C." ], @@ -9556,7 +9556,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Salt Lake City" ], @@ -9860,7 +9860,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Roma" ], @@ -10188,7 +10188,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "London" ], @@ -10514,7 +10514,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Copenhagen, Denmark" ], @@ -10847,7 +10847,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Hayes, Middlesex, England" ], @@ -11136,7 +11136,7 @@ "numAvailable": [ 4 ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "London" ], diff --git a/test/fixtures/query-527240adac4b952f3b47ee9321ae4fdb.json b/test/fixtures/query-527240adac4b952f3b47ee9321ae4fdb.json index 0682bdf..494d699 100644 --- a/test/fixtures/query-527240adac4b952f3b47ee9321ae4fdb.json +++ b/test/fixtures/query-527240adac4b952f3b47ee9321ae4fdb.json @@ -137,7 +137,7 @@ "Religion--love or hate? / by David Kirshenbaum." ], "uri": "b10022950", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -426,7 +426,7 @@ "lccClassification": [ "DC715 .F57" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -701,7 +701,7 @@ "In the Jewish world." ], "uri": "b10108860", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -1120,7 +1120,7 @@ "Les Chinois au Sud-Vietnam." ], "uri": "b10246446", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Paris" ], @@ -1389,7 +1389,7 @@ "The first 100 years of the First Baptist Church, Denton, Texas, 1858-1958." ], "uri": "b10279913", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Denton, Tex." ], @@ -1662,7 +1662,7 @@ "Estetika. ." ], "uri": "b10355292", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Zrenjanin" ], @@ -1930,7 +1930,7 @@ "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", + "formatId": "a", "placeOfPublication": [ "Chicago" ], @@ -2193,7 +2193,7 @@ "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", + "formatId": "a", "placeOfPublication": [ "[New York?]" ], @@ -2445,7 +2445,7 @@ "Washburn family data, correspondence, and business papers." ], "uri": "b10394161", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:m", @@ -2924,7 +2924,7 @@ "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", + "formatId": "a", "placeOfPublication": [ "[Washington?]" ], @@ -3408,7 +3408,7 @@ "Sprachspiegel." ], "uri": "b10455495", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Lucerne]." ], @@ -4389,7 +4389,7 @@ "url": "http://www.nonwovens-industry.com/" } ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Ramsey, N.J.]" ], @@ -4819,7 +4819,7 @@ "Upon these hills; Massillon's beginnings and early days, by Mrs. Barton E. Smith." ], "uri": "b10507702", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Massillon, Ohio" ], @@ -5085,7 +5085,7 @@ "Camera studies of Freeport, Illinois: parks, churches, schools, civic, cultural, fraternal, and eleemosynary institutions." ], "uri": "b10513848", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Freeport?" ], @@ -5333,7 +5333,7 @@ "Benton-Graves ancestry, Compiled by Blanche Benton Heller. Edited by Edith Bartlett Sumner." ], "uri": "b10542108", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Los Angeles" ], @@ -5609,7 +5609,7 @@ "Dominica welfare review." ], "uri": "b10569096", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Roseau." ], @@ -5912,7 +5912,7 @@ "Genealogy of Haught family of America." ], "uri": "b10587597", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Morgantown? W. Va." ], @@ -6261,7 +6261,7 @@ "Le champion des dames. Publié par Arthur Piaget." ], "uri": "b10607158", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Lausanne" ], @@ -6542,7 +6542,7 @@ "lccClassification": [ "PR9265.9.B7 D3" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Mona [Jamaica]" ], @@ -6881,7 +6881,7 @@ "PS3570.O54 C66 1980", "PZ4.T6719 Co 1980" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Baton Rouge" ], @@ -7159,7 +7159,7 @@ "lccClassification": [ "CS71.C788 1957" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Darien, Conn." ], @@ -7518,7 +7518,7 @@ "lccClassification": [ "AP6 .B5" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "St. Michael, Barbados, W.I." ], @@ -8032,7 +8032,7 @@ "Copy of Francis tree as written by Mrs. Maria Clayton Francis Johnston in 1910 / research completed by Marvyn Francis." ], "uri": "b10721308", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York City" ], @@ -8288,7 +8288,7 @@ "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", + "formatId": "a", "placeOfPublication": [ "Cassville, Mo." ], @@ -9126,7 +9126,7 @@ "lccClassification": [ "D501 .L4" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Quantico, Va., etc." ], @@ -9537,7 +9537,7 @@ "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", + "formatId": "a", "placeOfPublication": [ "[S.l." ], @@ -9819,7 +9819,7 @@ "lccClassification": [ "K150 .B47 1983" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Cambridge, Mass." ], @@ -10093,7 +10093,7 @@ "Giorgio Sommer, fotografo a Napoli / a cura di Daniela Palazzoli." ], "uri": "b10846129", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Milano" ], @@ -10369,7 +10369,7 @@ "lccClassification": [ "PS3515.E37 Z7543 1984" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Bloomington" ], @@ -10631,7 +10631,7 @@ "Aus dem Archiv der Familie von Schulthess Reichberg." ], "uri": "b10857830", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Switzerland" ], @@ -10908,7 +10908,7 @@ "lccClassification": [ "CS71.B19 1980" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Kirksville, Mo." ], @@ -11181,7 +11181,7 @@ "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", + "formatId": "a", "placeOfPublication": [ "Albany, N.Y." ], @@ -11750,7 +11750,7 @@ "Sanborn Manhattan land book of the city of New York." ], "uri": "b10987394", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -12201,7 +12201,7 @@ "lccClassification": [ "HD9929.R6 S94 1983" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Basel" ], @@ -12509,7 +12509,7 @@ "lccClassification": [ "ML120.U5 S5 1985" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Detroit, Mich." ], @@ -13003,7 +13003,7 @@ "lccClassification": [ "PS558.T4 S68 1986" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Austin" ], @@ -13295,7 +13295,7 @@ "lccClassification": [ "CS71.M82 1984a" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Independence, Mo.] (1420 N. Spring, Independence 64050)" ], @@ -13679,7 +13679,7 @@ "url": "http://hdl.handle.net/2027/nyp.33433030946291" } ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York, N.Y." ], @@ -14185,7 +14185,7 @@ "lccClassification": [ "HS122 .P7 1966" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Detroit" ], @@ -14532,7 +14532,7 @@ "Conversación con el ultimo norteamericano / Enrique Cirules." ], "uri": "b11188219", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "La Habana" ], @@ -14822,7 +14822,7 @@ "lccClassification": [ "PS3515.E37 Z864 1989" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Boston, Mass." ], @@ -15532,7 +15532,7 @@ "lccClassification": [ "S1 .S93" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Des Moines, IA 50336 : Meredith Corp, 1716 Locust st." ], @@ -15954,7 +15954,7 @@ "Ernest Hemingway : a reconsideration / Philip Young." ], "uri": "b11266424", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "University Park" ], @@ -16224,7 +16224,7 @@ "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", + "formatId": "a", "placeOfPublication": [ "Huntsville, Tex." ], @@ -16513,7 +16513,7 @@ "lccClassification": [ "HB171" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Manchester [England]" ], @@ -16810,7 +16810,7 @@ "lccClassification": [ "CS49 .C63 1989" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Salt Lake City, UT" ], @@ -17107,7 +17107,7 @@ "Confrontational politics in India / editors, A.L. Gupta, R.C. Saini, R.K. Gupta." ], "uri": "b11302556", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New Delhi, India" ], @@ -17359,7 +17359,7 @@ "Documentos e genealogias / por Carlos F. de Figueiredo Valente." ], "uri": "b11328591", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Lisboa" ], @@ -17658,7 +17658,7 @@ "lccClassification": [ "BF173 .M356 1988" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London ; New York" ], @@ -18189,7 +18189,7 @@ "lccClassification": [ "DT56.8 .G63" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Göttingen [Ger." ], diff --git a/test/fixtures/query-5cf222b73a8feaf04323f2f9a181aa20.json b/test/fixtures/query-5cf222b73a8feaf04323f2f9a181aa20.json index a195d6e..fe3266a 100644 --- a/test/fixtures/query-5cf222b73a8feaf04323f2f9a181aa20.json +++ b/test/fixtures/query-5cf222b73a8feaf04323f2f9a181aa20.json @@ -172,7 +172,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[Place of publication not identified] : New York, N.Y." ], @@ -457,7 +457,7 @@ "A musical toast / Leonard Bernstein." ], "uri": "b10981311", - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[United States]" ], @@ -743,7 +743,7 @@ "lccClassification": [ "PS3531.O936 A83 1989" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -1007,7 +1007,7 @@ "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433066644109" } ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -1381,7 +1381,7 @@ "A toast to freedom [microform] : New York celebrates Evacuation Day." ], "uri": "b10861042", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -1779,7 +1779,7 @@ "A Toast to freedom : New York celebrates Evacuation Day." ], "uri": "b18106748", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -2047,7 +2047,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Warszawa" ], @@ -2603,7 +2603,7 @@ "The papers of Andrew Jackson / Sam B. Smith and Harriet Chappell Owsley, editors ; Robert V. Remini, consulting editor ; Sharon C. Macpherson, associate editor ; Linda D. Keeton, staff assistant." ], "uri": "b10685709", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Knoxville" ], @@ -3166,7 +3166,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "St. Paul, MN" ], @@ -3544,7 +3544,7 @@ "url": "http://www.imdb.com/title/tt0073158/" } ], - "recordTypeId": "g", + "formatId": "g", "placeOfPublication": [ "New York, NY" ], @@ -3821,7 +3821,7 @@ "Jacob's Pillow. 1984 [videorecording] : special events." ], "uri": "b15994132", - "recordTypeId": "g", + "formatId": "g", "issuance": [ { "id": "urn:biblevel:m", @@ -4084,7 +4084,7 @@ "Omnibus." ], "uri": "b15316446", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New Rochelle, N.Y." ], @@ -4518,7 +4518,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=090266019021" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York, NY" ], @@ -4713,7 +4713,7 @@ "Mad dogs and Englishmen [sound recording] : the complete recordings, vol. 2 : 1932-1936 / Noël Coward." ], "uri": "b15557108", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[S.l.]" ], @@ -5109,7 +5109,7 @@ "Selma Jeanne Cohen's 75th birthday party at the Dance Collection [videorecording] / master of ceremonies, George Dorris." ], "uri": "b19426830", - "recordTypeId": "g", + "formatId": "g", "issuance": [ { "id": "urn:biblevel:m", @@ -5433,7 +5433,7 @@ "lccClassification": [ "M1630.18 .V65 2018" ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Atlanta, Georgia]" ], @@ -6000,7 +6000,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=886970740920" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[New York]" ], @@ -6244,7 +6244,7 @@ "lccClassification": [ "ML410.R227 P76 2006" ], - "recordTypeId": "g", + "formatId": "g", "placeOfPublication": [ "Vancouver, B.C." ], @@ -6527,7 +6527,7 @@ "Scandinavian dance music." ], "uri": "b14565371", - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "London" ], @@ -6913,7 +6913,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=0724357412759" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Hollywood, Calif." ], @@ -7108,7 +7108,7 @@ "Donnybrook! : Original Broadway cast / music and lyrics by Johnny Burke." ], "uri": "b23461378", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Place of publication not identified]" ], @@ -7404,7 +7404,7 @@ "The Dramatics live [sound recording] / the Dramatics." ], "uri": "b16745415", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Berkeley, Calif." ], @@ -7665,7 +7665,7 @@ "The Blue Max [sound recording] : original motion picture soundtrack / music composed and conducted by Jerry Goldsmith." ], "uri": "b14725291", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "North Hollywood, Calif." ], @@ -7947,7 +7947,7 @@ "Carmen [sound recording] : (excerpts) / Georges Bizet." ], "uri": "b16739633", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[France] : New York" ], @@ -8248,7 +8248,7 @@ "I gondolieri [sound recording] : Chor- und Ensemblemusik / Gioachino Rossini." ], "uri": "b15562608", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Stuttgart" ], @@ -8619,7 +8619,7 @@ "The best of the Dramatics [sound recording]." ], "uri": "b16319759", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Berkeley, Calif." ], @@ -8946,7 +8946,7 @@ "A Connecticut Yankee [sound recording] / music by Richard Rodgers ; lyrics by Lorenz Hart ; directed by Max Liebman." ], "uri": "b22147641", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Beverly Hills, Calif." ], @@ -9222,7 +9222,7 @@ "Steve Forbert songbook : piano, vocal, chords." ], "uri": "b10756597", - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[S.l.]" ], @@ -9559,7 +9559,7 @@ "lccClassification": [ "AV1.2.B59 C32 1998a" ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York, N.Y." ], @@ -9965,7 +9965,7 @@ "J. Papp at Columbia University [sound recording] : [speech and performance] / [toast and performance by J. Papp ; music arranged and conducted by Stanley Silverman.]" ], "uri": "b16645835", - "recordTypeId": "j", + "formatId": "j", "titleAlt": [ "Joseph Papp at Columbia", "New York Shakespeare Festival recordings collection." @@ -10202,7 +10202,7 @@ "Hans Reinmar [sound recording]." ], "uri": "b18350241", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Austria]" ], @@ -10659,7 +10659,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=00028947864011" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Berlin" ], @@ -10884,7 +10884,7 @@ "numAvailable": [ 0 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Lincoln" ], @@ -11164,7 +11164,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=HCD2501" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York" ], @@ -11447,7 +11447,7 @@ "Leonard Bernstein's Young People's Concerts [videorecording] : with the New York Philharmonic / CBS Entertainment ; the Leonard Bernstein Office, Inc." ], "uri": "b16171601", - "recordTypeId": "g", + "formatId": "g", "placeOfPublication": [ "West Long Branch, NJ" ], @@ -11881,7 +11881,7 @@ "Robert Merrill [sound recording]." ], "uri": "b16550061", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Austria]" ], @@ -12292,7 +12292,7 @@ "lccClassification": [ "AV1.2.C687 P32 1993" ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[England?]" ], @@ -12683,7 +12683,7 @@ "Cornelis Bronsgeest [sound recording] : 1878-1957." ], "uri": "b16745779", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Austria]" ], @@ -13009,7 +13009,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Atlanta, Georgia]" ], @@ -13332,7 +13332,7 @@ "A room with a view [sound recording] : the complete recordings, vol. 1: 1928-1932 / Noël Coward." ], "uri": "b15898906", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[S.l.] : Franklin, Tenn." ], @@ -13733,7 +13733,7 @@ "lccClassification": [ "M1505" ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Austria" ], @@ -14090,7 +14090,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=0724356666351" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York, N.Y." ], @@ -14313,7 +14313,7 @@ "Harry De Garmo (1887-1919) [sound recording]." ], "uri": "b16685833", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Austria]" ], @@ -14710,7 +14710,7 @@ "Actionable offenses [sound recording] : indecent phonograph recordings from the 1890s." ], "uri": "b16862886", - "recordTypeId": "i", + "formatId": "i", "placeOfPublication": [ "Champaign, Ill." ], @@ -15079,7 +15079,7 @@ "lccClassification": [ "TX715 .G413 1999" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[S.l.]" ], @@ -15373,7 +15373,7 @@ "Red, white & Crüe [sound recording] / Mötley Crüe." ], "uri": "b16331391", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Santa Monica, Calif." ], @@ -15808,7 +15808,7 @@ "The Blue Max [sound recording] : original sound track recording / Jerry Goldsmith." ], "uri": "b13907462", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York, NY" ], @@ -16189,7 +16189,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=00028941332226" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Hamburg" ], @@ -16422,7 +16422,7 @@ "Georges Baklanoff [sound recording]." ], "uri": "b16582506", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Austria]" ], @@ -16838,7 +16838,7 @@ "The complete Gramophone recordings [sound recording] : 1901-1908." ], "uri": "b14957708", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[U.S.]" ], diff --git a/test/fixtures/query-6b92b7b8228529efda574503e2e4d89e.json b/test/fixtures/query-6b92b7b8228529efda574503e2e4d89e.json index 5e7537e..04c94ac 100644 --- a/test/fixtures/query-6b92b7b8228529efda574503e2e4d89e.json +++ b/test/fixtures/query-6b92b7b8228529efda574503e2e4d89e.json @@ -172,7 +172,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[Place of publication not identified] : New York, N.Y." ], @@ -457,7 +457,7 @@ "A musical toast / Leonard Bernstein." ], "uri": "b10981311", - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[United States]" ], @@ -743,7 +743,7 @@ "lccClassification": [ "PS3531.O936 A83 1989" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -1007,7 +1007,7 @@ "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433066644109" } ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -1381,7 +1381,7 @@ "A toast to freedom [microform] : New York celebrates Evacuation Day." ], "uri": "b10861042", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -1779,7 +1779,7 @@ "A Toast to freedom : New York celebrates Evacuation Day." ], "uri": "b18106748", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -2047,7 +2047,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Warszawa" ], @@ -2603,7 +2603,7 @@ "The papers of Andrew Jackson / Sam B. Smith and Harriet Chappell Owsley, editors ; Robert V. Remini, consulting editor ; Sharon C. Macpherson, associate editor ; Linda D. Keeton, staff assistant." ], "uri": "b10685709", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Knoxville" ], @@ -3166,7 +3166,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "St. Paul, MN" ], @@ -3543,7 +3543,7 @@ "url": "http://www.imdb.com/title/tt0073158/" } ], - "recordTypeId": "g", + "formatId": "g", "placeOfPublication": [ "New York, NY" ], @@ -3820,7 +3820,7 @@ "Jacob's Pillow. 1984 [videorecording] : special events." ], "uri": "b15994132", - "recordTypeId": "g", + "formatId": "g", "issuance": [ { "id": "urn:biblevel:m", @@ -4083,7 +4083,7 @@ "Omnibus." ], "uri": "b15316446", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New Rochelle, N.Y." ], @@ -4517,7 +4517,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=090266019021" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York, NY" ], @@ -4712,7 +4712,7 @@ "Mad dogs and Englishmen [sound recording] : the complete recordings, vol. 2 : 1932-1936 / Noël Coward." ], "uri": "b15557108", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[S.l.]" ], @@ -5108,7 +5108,7 @@ "Selma Jeanne Cohen's 75th birthday party at the Dance Collection [videorecording] / master of ceremonies, George Dorris." ], "uri": "b19426830", - "recordTypeId": "g", + "formatId": "g", "issuance": [ { "id": "urn:biblevel:m", @@ -5666,7 +5666,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=886970740920" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[New York]" ], @@ -5910,7 +5910,7 @@ "lccClassification": [ "ML410.R227 P76 2006" ], - "recordTypeId": "g", + "formatId": "g", "placeOfPublication": [ "Vancouver, B.C." ], @@ -6193,7 +6193,7 @@ "Scandinavian dance music." ], "uri": "b14565371", - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "London" ], @@ -6515,7 +6515,7 @@ "lccClassification": [ "M1630.18 .V65 2018" ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Atlanta, Georgia]" ], @@ -6897,7 +6897,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=0724357412759" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Hollywood, Calif." ], @@ -7092,7 +7092,7 @@ "Donnybrook! : Original Broadway cast / music and lyrics by Johnny Burke." ], "uri": "b23461378", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Place of publication not identified]" ], @@ -7388,7 +7388,7 @@ "The Dramatics live [sound recording] / the Dramatics." ], "uri": "b16745415", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Berkeley, Calif." ], @@ -7649,7 +7649,7 @@ "The Blue Max [sound recording] : original motion picture soundtrack / music composed and conducted by Jerry Goldsmith." ], "uri": "b14725291", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "North Hollywood, Calif." ], @@ -7931,7 +7931,7 @@ "Carmen [sound recording] : (excerpts) / Georges Bizet." ], "uri": "b16739633", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[France] : New York" ], @@ -8232,7 +8232,7 @@ "I gondolieri [sound recording] : Chor- und Ensemblemusik / Gioachino Rossini." ], "uri": "b15562608", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Stuttgart" ], @@ -8603,7 +8603,7 @@ "The best of the Dramatics [sound recording]." ], "uri": "b16319759", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Berkeley, Calif." ], @@ -8930,7 +8930,7 @@ "A Connecticut Yankee [sound recording] / music by Richard Rodgers ; lyrics by Lorenz Hart ; directed by Max Liebman." ], "uri": "b22147641", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Beverly Hills, Calif." ], @@ -9206,7 +9206,7 @@ "Steve Forbert songbook : piano, vocal, chords." ], "uri": "b10756597", - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[S.l.]" ], @@ -9543,7 +9543,7 @@ "lccClassification": [ "AV1.2.B59 C32 1998a" ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York, N.Y." ], @@ -9949,7 +9949,7 @@ "J. Papp at Columbia University [sound recording] : [speech and performance] / [toast and performance by J. Papp ; music arranged and conducted by Stanley Silverman.]" ], "uri": "b16645835", - "recordTypeId": "j", + "formatId": "j", "titleAlt": [ "Joseph Papp at Columbia", "New York Shakespeare Festival recordings collection." @@ -10186,7 +10186,7 @@ "Hans Reinmar [sound recording]." ], "uri": "b18350241", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Austria]" ], @@ -10643,7 +10643,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=00028947864011" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Berlin" ], @@ -10868,7 +10868,7 @@ "numAvailable": [ 0 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Lincoln" ], @@ -11148,7 +11148,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=HCD2501" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York" ], @@ -11431,7 +11431,7 @@ "Leonard Bernstein's Young People's Concerts [videorecording] : with the New York Philharmonic / CBS Entertainment ; the Leonard Bernstein Office, Inc." ], "uri": "b16171601", - "recordTypeId": "g", + "formatId": "g", "placeOfPublication": [ "West Long Branch, NJ" ], @@ -11865,7 +11865,7 @@ "Robert Merrill [sound recording]." ], "uri": "b16550061", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Austria]" ], @@ -12276,7 +12276,7 @@ "lccClassification": [ "AV1.2.C687 P32 1993" ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[England?]" ], @@ -12667,7 +12667,7 @@ "Cornelis Bronsgeest [sound recording] : 1878-1957." ], "uri": "b16745779", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Austria]" ], @@ -12993,7 +12993,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Atlanta, Georgia]" ], @@ -13316,7 +13316,7 @@ "A room with a view [sound recording] : the complete recordings, vol. 1: 1928-1932 / Noël Coward." ], "uri": "b15898906", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[S.l.] : Franklin, Tenn." ], @@ -13717,7 +13717,7 @@ "lccClassification": [ "M1505" ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Austria" ], @@ -14074,7 +14074,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=0724356666351" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York, N.Y." ], @@ -14297,7 +14297,7 @@ "Harry De Garmo (1887-1919) [sound recording]." ], "uri": "b16685833", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Austria]" ], @@ -14694,7 +14694,7 @@ "Actionable offenses [sound recording] : indecent phonograph recordings from the 1890s." ], "uri": "b16862886", - "recordTypeId": "i", + "formatId": "i", "placeOfPublication": [ "Champaign, Ill." ], @@ -15063,7 +15063,7 @@ "lccClassification": [ "TX715 .G413 1999" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[S.l.]" ], @@ -15357,7 +15357,7 @@ "Red, white & Crüe [sound recording] / Mötley Crüe." ], "uri": "b16331391", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Santa Monica, Calif." ], @@ -15792,7 +15792,7 @@ "The Blue Max [sound recording] : original sound track recording / Jerry Goldsmith." ], "uri": "b13907462", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York, NY" ], @@ -16173,7 +16173,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=00028941332226" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Hamburg" ], @@ -16406,7 +16406,7 @@ "Georges Baklanoff [sound recording]." ], "uri": "b16582506", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Austria]" ], @@ -16822,7 +16822,7 @@ "The complete Gramophone recordings [sound recording] : 1901-1908." ], "uri": "b14957708", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[U.S.]" ], diff --git a/test/fixtures/query-7906162b20862ce1d97ae369391ef91b.json b/test/fixtures/query-7906162b20862ce1d97ae369391ef91b.json index 4bb52b4..82eaef5 100644 --- a/test/fixtures/query-7906162b20862ce1d97ae369391ef91b.json +++ b/test/fixtures/query-7906162b20862ce1d97ae369391ef91b.json @@ -180,7 +180,7 @@ "Toast / by Raquel Pelzel ; photographs by Evan Sung." ], "uri": "b20970375", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -464,7 +464,7 @@ "Toast / by Richard Bean." ], "uri": "pb9928479343506421", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -742,7 +742,7 @@ "Toast za przodków / Wojciech Górecki." ], "uri": "b18806309", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wołowiec" ], @@ -1030,7 +1030,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Holicong, PA" ], @@ -1306,7 +1306,7 @@ "lccClassification": [ "PG7223.I78 T627 2010" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wołowiec" ], @@ -1579,7 +1579,7 @@ "lccClassification": [ "PR9387.9.O3115 T63 2002" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Nigeria" ], @@ -1838,7 +1838,7 @@ "Tiger Toast / Nika Pfeifer." ], "uri": "b23469693", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Klagenfurt" ], @@ -2047,7 +2047,7 @@ "lccClassification": [ "PZ7.W7674 Fr 2016" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto, Ontario, Canada" ], @@ -2337,7 +2337,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[Place of publication not identified] : New York, N.Y." ], @@ -2586,7 +2586,7 @@ "Mein Lieblings-Toast : 300 heisse Tips für Toast-Fans / Gabriele Heindel." ], "uri": "b12004445", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Leoben" ], @@ -2889,7 +2889,7 @@ "lccClassification": [ "TX769 .L39 2022" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -3196,7 +3196,7 @@ "A musical toast / Leonard Bernstein." ], "uri": "b10981311", - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[United States]" ], @@ -3482,7 +3482,7 @@ "lccClassification": [ "PS3531.O936 A83 1989" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -3753,7 +3753,7 @@ "lccClassification": [ "PR6113.I5865 S39 2022" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Cardigan" ], @@ -4020,7 +4020,7 @@ "lccClassification": [ "PR9387.9.O3115 T63 2002" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Nigeria" ], @@ -4306,7 +4306,7 @@ "lccClassification": [ "PR9199.4.P34 T63 2018" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto, Canada" ], @@ -4578,7 +4578,7 @@ "url": "http://WU9FB9WH4A.search.serialssolutions.com/?V=1.0&L=WU9FB9WH4A&S=JCs&C=TC0001177068&T=marc&tab=BOOKS" } ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Alexandria, VA" ], @@ -4737,7 +4737,7 @@ "A toast to Beauty." ], "uri": "b12227432", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:b", @@ -5025,7 +5025,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=028948163632" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Australia]" ], @@ -5193,7 +5193,7 @@ "lccClassification": [ "PR9387.9.T37 T63 1991" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Nigeria?]" ], @@ -5479,7 +5479,7 @@ "lccClassification": [ "PR9369.4.C54 M87 2008" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Northlands [South Africa]" ], @@ -5751,7 +5751,7 @@ "Making toast : a family story / Roger Rosenblatt." ], "uri": "b22185434", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -6022,7 +6022,7 @@ "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433066644109" } ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -6396,7 +6396,7 @@ "lccClassification": [ "PZ7.E2815 Bu 1997" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Boston" ], @@ -6684,7 +6684,7 @@ "lccClassification": [ "DT515.45.I348 F384 2008" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ilesa" ], @@ -6968,7 +6968,7 @@ "lccClassification": [ "TX714 .G53155 2012" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Crows Nest, N.S.W." ], @@ -7287,7 +7287,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Nantes]" ], @@ -7563,7 +7563,7 @@ "lccClassification": [ "PZ7.S84895 If 1999" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -7880,7 +7880,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New Delhi" ], @@ -8161,7 +8161,7 @@ "lccClassification": [ "TX357 .S53 2003" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London ; New York" ], @@ -8461,7 +8461,7 @@ "lccClassification": [ "PR9387.9.G55 T63 2006" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Oyo State, Nigeria" ], @@ -8784,7 +8784,7 @@ "lccClassification": [ "M1613.3.A32 W4 1994" ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "Victoria, British Columbia" ], @@ -9060,7 +9060,7 @@ "lccClassification": [ "PN1991.3.G7 B4 2006" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -9332,7 +9332,7 @@ "numAvailable": [ 0 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York, NY :" ], @@ -9524,7 +9524,7 @@ "lccClassification": [ "M317.S35 F74 2005" ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "King of Prussia, PA" ], @@ -9772,7 +9772,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Harare, Zimbabwe :" ], @@ -10008,7 +10008,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Sidney, B.C." ], @@ -10267,7 +10267,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto" ], @@ -10520,7 +10520,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Tarset" ], @@ -10807,7 +10807,7 @@ "lccClassification": [ "PN56.D8 B6 1997x" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -11071,7 +11071,7 @@ "lccClassification": [ "PS3565.L4575 T63 2009" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Minneapolis, Minn." ], @@ -11467,7 +11467,7 @@ "lccClassification": [ "HV5292 .G67 2016" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -11766,7 +11766,7 @@ "lccClassification": [ "TX910.5.W58 A3 1998" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Detroit" ], @@ -12043,7 +12043,7 @@ "Ricordi di una stanza che scompare = Mälestused kaduvast toast / Gregor Elm." ], "uri": "b23014874", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Püünsi" ], @@ -12325,7 +12325,7 @@ "lccClassification": [ "PS3555.D99 T63 1998" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -12734,7 +12734,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Detroit" ], @@ -13030,7 +13030,7 @@ "lccClassification": [ "TX910.5.W58 A3 1998" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Detroit" ], @@ -13311,7 +13311,7 @@ "Yongi, oder, Die Kunst, einen Toast zu essen / Young-Nam Lee-Schmidt." ], "uri": "pb99107169653506421", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Berlin]" ], @@ -13602,7 +13602,7 @@ "lccClassification": [ "PS3555.D99 T63 1998" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -13868,7 +13868,7 @@ "A toast to freedom [microform] : New York celebrates Evacuation Day." ], "uri": "b10861042", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], diff --git a/test/fixtures/query-8b22e804507ed10a7e50fd6d4bdbf310.json b/test/fixtures/query-8b22e804507ed10a7e50fd6d4bdbf310.json index e8f82de..74de15a 100644 --- a/test/fixtures/query-8b22e804507ed10a7e50fd6d4bdbf310.json +++ b/test/fixtures/query-8b22e804507ed10a7e50fd6d4bdbf310.json @@ -180,7 +180,7 @@ "Toast / by Raquel Pelzel ; photographs by Evan Sung." ], "uri": "b20970375", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -420,7 +420,7 @@ "Toast" ], "uri": "b17982563", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ithaca, NY: Julia Featheringill, 2001" ], @@ -656,7 +656,7 @@ "Toast / Józef Hen." ], "uri": "b11361121", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Krakow" ], @@ -900,7 +900,7 @@ "Toast [motion picture] / Earth Chronicles presents ; a film by Daniel Hoffman ... [et al.]." ], "uri": "b17759113", - "recordTypeId": "g", + "formatId": "g", "placeOfPublication": [ "[S.l.]" ], @@ -1158,7 +1158,7 @@ "Toast / Józef Hen." ], "uri": "pb9928178733506421", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Kraków" ], @@ -1426,7 +1426,7 @@ "Toast / by Richard Bean." ], "uri": "pb9928479343506421", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -1679,7 +1679,7 @@ "lccClassification": [ "PG7158.H43 T6" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Kraków" ], @@ -1919,7 +1919,7 @@ "ToasT (Andersen), 2014/15 : reviews." ], "uri": "b21290385", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:m", @@ -2157,7 +2157,7 @@ "Toast (Bean), 2015/16 : reviews." ], "uri": "b21501833", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:m", @@ -2393,7 +2393,7 @@ "Toast book / compiled and illustrated by Clare Victor Dwiggins." ], "uri": "b14570561", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Philadelphia" ], @@ -2541,7 +2541,7 @@ "Roma's Toast (song) : clippings" ], "uri": "b16671423", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:m", @@ -2733,7 +2733,7 @@ "numElectronicResources": [ 0 ], - "recordTypeId": " ", + "formatId": " ", "identifierV2": [ { "type": "bf:ShelfMark", @@ -3008,7 +3008,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Holicong, PA" ], @@ -3211,7 +3211,7 @@ "Toast za przodkow" ], "uri": "b18576841", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wolowiec : Czarne, 2010" ], @@ -3398,7 +3398,7 @@ "Toast za przodków / Wojciech Górecki." ], "uri": "b18806309", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wołowiec" ], @@ -3682,7 +3682,7 @@ "lccClassification": [ "PG7223.I78 T627 2010" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wołowiec" ], @@ -3955,7 +3955,7 @@ "lccClassification": [ "PR9387.9.O3115 T63 2002" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Nigeria" ], @@ -4210,7 +4210,7 @@ "French Toast (Musical group) : clippings" ], "uri": "b16664914", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:m", @@ -4448,7 +4448,7 @@ "Gustaf's toast." ], "uri": "b12269299", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:a", @@ -4623,7 +4623,7 @@ "French toast [sound recording]." ], "uri": "b15876151", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York, [N.Y.]" ], @@ -4889,7 +4889,7 @@ "Burnt toast." ], "uri": "b11302028", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Los Angeles, Calif." ], @@ -5132,7 +5132,7 @@ "Tiger Toast / Nika Pfeifer." ], "uri": "b23469693", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Klagenfurt" ], @@ -5317,7 +5317,7 @@ "The toast / J.P.S. [John Philip Sousa]." ], "uri": "b11373666", - "recordTypeId": "d", + "formatId": "d", "issuance": [ { "id": "urn:biblevel:m", @@ -5551,7 +5551,7 @@ "On toast / by W. Pett Ridge." ], "uri": "b19650848", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -5817,7 +5817,7 @@ "lccClassification": [ "DK267 .B27" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Roma" ], @@ -6026,7 +6026,7 @@ "lccClassification": [ "PZ7.W7674 Fr 2016" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto, Ontario, Canada" ], @@ -6315,7 +6315,7 @@ "The toast / words by Frank Warren & R.H. Burnside ; music by John Philip Sousa." ], "uri": "b11373667", - "recordTypeId": "d", + "formatId": "d", "issuance": [ { "id": "urn:biblevel:m", @@ -6570,7 +6570,7 @@ "The toast / words by R.J. Burnside ; music by John Philip Sousa." ], "uri": "b11373665", - "recordTypeId": "d", + "formatId": "d", "issuance": [ { "id": "urn:biblevel:m", @@ -6839,7 +6839,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[Place of publication not identified] : New York, N.Y." ], @@ -7130,7 +7130,7 @@ "Toast of the town. 1951-09-09, the Oscar Hammerstein story, pt. 1 [sound recording] / CBS-TV ; written by Ed Sullivan." ], "uri": "b19635190", - "recordTypeId": "j", + "formatId": "j", "issuance": [ { "id": "urn:biblevel:m", @@ -7436,7 +7436,7 @@ "Toast of the town. 1951-09-16, the Oscar Hammerstein story, pt. 2 [sound recording] / CBS-TV ; written by Ed Sullivan." ], "uri": "b19635203", - "recordTypeId": "j", + "formatId": "j", "issuance": [ { "id": "urn:biblevel:m", @@ -7685,7 +7685,7 @@ "Angleworms on toast, by MacKinlay Kantor. Illustrated by Kurt Wiese." ], "uri": "b13060795", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -7964,7 +7964,7 @@ "Carmen. Toreador song [sound recording] = [Votre toast] / Bizet." ], "uri": "b16436832", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Camden, NJ" ], @@ -8205,7 +8205,7 @@ "lccClassification": [ "PZ7.K128 An5" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -8464,7 +8464,7 @@ "Mein Lieblings-Toast : 300 heisse Tips für Toast-Fans / Gabriele Heindel." ], "uri": "b12004445", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Leoben" ], @@ -8767,7 +8767,7 @@ "lccClassification": [ "TX769 .L39 2022" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -9074,7 +9074,7 @@ "A musical toast / Leonard Bernstein." ], "uri": "b10981311", - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[United States]" ], @@ -9312,7 +9312,7 @@ "The royal toast / by \"Australianus\"." ], "uri": "b13131869", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Sydney [N.S.W.]" ], @@ -9598,7 +9598,7 @@ "lccClassification": [ "PS3531.O936 A83 1989" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -9869,7 +9869,7 @@ "lccClassification": [ "PR6113.I5865 S39 2022" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Cardigan" ], @@ -10104,7 +10104,7 @@ "numAvailable": [ 2 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Albany" ], @@ -10423,7 +10423,7 @@ "Toast of the town (Television program) : photographs, 1951-1953." ], "uri": "b22067378", - "recordTypeId": "k", + "formatId": "k", "issuance": [ { "id": "urn:biblevel:c", @@ -10686,7 +10686,7 @@ "lccClassification": [ "PR9387.9.O3115 T63 2002" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Nigeria" ], @@ -10966,7 +10966,7 @@ "The toast of '45 [sound recording] / Sammi Smith." ], "uri": "b16019290", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Nashville, Tenn." ], @@ -11230,7 +11230,7 @@ "Burnt toast; a novel." ], "uri": "b10038245", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -11485,7 +11485,7 @@ "A toast to tomorrow." ], "uri": "b13147602", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Garden City, N.Y." ], @@ -11729,7 +11729,7 @@ "Gustafs skål (Gustave's toast)." ], "uri": "b12114589", - "recordTypeId": "c", + "formatId": "c", "issuance": [ { "id": "urn:biblevel:a", @@ -11912,7 +11912,7 @@ "lccClassification": [ "PR9199.4.P34 T63 2018" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto, Canada" ], @@ -12189,7 +12189,7 @@ "A toast to Broadway [sound recording] / 101 Strings." ], "uri": "b15877453", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Burbank, Calif." ], @@ -12467,7 +12467,7 @@ "url": "http://WU9FB9WH4A.search.serialssolutions.com/?V=1.0&L=WU9FB9WH4A&S=JCs&C=TC0001177068&T=marc&tab=BOOKS" } ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Alexandria, VA" ], diff --git a/test/fixtures/query-b4e216cc162208dbe0e94851b1bb79ee.json b/test/fixtures/query-b4e216cc162208dbe0e94851b1bb79ee.json index ed1a254..ad04202 100644 --- a/test/fixtures/query-b4e216cc162208dbe0e94851b1bb79ee.json +++ b/test/fixtures/query-b4e216cc162208dbe0e94851b1bb79ee.json @@ -180,7 +180,7 @@ "Toast / by Raquel Pelzel ; photographs by Evan Sung." ], "uri": "b20970375", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -420,7 +420,7 @@ "Toast" ], "uri": "b17982563", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ithaca, NY: Julia Featheringill, 2001" ], @@ -656,7 +656,7 @@ "Toast / Józef Hen." ], "uri": "b11361121", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Krakow" ], @@ -900,7 +900,7 @@ "Toast [motion picture] / Earth Chronicles presents ; a film by Daniel Hoffman ... [et al.]." ], "uri": "b17759113", - "recordTypeId": "g", + "formatId": "g", "placeOfPublication": [ "[S.l.]" ], @@ -1158,7 +1158,7 @@ "Toast / Józef Hen." ], "uri": "pb9928178733506421", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Kraków" ], @@ -1426,7 +1426,7 @@ "Toast / by Richard Bean." ], "uri": "pb9928479343506421", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -1679,7 +1679,7 @@ "lccClassification": [ "PG7158.H43 T6" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Kraków" ], @@ -1919,7 +1919,7 @@ "ToasT (Andersen), 2014/15 : reviews." ], "uri": "b21290385", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:m", @@ -2157,7 +2157,7 @@ "Toast (Bean), 2015/16 : reviews." ], "uri": "b21501833", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:m", @@ -2393,7 +2393,7 @@ "Toast book / compiled and illustrated by Clare Victor Dwiggins." ], "uri": "b14570561", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Philadelphia" ], @@ -2541,7 +2541,7 @@ "Roma's Toast (song) : clippings" ], "uri": "b16671423", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:m", @@ -2733,7 +2733,7 @@ "numElectronicResources": [ 0 ], - "recordTypeId": " ", + "formatId": " ", "identifierV2": [ { "type": "bf:ShelfMark", @@ -2931,7 +2931,7 @@ "Toast za przodkow" ], "uri": "b18576841", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wolowiec : Czarne, 2010" ], @@ -3118,7 +3118,7 @@ "Toast za przodków / Wojciech Górecki." ], "uri": "b18806309", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wołowiec" ], @@ -3406,7 +3406,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Holicong, PA" ], @@ -3682,7 +3682,7 @@ "lccClassification": [ "PG7223.I78 T627 2010" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wołowiec" ], @@ -3955,7 +3955,7 @@ "lccClassification": [ "PR9387.9.O3115 T63 2002" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Nigeria" ], @@ -4210,7 +4210,7 @@ "French Toast (Musical group) : clippings" ], "uri": "b16664914", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:m", @@ -4448,7 +4448,7 @@ "Gustaf's toast." ], "uri": "b12269299", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:a", @@ -4614,7 +4614,7 @@ "Burnt toast." ], "uri": "b11302028", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Los Angeles, Calif." ], @@ -4886,7 +4886,7 @@ "French toast [sound recording]." ], "uri": "b15876151", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York, [N.Y.]" ], @@ -5155,7 +5155,7 @@ "lccClassification": [ "DK267 .B27" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Roma" ], @@ -5310,7 +5310,7 @@ "Tiger Toast / Nika Pfeifer." ], "uri": "b23469693", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Klagenfurt" ], @@ -5495,7 +5495,7 @@ "The toast / J.P.S. [John Philip Sousa]." ], "uri": "b11373666", - "recordTypeId": "d", + "formatId": "d", "issuance": [ { "id": "urn:biblevel:m", @@ -5729,7 +5729,7 @@ "On toast / by W. Pett Ridge." ], "uri": "b19650848", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -6026,7 +6026,7 @@ "lccClassification": [ "PZ7.W7674 Fr 2016" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto, Ontario, Canada" ], @@ -6315,7 +6315,7 @@ "The toast / words by Frank Warren & R.H. Burnside ; music by John Philip Sousa." ], "uri": "b11373667", - "recordTypeId": "d", + "formatId": "d", "issuance": [ { "id": "urn:biblevel:m", @@ -6570,7 +6570,7 @@ "The toast / words by R.J. Burnside ; music by John Philip Sousa." ], "uri": "b11373665", - "recordTypeId": "d", + "formatId": "d", "issuance": [ { "id": "urn:biblevel:m", @@ -6839,7 +6839,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[Place of publication not identified] : New York, N.Y." ], @@ -7130,7 +7130,7 @@ "Toast of the town. 1951-09-09, the Oscar Hammerstein story, pt. 1 [sound recording] / CBS-TV ; written by Ed Sullivan." ], "uri": "b19635190", - "recordTypeId": "j", + "formatId": "j", "issuance": [ { "id": "urn:biblevel:m", @@ -7436,7 +7436,7 @@ "Toast of the town. 1951-09-16, the Oscar Hammerstein story, pt. 2 [sound recording] / CBS-TV ; written by Ed Sullivan." ], "uri": "b19635203", - "recordTypeId": "j", + "formatId": "j", "issuance": [ { "id": "urn:biblevel:m", @@ -7719,7 +7719,7 @@ "Carmen. Toreador song [sound recording] = [Votre toast] / Bizet." ], "uri": "b16436832", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Camden, NJ" ], @@ -7980,7 +7980,7 @@ "Mein Lieblings-Toast : 300 heisse Tips für Toast-Fans / Gabriele Heindel." ], "uri": "b12004445", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Leoben" ], @@ -8281,7 +8281,7 @@ "A musical toast / Leonard Bernstein." ], "uri": "b10981311", - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[United States]" ], @@ -8519,7 +8519,7 @@ "The royal toast / by \"Australianus\"." ], "uri": "b13131869", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Sydney [N.S.W.]" ], @@ -8770,7 +8770,7 @@ "Angleworms on toast, by MacKinlay Kantor. Illustrated by Kurt Wiese." ], "uri": "b13060795", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -9050,7 +9050,7 @@ "lccClassification": [ "PS3531.O936 A83 1989" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -9289,7 +9289,7 @@ "lccClassification": [ "PZ7.K128 An5" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -9560,7 +9560,7 @@ "lccClassification": [ "PR6113.I5865 S39 2022" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Cardigan" ], @@ -9795,7 +9795,7 @@ "numAvailable": [ 2 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Albany" ], @@ -10165,7 +10165,7 @@ "lccClassification": [ "TX769 .L39 2022" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -10423,7 +10423,7 @@ "Toast of the town (Television program) : photographs, 1951-1953." ], "uri": "b22067378", - "recordTypeId": "k", + "formatId": "k", "issuance": [ { "id": "urn:biblevel:c", @@ -10686,7 +10686,7 @@ "lccClassification": [ "PR9387.9.O3115 T63 2002" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Nigeria" ], @@ -10942,7 +10942,7 @@ "Burnt toast; a novel." ], "uri": "b10038245", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -11197,7 +11197,7 @@ "A toast to tomorrow." ], "uri": "b13147602", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Garden City, N.Y." ], @@ -11441,7 +11441,7 @@ "Gustafs skål (Gustave's toast)." ], "uri": "b12114589", - "recordTypeId": "c", + "formatId": "c", "issuance": [ { "id": "urn:biblevel:a", @@ -11624,7 +11624,7 @@ "lccClassification": [ "PR9199.4.P34 T63 2018" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto, Canada" ], @@ -11896,7 +11896,7 @@ "url": "http://WU9FB9WH4A.search.serialssolutions.com/?V=1.0&L=WU9FB9WH4A&S=JCs&C=TC0001177068&T=marc&tab=BOOKS" } ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Alexandria, VA" ], @@ -12072,7 +12072,7 @@ "A toast to Broadway [sound recording] / 101 Strings." ], "uri": "b15877453", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Burbank, Calif." ], @@ -12338,7 +12338,7 @@ "A toast to Beauty." ], "uri": "b12227432", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:b", diff --git a/test/fixtures/query-bf6caf242f418048cb7522997f55f4fa.json b/test/fixtures/query-bf6caf242f418048cb7522997f55f4fa.json index 714bf27..6822cfe 100644 --- a/test/fixtures/query-bf6caf242f418048cb7522997f55f4fa.json +++ b/test/fixtures/query-bf6caf242f418048cb7522997f55f4fa.json @@ -137,7 +137,7 @@ "Religion--love or hate? / by David Kirshenbaum." ], "uri": "b10022950", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], diff --git a/test/fixtures/query-dc67efef11246bef8987507fdce8e2f5.json b/test/fixtures/query-dc67efef11246bef8987507fdce8e2f5.json index be99654..8416981 100644 --- a/test/fixtures/query-dc67efef11246bef8987507fdce8e2f5.json +++ b/test/fixtures/query-dc67efef11246bef8987507fdce8e2f5.json @@ -180,7 +180,7 @@ "Toast / by Raquel Pelzel ; photographs by Evan Sung." ], "uri": "b20970375", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -464,7 +464,7 @@ "Toast / by Richard Bean." ], "uri": "pb9928479343506421", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -742,7 +742,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Holicong, PA" ], @@ -1022,7 +1022,7 @@ "Toast za przodków / Wojciech Górecki." ], "uri": "b18806309", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wołowiec" ], @@ -1306,7 +1306,7 @@ "lccClassification": [ "PG7223.I78 T627 2010" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wołowiec" ], @@ -1579,7 +1579,7 @@ "lccClassification": [ "PR9387.9.O3115 T63 2002" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Nigeria" ], @@ -1838,7 +1838,7 @@ "Tiger Toast / Nika Pfeifer." ], "uri": "b23469693", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Klagenfurt" ], @@ -2047,7 +2047,7 @@ "lccClassification": [ "PZ7.W7674 Fr 2016" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto, Ontario, Canada" ], @@ -2337,7 +2337,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[Place of publication not identified] : New York, N.Y." ], @@ -2586,7 +2586,7 @@ "Mein Lieblings-Toast : 300 heisse Tips für Toast-Fans / Gabriele Heindel." ], "uri": "b12004445", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Leoben" ], @@ -2889,7 +2889,7 @@ "lccClassification": [ "TX769 .L39 2022" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -3196,7 +3196,7 @@ "A musical toast / Leonard Bernstein." ], "uri": "b10981311", - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[United States]" ], @@ -3482,7 +3482,7 @@ "lccClassification": [ "PS3531.O936 A83 1989" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -3753,7 +3753,7 @@ "lccClassification": [ "PR6113.I5865 S39 2022" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Cardigan" ], @@ -4020,7 +4020,7 @@ "lccClassification": [ "PR9387.9.O3115 T63 2002" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Nigeria" ], @@ -4306,7 +4306,7 @@ "lccClassification": [ "PR9199.4.P34 T63 2018" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto, Canada" ], @@ -4578,7 +4578,7 @@ "url": "http://WU9FB9WH4A.search.serialssolutions.com/?V=1.0&L=WU9FB9WH4A&S=JCs&C=TC0001177068&T=marc&tab=BOOKS" } ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Alexandria, VA" ], @@ -4737,7 +4737,7 @@ "A toast to Beauty." ], "uri": "b12227432", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:b", @@ -5025,7 +5025,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=028948163632" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Australia]" ], @@ -5193,7 +5193,7 @@ "lccClassification": [ "PR9387.9.T37 T63 1991" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Nigeria?]" ], @@ -5479,7 +5479,7 @@ "lccClassification": [ "PR9369.4.C54 M87 2008" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Northlands [South Africa]" ], @@ -5751,7 +5751,7 @@ "Making toast : a family story / Roger Rosenblatt." ], "uri": "b22185434", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -6022,7 +6022,7 @@ "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433066644109" } ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -6396,7 +6396,7 @@ "lccClassification": [ "PZ7.E2815 Bu 1997" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Boston" ], @@ -6684,7 +6684,7 @@ "lccClassification": [ "DT515.45.I348 F384 2008" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ilesa" ], @@ -6968,7 +6968,7 @@ "lccClassification": [ "TX714 .G53155 2012" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Crows Nest, N.S.W." ], @@ -7287,7 +7287,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Nantes]" ], @@ -7563,7 +7563,7 @@ "lccClassification": [ "PZ7.S84895 If 1999" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -7880,7 +7880,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New Delhi" ], @@ -8161,7 +8161,7 @@ "lccClassification": [ "TX357 .S53 2003" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London ; New York" ], @@ -8461,7 +8461,7 @@ "lccClassification": [ "PR9387.9.G55 T63 2006" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Oyo State, Nigeria" ], @@ -8784,7 +8784,7 @@ "lccClassification": [ "M1613.3.A32 W4 1994" ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "Victoria, British Columbia" ], @@ -9060,7 +9060,7 @@ "lccClassification": [ "PN1991.3.G7 B4 2006" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -9339,7 +9339,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto" ], @@ -9594,7 +9594,7 @@ "numAvailable": [ 0 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York, NY :" ], @@ -9786,7 +9786,7 @@ "lccClassification": [ "M317.S35 F74 2005" ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "King of Prussia, PA" ], @@ -10034,7 +10034,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Harare, Zimbabwe :" ], @@ -10270,7 +10270,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Sidney, B.C." ], @@ -10520,7 +10520,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Tarset" ], @@ -10807,7 +10807,7 @@ "lccClassification": [ "PN56.D8 B6 1997x" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -11071,7 +11071,7 @@ "lccClassification": [ "PS3565.L4575 T63 2009" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Minneapolis, Minn." ], @@ -11467,7 +11467,7 @@ "lccClassification": [ "HV5292 .G67 2016" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -11766,7 +11766,7 @@ "lccClassification": [ "TX910.5.W58 A3 1998" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Detroit" ], @@ -12043,7 +12043,7 @@ "Ricordi di una stanza che scompare = Mälestused kaduvast toast / Gregor Elm." ], "uri": "b23014874", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Püünsi" ], @@ -12363,7 +12363,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Detroit" ], @@ -12625,7 +12625,7 @@ "lccClassification": [ "PS3555.D99 T63 1998" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -13030,7 +13030,7 @@ "lccClassification": [ "TX910.5.W58 A3 1998" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Detroit" ], @@ -13311,7 +13311,7 @@ "Yongi, oder, Die Kunst, einen Toast zu essen / Young-Nam Lee-Schmidt." ], "uri": "pb99107169653506421", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Berlin]" ], @@ -13602,7 +13602,7 @@ "lccClassification": [ "PS3555.D99 T63 1998" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -13868,7 +13868,7 @@ "A toast to freedom [microform] : New York celebrates Evacuation Day." ], "uri": "b10861042", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], diff --git a/test/fixtures/query-de2df871a8da81cc031afab8db724ed3.json b/test/fixtures/query-de2df871a8da81cc031afab8db724ed3.json index ca67f91..21a19c6 100644 --- a/test/fixtures/query-de2df871a8da81cc031afab8db724ed3.json +++ b/test/fixtures/query-de2df871a8da81cc031afab8db724ed3.json @@ -172,7 +172,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[Place of publication not identified] : New York, N.Y." ], @@ -457,7 +457,7 @@ "A musical toast / Leonard Bernstein." ], "uri": "b10981311", - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[United States]" ], @@ -743,7 +743,7 @@ "lccClassification": [ "PS3531.O936 A83 1989" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -1007,7 +1007,7 @@ "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433066644109" } ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -1381,7 +1381,7 @@ "A toast to freedom [microform] : New York celebrates Evacuation Day." ], "uri": "b10861042", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -1779,7 +1779,7 @@ "A Toast to freedom : New York celebrates Evacuation Day." ], "uri": "b18106748", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -2047,7 +2047,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Warszawa" ], @@ -2357,7 +2357,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "St. Paul, MN" ], @@ -2734,7 +2734,7 @@ "url": "http://www.imdb.com/title/tt0073158/" } ], - "recordTypeId": "g", + "formatId": "g", "placeOfPublication": [ "New York, NY" ], @@ -3023,7 +3023,7 @@ "Mad dogs and Englishmen [sound recording] : the complete recordings, vol. 2 : 1932-1936 / Noël Coward." ], "uri": "b15557108", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[S.l.]" ], @@ -3530,7 +3530,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=090266019021" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York, NY" ], @@ -3758,7 +3758,7 @@ "J. Papp at Columbia University [sound recording] : [speech and performance] / [toast and performance by J. Papp ; music arranged and conducted by Stanley Silverman.]" ], "uri": "b16645835", - "recordTypeId": "j", + "formatId": "j", "titleAlt": [ "Joseph Papp at Columbia", "New York Shakespeare Festival recordings collection." @@ -3928,7 +3928,7 @@ "Omnibus." ], "uri": "b15316446", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New Rochelle, N.Y." ], @@ -4267,7 +4267,7 @@ "lccClassification": [ "M1630.18 .V65 2018" ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Atlanta, Georgia]" ], @@ -4822,7 +4822,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=886970740920" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[New York]" ], @@ -5599,7 +5599,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=0094637087954" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York, NY" ], @@ -6378,7 +6378,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=0724358621150" } ], - "recordTypeId": "j", + "formatId": "j", "issuance": [ { "id": "urn:biblevel:m", @@ -6616,7 +6616,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Atlanta, Georgia]" ], @@ -6928,7 +6928,7 @@ "numAvailable": [ 0 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Lincoln" ], @@ -7274,7 +7274,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Salt Lake City" ], @@ -7578,7 +7578,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Roma" ], @@ -7906,7 +7906,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "London" ], @@ -8232,7 +8232,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Copenhagen, Denmark" ], @@ -8565,7 +8565,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Hayes, Middlesex, England" ], @@ -8854,7 +8854,7 @@ "numAvailable": [ 4 ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "London" ], diff --git a/test/fixtures/query-e3f9fad2402defa955635684d5661a66.json b/test/fixtures/query-e3f9fad2402defa955635684d5661a66.json index 7c137a6..5c326fe 100644 --- a/test/fixtures/query-e3f9fad2402defa955635684d5661a66.json +++ b/test/fixtures/query-e3f9fad2402defa955635684d5661a66.json @@ -180,7 +180,7 @@ "Toast / by Raquel Pelzel ; photographs by Evan Sung." ], "uri": "b20970375", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -420,7 +420,7 @@ "Toast" ], "uri": "b17982563", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ithaca, NY: Julia Featheringill, 2001" ], @@ -656,7 +656,7 @@ "Toast / Józef Hen." ], "uri": "b11361121", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Krakow" ], @@ -900,7 +900,7 @@ "Toast [motion picture] / Earth Chronicles presents ; a film by Daniel Hoffman ... [et al.]." ], "uri": "b17759113", - "recordTypeId": "g", + "formatId": "g", "placeOfPublication": [ "[S.l.]" ], @@ -1158,7 +1158,7 @@ "Toast / Józef Hen." ], "uri": "pb9928178733506421", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Kraków" ], @@ -1426,7 +1426,7 @@ "Toast / by Richard Bean." ], "uri": "pb9928479343506421", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -1679,7 +1679,7 @@ "lccClassification": [ "PG7158.H43 T6" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Kraków" ], @@ -1919,7 +1919,7 @@ "ToasT (Andersen), 2014/15 : reviews." ], "uri": "b21290385", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:m", @@ -2157,7 +2157,7 @@ "Toast (Bean), 2015/16 : reviews." ], "uri": "b21501833", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:m", @@ -2393,7 +2393,7 @@ "Toast book / compiled and illustrated by Clare Victor Dwiggins." ], "uri": "b14570561", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Philadelphia" ], @@ -2500,7 +2500,7 @@ "numElectronicResources": [ 0 ], - "recordTypeId": " ", + "formatId": " ", "identifierV2": [ { "type": "bf:ShelfMark", @@ -2736,7 +2736,7 @@ "Roma's Toast (song) : clippings" ], "uri": "b16671423", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:m", @@ -2931,7 +2931,7 @@ "Toast za przodkow" ], "uri": "b18576841", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wolowiec : Czarne, 2010" ], @@ -3118,7 +3118,7 @@ "Toast za przodków / Wojciech Górecki." ], "uri": "b18806309", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wołowiec" ], @@ -3406,7 +3406,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Holicong, PA" ], @@ -3682,7 +3682,7 @@ "lccClassification": [ "PG7223.I78 T627 2010" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wołowiec" ], @@ -3955,7 +3955,7 @@ "lccClassification": [ "PR9387.9.O3115 T63 2002" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Nigeria" ], @@ -4215,7 +4215,7 @@ "Gustaf's toast." ], "uri": "b12269299", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:a", @@ -4390,7 +4390,7 @@ "French toast [sound recording]." ], "uri": "b15876151", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York, [N.Y.]" ], @@ -4636,7 +4636,7 @@ "Tiger Toast / Nika Pfeifer." ], "uri": "b23469693", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Klagenfurt" ], @@ -4821,7 +4821,7 @@ "The toast / J.P.S. [John Philip Sousa]." ], "uri": "b11373666", - "recordTypeId": "d", + "formatId": "d", "issuance": [ { "id": "urn:biblevel:m", @@ -5055,7 +5055,7 @@ "On toast / by W. Pett Ridge." ], "uri": "b19650848", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -5294,7 +5294,7 @@ "French Toast (Musical group) : clippings" ], "uri": "b16664914", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:m", @@ -5551,7 +5551,7 @@ "Burnt toast." ], "uri": "b11302028", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Los Angeles, Calif." ], @@ -5848,7 +5848,7 @@ "lccClassification": [ "PZ7.W7674 Fr 2016" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto, Ontario, Canada" ], @@ -6124,7 +6124,7 @@ "lccClassification": [ "DK267 .B27" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Roma" ], @@ -6315,7 +6315,7 @@ "The toast / words by Frank Warren & R.H. Burnside ; music by John Philip Sousa." ], "uri": "b11373667", - "recordTypeId": "d", + "formatId": "d", "issuance": [ { "id": "urn:biblevel:m", @@ -6570,7 +6570,7 @@ "The toast / words by R.J. Burnside ; music by John Philip Sousa." ], "uri": "b11373665", - "recordTypeId": "d", + "formatId": "d", "issuance": [ { "id": "urn:biblevel:m", @@ -6839,7 +6839,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[Place of publication not identified] : New York, N.Y." ], @@ -7130,7 +7130,7 @@ "Toast of the town. 1951-09-09, the Oscar Hammerstein story, pt. 1 [sound recording] / CBS-TV ; written by Ed Sullivan." ], "uri": "b19635190", - "recordTypeId": "j", + "formatId": "j", "issuance": [ { "id": "urn:biblevel:m", @@ -7436,7 +7436,7 @@ "Toast of the town. 1951-09-16, the Oscar Hammerstein story, pt. 2 [sound recording] / CBS-TV ; written by Ed Sullivan." ], "uri": "b19635203", - "recordTypeId": "j", + "formatId": "j", "issuance": [ { "id": "urn:biblevel:m", @@ -7719,7 +7719,7 @@ "Carmen. Toreador song [sound recording] = [Votre toast] / Bizet." ], "uri": "b16436832", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Camden, NJ" ], @@ -7969,7 +7969,7 @@ "Angleworms on toast, by MacKinlay Kantor. Illustrated by Kurt Wiese." ], "uri": "b13060795", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -8205,7 +8205,7 @@ "lccClassification": [ "PZ7.K128 An5" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -8464,7 +8464,7 @@ "Mein Lieblings-Toast : 300 heisse Tips für Toast-Fans / Gabriele Heindel." ], "uri": "b12004445", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Leoben" ], @@ -8767,7 +8767,7 @@ "lccClassification": [ "TX769 .L39 2022" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -9074,7 +9074,7 @@ "A musical toast / Leonard Bernstein." ], "uri": "b10981311", - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[United States]" ], @@ -9360,7 +9360,7 @@ "lccClassification": [ "PS3531.O936 A83 1989" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -9595,7 +9595,7 @@ "The royal toast / by \"Australianus\"." ], "uri": "b13131869", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Sydney [N.S.W.]" ], @@ -9869,7 +9869,7 @@ "lccClassification": [ "PR6113.I5865 S39 2022" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Cardigan" ], @@ -10104,7 +10104,7 @@ "numAvailable": [ 2 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Albany" ], @@ -10423,7 +10423,7 @@ "Toast of the town (Television program) : photographs, 1951-1953." ], "uri": "b22067378", - "recordTypeId": "k", + "formatId": "k", "issuance": [ { "id": "urn:biblevel:c", @@ -10686,7 +10686,7 @@ "lccClassification": [ "PR9387.9.O3115 T63 2002" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Nigeria" ], @@ -10942,7 +10942,7 @@ "Burnt toast; a novel." ], "uri": "b10038245", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -11197,7 +11197,7 @@ "A toast to tomorrow." ], "uri": "b13147602", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Garden City, N.Y." ], @@ -11441,7 +11441,7 @@ "Gustafs skål (Gustave's toast)." ], "uri": "b12114589", - "recordTypeId": "c", + "formatId": "c", "issuance": [ { "id": "urn:biblevel:a", @@ -11624,7 +11624,7 @@ "lccClassification": [ "PR9199.4.P34 T63 2018" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto, Canada" ], @@ -11901,7 +11901,7 @@ "A toast to Broadway [sound recording] / 101 Strings." ], "uri": "b15877453", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Burbank, Calif." ], @@ -12170,7 +12170,7 @@ "lccClassification": [ "D413.G3 A35" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Indianapolis, New York" ], @@ -12435,7 +12435,7 @@ "url": "http://WU9FB9WH4A.search.serialssolutions.com/?V=1.0&L=WU9FB9WH4A&S=JCs&C=TC0001177068&T=marc&tab=BOOKS" } ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Alexandria, VA" ], diff --git a/test/fixtures/query-eb7a40606aa06703bc736caeea1c35f4.json b/test/fixtures/query-eb7a40606aa06703bc736caeea1c35f4.json index d73abc2..0e7012c 100644 --- a/test/fixtures/query-eb7a40606aa06703bc736caeea1c35f4.json +++ b/test/fixtures/query-eb7a40606aa06703bc736caeea1c35f4.json @@ -180,7 +180,7 @@ "Toast / by Raquel Pelzel ; photographs by Evan Sung." ], "uri": "b20970375", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -464,7 +464,7 @@ "Toast / by Richard Bean." ], "uri": "pb9928479343506421", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -742,7 +742,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Holicong, PA" ], @@ -1022,7 +1022,7 @@ "Toast za przodków / Wojciech Górecki." ], "uri": "b18806309", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wołowiec" ], @@ -1306,7 +1306,7 @@ "lccClassification": [ "PG7223.I78 T627 2010" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wołowiec" ], @@ -1579,7 +1579,7 @@ "lccClassification": [ "PR9387.9.O3115 T63 2002" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Nigeria" ], @@ -1838,7 +1838,7 @@ "Tiger Toast / Nika Pfeifer." ], "uri": "b23469693", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Klagenfurt" ], @@ -2047,7 +2047,7 @@ "lccClassification": [ "PZ7.W7674 Fr 2016" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto, Ontario, Canada" ], @@ -2337,7 +2337,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[Place of publication not identified] : New York, N.Y." ], @@ -2586,7 +2586,7 @@ "Mein Lieblings-Toast : 300 heisse Tips für Toast-Fans / Gabriele Heindel." ], "uri": "b12004445", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Leoben" ], @@ -2889,7 +2889,7 @@ "lccClassification": [ "TX769 .L39 2022" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -3196,7 +3196,7 @@ "A musical toast / Leonard Bernstein." ], "uri": "b10981311", - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[United States]" ], @@ -3482,7 +3482,7 @@ "lccClassification": [ "PS3531.O936 A83 1989" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -3753,7 +3753,7 @@ "lccClassification": [ "PR6113.I5865 S39 2022" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Cardigan" ], @@ -4020,7 +4020,7 @@ "lccClassification": [ "PR9387.9.O3115 T63 2002" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Nigeria" ], @@ -4306,7 +4306,7 @@ "lccClassification": [ "PR9199.4.P34 T63 2018" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto, Canada" ], @@ -4578,7 +4578,7 @@ "url": "http://WU9FB9WH4A.search.serialssolutions.com/?V=1.0&L=WU9FB9WH4A&S=JCs&C=TC0001177068&T=marc&tab=BOOKS" } ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Alexandria, VA" ], @@ -4737,7 +4737,7 @@ "A toast to Beauty." ], "uri": "b12227432", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:b", @@ -5025,7 +5025,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=028948163632" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Australia]" ], @@ -5193,7 +5193,7 @@ "lccClassification": [ "PR9387.9.T37 T63 1991" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Nigeria?]" ], @@ -5479,7 +5479,7 @@ "lccClassification": [ "PR9369.4.C54 M87 2008" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Northlands [South Africa]" ], @@ -5751,7 +5751,7 @@ "Making toast : a family story / Roger Rosenblatt." ], "uri": "b22185434", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -6022,7 +6022,7 @@ "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433066644109" } ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -6396,7 +6396,7 @@ "lccClassification": [ "PZ7.E2815 Bu 1997" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Boston" ], @@ -6684,7 +6684,7 @@ "lccClassification": [ "DT515.45.I348 F384 2008" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ilesa" ], @@ -6968,7 +6968,7 @@ "lccClassification": [ "TX714 .G53155 2012" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Crows Nest, N.S.W." ], @@ -7287,7 +7287,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Nantes]" ], @@ -7563,7 +7563,7 @@ "lccClassification": [ "PZ7.S84895 If 1999" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -7880,7 +7880,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New Delhi" ], @@ -8161,7 +8161,7 @@ "lccClassification": [ "TX357 .S53 2003" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London ; New York" ], @@ -8461,7 +8461,7 @@ "lccClassification": [ "PR9387.9.G55 T63 2006" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Oyo State, Nigeria" ], @@ -8784,7 +8784,7 @@ "lccClassification": [ "M1613.3.A32 W4 1994" ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "Victoria, British Columbia" ], @@ -9060,7 +9060,7 @@ "lccClassification": [ "PN1991.3.G7 B4 2006" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -9339,7 +9339,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto" ], @@ -9594,7 +9594,7 @@ "numAvailable": [ 0 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York, NY :" ], @@ -9786,7 +9786,7 @@ "lccClassification": [ "M317.S35 F74 2005" ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "King of Prussia, PA" ], @@ -10034,7 +10034,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Harare, Zimbabwe :" ], @@ -10270,7 +10270,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Sidney, B.C." ], @@ -10520,7 +10520,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Tarset" ], @@ -10807,7 +10807,7 @@ "lccClassification": [ "PN56.D8 B6 1997x" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -11071,7 +11071,7 @@ "lccClassification": [ "PS3565.L4575 T63 2009" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Minneapolis, Minn." ], @@ -11467,7 +11467,7 @@ "lccClassification": [ "HV5292 .G67 2016" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -11766,7 +11766,7 @@ "lccClassification": [ "TX910.5.W58 A3 1998" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Detroit" ], @@ -12043,7 +12043,7 @@ "Ricordi di una stanza che scompare = Mälestused kaduvast toast / Gregor Elm." ], "uri": "b23014874", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Püünsi" ], @@ -12363,7 +12363,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Detroit" ], @@ -12625,7 +12625,7 @@ "lccClassification": [ "PS3555.D99 T63 1998" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -13030,7 +13030,7 @@ "lccClassification": [ "TX910.5.W58 A3 1998" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Detroit" ], @@ -13311,7 +13311,7 @@ "Yongi, oder, Die Kunst, einen Toast zu essen / Young-Nam Lee-Schmidt." ], "uri": "pb99107169653506421", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Berlin]" ], @@ -13602,7 +13602,7 @@ "lccClassification": [ "PS3555.D99 T63 1998" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -13868,7 +13868,7 @@ "A toast to freedom [microform] : New York celebrates Evacuation Day." ], "uri": "b10861042", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], diff --git a/test/fixtures/query-f83c30e2c474b10306888851a21090fc.json b/test/fixtures/query-f83c30e2c474b10306888851a21090fc.json index 8751c93..30f96a4 100644 --- a/test/fixtures/query-f83c30e2c474b10306888851a21090fc.json +++ b/test/fixtures/query-f83c30e2c474b10306888851a21090fc.json @@ -180,7 +180,7 @@ "Toast / by Raquel Pelzel ; photographs by Evan Sung." ], "uri": "b20970375", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -464,7 +464,7 @@ "Toast / by Richard Bean." ], "uri": "pb9928479343506421", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -742,7 +742,7 @@ "Toast za przodków / Wojciech Górecki." ], "uri": "b18806309", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wołowiec" ], @@ -1030,7 +1030,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Holicong, PA" ], @@ -1306,7 +1306,7 @@ "lccClassification": [ "PG7223.I78 T627 2010" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wołowiec" ], @@ -1579,7 +1579,7 @@ "lccClassification": [ "PR9387.9.O3115 T63 2002" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Nigeria" ], @@ -1838,7 +1838,7 @@ "Tiger Toast / Nika Pfeifer." ], "uri": "b23469693", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Klagenfurt" ], @@ -2047,7 +2047,7 @@ "lccClassification": [ "PZ7.W7674 Fr 2016" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto, Ontario, Canada" ], @@ -2337,7 +2337,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[Place of publication not identified] : New York, N.Y." ], @@ -2586,7 +2586,7 @@ "Mein Lieblings-Toast : 300 heisse Tips für Toast-Fans / Gabriele Heindel." ], "uri": "b12004445", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Leoben" ], @@ -2887,7 +2887,7 @@ "A musical toast / Leonard Bernstein." ], "uri": "b10981311", - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[United States]" ], @@ -3173,7 +3173,7 @@ "lccClassification": [ "PS3531.O936 A83 1989" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -3444,7 +3444,7 @@ "lccClassification": [ "PR6113.I5865 S39 2022" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Cardigan" ], @@ -3739,7 +3739,7 @@ "lccClassification": [ "TX769 .L39 2022" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -4020,7 +4020,7 @@ "lccClassification": [ "PR9387.9.O3115 T63 2002" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Nigeria" ], @@ -4306,7 +4306,7 @@ "lccClassification": [ "PR9199.4.P34 T63 2018" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto, Canada" ], @@ -4578,7 +4578,7 @@ "url": "http://WU9FB9WH4A.search.serialssolutions.com/?V=1.0&L=WU9FB9WH4A&S=JCs&C=TC0001177068&T=marc&tab=BOOKS" } ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Alexandria, VA" ], @@ -4737,7 +4737,7 @@ "A toast to Beauty." ], "uri": "b12227432", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:b", @@ -5025,7 +5025,7 @@ "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=028948163632" } ], - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "[Australia]" ], @@ -5193,7 +5193,7 @@ "lccClassification": [ "PR9387.9.T37 T63 1991" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Nigeria?]" ], @@ -5479,7 +5479,7 @@ "lccClassification": [ "PR9369.4.C54 M87 2008" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Northlands [South Africa]" ], @@ -5751,7 +5751,7 @@ "Making toast : a family story / Roger Rosenblatt." ], "uri": "b22185434", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -6022,7 +6022,7 @@ "url": "http://babel.hathitrust.org/cgi/pt?id=nyp.33433066644109" } ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -6396,7 +6396,7 @@ "lccClassification": [ "PZ7.E2815 Bu 1997" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Boston" ], @@ -6684,7 +6684,7 @@ "lccClassification": [ "DT515.45.I348 F384 2008" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ilesa" ], @@ -6968,7 +6968,7 @@ "lccClassification": [ "TX714 .G53155 2012" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Crows Nest, N.S.W." ], @@ -7287,7 +7287,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Nantes]" ], @@ -7563,7 +7563,7 @@ "lccClassification": [ "PZ7.S84895 If 1999" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -7880,7 +7880,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New Delhi" ], @@ -8161,7 +8161,7 @@ "lccClassification": [ "TX357 .S53 2003" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London ; New York" ], @@ -8461,7 +8461,7 @@ "lccClassification": [ "PR9387.9.G55 T63 2006" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Oyo State, Nigeria" ], @@ -8784,7 +8784,7 @@ "lccClassification": [ "M1613.3.A32 W4 1994" ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "Victoria, British Columbia" ], @@ -9060,7 +9060,7 @@ "lccClassification": [ "PN1991.3.G7 B4 2006" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -9353,7 +9353,7 @@ "lccClassification": [ "M317.S35 F74 2005" ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "King of Prussia, PA" ], @@ -9601,7 +9601,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Harare, Zimbabwe :" ], @@ -9837,7 +9837,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Sidney, B.C." ], @@ -10096,7 +10096,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto" ], @@ -10351,7 +10351,7 @@ "numAvailable": [ 0 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York, NY :" ], @@ -10520,7 +10520,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Tarset" ], @@ -10807,7 +10807,7 @@ "lccClassification": [ "PN56.D8 B6 1997x" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -11071,7 +11071,7 @@ "lccClassification": [ "PS3565.L4575 T63 2009" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Minneapolis, Minn." ], @@ -11467,7 +11467,7 @@ "lccClassification": [ "HV5292 .G67 2016" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -11766,7 +11766,7 @@ "lccClassification": [ "TX910.5.W58 A3 1998" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Detroit" ], @@ -12043,7 +12043,7 @@ "Ricordi di una stanza che scompare = Mälestused kaduvast toast / Gregor Elm." ], "uri": "b23014874", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Püünsi" ], @@ -12325,7 +12325,7 @@ "lccClassification": [ "PS3555.D99 T63 1998" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -12734,7 +12734,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Detroit" ], @@ -13030,7 +13030,7 @@ "lccClassification": [ "TX910.5.W58 A3 1998" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Detroit" ], @@ -13311,7 +13311,7 @@ "Yongi, oder, Die Kunst, einen Toast zu essen / Young-Nam Lee-Schmidt." ], "uri": "pb99107169653506421", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "[Berlin]" ], @@ -13602,7 +13602,7 @@ "lccClassification": [ "PS3555.D99 T63 1998" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -13868,7 +13868,7 @@ "A toast to freedom [microform] : New York celebrates Evacuation Day." ], "uri": "b10861042", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], diff --git a/test/fixtures/query-fe1024607fdef5beb0d7a2e771848b7b.json b/test/fixtures/query-fe1024607fdef5beb0d7a2e771848b7b.json index d838f97..d44430c 100644 --- a/test/fixtures/query-fe1024607fdef5beb0d7a2e771848b7b.json +++ b/test/fixtures/query-fe1024607fdef5beb0d7a2e771848b7b.json @@ -180,7 +180,7 @@ "Toast / by Raquel Pelzel ; photographs by Evan Sung." ], "uri": "b20970375", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -420,7 +420,7 @@ "Toast" ], "uri": "b17982563", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ithaca, NY: Julia Featheringill, 2001" ], @@ -656,7 +656,7 @@ "Toast / Józef Hen." ], "uri": "b11361121", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Krakow" ], @@ -900,7 +900,7 @@ "Toast [motion picture] / Earth Chronicles presents ; a film by Daniel Hoffman ... [et al.]." ], "uri": "b17759113", - "recordTypeId": "g", + "formatId": "g", "placeOfPublication": [ "[S.l.]" ], @@ -1158,7 +1158,7 @@ "Toast / Józef Hen." ], "uri": "pb9928178733506421", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Kraków" ], @@ -1426,7 +1426,7 @@ "Toast / by Richard Bean." ], "uri": "pb9928479343506421", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -1679,7 +1679,7 @@ "lccClassification": [ "PG7158.H43 T6" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Kraków" ], @@ -1919,7 +1919,7 @@ "ToasT (Andersen), 2014/15 : reviews." ], "uri": "b21290385", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:m", @@ -2157,7 +2157,7 @@ "Toast (Bean), 2015/16 : reviews." ], "uri": "b21501833", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:m", @@ -2393,7 +2393,7 @@ "Toast book / compiled and illustrated by Clare Victor Dwiggins." ], "uri": "b14570561", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Philadelphia" ], @@ -2500,7 +2500,7 @@ "numElectronicResources": [ 0 ], - "recordTypeId": " ", + "formatId": " ", "identifierV2": [ { "type": "bf:ShelfMark", @@ -2736,7 +2736,7 @@ "Roma's Toast (song) : clippings" ], "uri": "b16671423", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:m", @@ -3008,7 +3008,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Holicong, PA" ], @@ -3211,7 +3211,7 @@ "Toast za przodkow" ], "uri": "b18576841", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wolowiec : Czarne, 2010" ], @@ -3398,7 +3398,7 @@ "Toast za przodków / Wojciech Górecki." ], "uri": "b18806309", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wołowiec" ], @@ -3682,7 +3682,7 @@ "lccClassification": [ "PG7223.I78 T627 2010" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Wołowiec" ], @@ -3955,7 +3955,7 @@ "lccClassification": [ "PR9387.9.O3115 T63 2002" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Nigeria" ], @@ -4215,7 +4215,7 @@ "Gustaf's toast." ], "uri": "b12269299", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:a", @@ -4390,7 +4390,7 @@ "French toast [sound recording]." ], "uri": "b15876151", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "New York, [N.Y.]" ], @@ -4636,7 +4636,7 @@ "Tiger Toast / Nika Pfeifer." ], "uri": "b23469693", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Klagenfurt" ], @@ -4821,7 +4821,7 @@ "The toast / J.P.S. [John Philip Sousa]." ], "uri": "b11373666", - "recordTypeId": "d", + "formatId": "d", "issuance": [ { "id": "urn:biblevel:m", @@ -5055,7 +5055,7 @@ "On toast / by W. Pett Ridge." ], "uri": "b19650848", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "London" ], @@ -5294,7 +5294,7 @@ "French Toast (Musical group) : clippings" ], "uri": "b16664914", - "recordTypeId": "a", + "formatId": "a", "issuance": [ { "id": "urn:biblevel:m", @@ -5551,7 +5551,7 @@ "Burnt toast." ], "uri": "b11302028", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Los Angeles, Calif." ], @@ -5848,7 +5848,7 @@ "lccClassification": [ "PZ7.W7674 Fr 2016" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto, Ontario, Canada" ], @@ -6124,7 +6124,7 @@ "lccClassification": [ "DK267 .B27" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Roma" ], @@ -6315,7 +6315,7 @@ "The toast / words by Frank Warren & R.H. Burnside ; music by John Philip Sousa." ], "uri": "b11373667", - "recordTypeId": "d", + "formatId": "d", "issuance": [ { "id": "urn:biblevel:m", @@ -6570,7 +6570,7 @@ "The toast / words by R.J. Burnside ; music by John Philip Sousa." ], "uri": "b11373665", - "recordTypeId": "d", + "formatId": "d", "issuance": [ { "id": "urn:biblevel:m", @@ -6839,7 +6839,7 @@ "numAvailable": [ 1 ], - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[Place of publication not identified] : New York, N.Y." ], @@ -7130,7 +7130,7 @@ "Toast of the town. 1951-09-09, the Oscar Hammerstein story, pt. 1 [sound recording] / CBS-TV ; written by Ed Sullivan." ], "uri": "b19635190", - "recordTypeId": "j", + "formatId": "j", "issuance": [ { "id": "urn:biblevel:m", @@ -7436,7 +7436,7 @@ "Toast of the town. 1951-09-16, the Oscar Hammerstein story, pt. 2 [sound recording] / CBS-TV ; written by Ed Sullivan." ], "uri": "b19635203", - "recordTypeId": "j", + "formatId": "j", "issuance": [ { "id": "urn:biblevel:m", @@ -7685,7 +7685,7 @@ "Angleworms on toast, by MacKinlay Kantor. Illustrated by Kurt Wiese." ], "uri": "b13060795", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -7964,7 +7964,7 @@ "Carmen. Toreador song [sound recording] = [Votre toast] / Bizet." ], "uri": "b16436832", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Camden, NJ" ], @@ -8205,7 +8205,7 @@ "lccClassification": [ "PZ7.K128 An5" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -8464,7 +8464,7 @@ "Mein Lieblings-Toast : 300 heisse Tips für Toast-Fans / Gabriele Heindel." ], "uri": "b12004445", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Leoben" ], @@ -8767,7 +8767,7 @@ "lccClassification": [ "TX769 .L39 2022" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -9074,7 +9074,7 @@ "A musical toast / Leonard Bernstein." ], "uri": "b10981311", - "recordTypeId": "c", + "formatId": "c", "placeOfPublication": [ "[United States]" ], @@ -9360,7 +9360,7 @@ "lccClassification": [ "PS3531.O936 A83 1989" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -9595,7 +9595,7 @@ "The royal toast / by \"Australianus\"." ], "uri": "b13131869", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Sydney [N.S.W.]" ], @@ -9869,7 +9869,7 @@ "lccClassification": [ "PR6113.I5865 S39 2022" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Cardigan" ], @@ -10104,7 +10104,7 @@ "numAvailable": [ 2 ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Albany" ], @@ -10423,7 +10423,7 @@ "Toast of the town (Television program) : photographs, 1951-1953." ], "uri": "b22067378", - "recordTypeId": "k", + "formatId": "k", "issuance": [ { "id": "urn:biblevel:c", @@ -10686,7 +10686,7 @@ "lccClassification": [ "PR9387.9.O3115 T63 2002" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Ibadan, Nigeria" ], @@ -10966,7 +10966,7 @@ "The toast of '45 [sound recording] / Sammi Smith." ], "uri": "b16019290", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Nashville, Tenn." ], @@ -11230,7 +11230,7 @@ "Burnt toast; a novel." ], "uri": "b10038245", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "New York" ], @@ -11485,7 +11485,7 @@ "A toast to tomorrow." ], "uri": "b13147602", - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Garden City, N.Y." ], @@ -11729,7 +11729,7 @@ "Gustafs skål (Gustave's toast)." ], "uri": "b12114589", - "recordTypeId": "c", + "formatId": "c", "issuance": [ { "id": "urn:biblevel:a", @@ -11912,7 +11912,7 @@ "lccClassification": [ "PR9199.4.P34 T63 2018" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Toronto, Canada" ], @@ -12189,7 +12189,7 @@ "A toast to Broadway [sound recording] / 101 Strings." ], "uri": "b15877453", - "recordTypeId": "j", + "formatId": "j", "placeOfPublication": [ "Burbank, Calif." ], @@ -12458,7 +12458,7 @@ "lccClassification": [ "D413.G3 A35" ], - "recordTypeId": "a", + "formatId": "a", "placeOfPublication": [ "Indianapolis, New York" ], diff --git a/test/resource_serializer.test.js b/test/resource_serializer.test.js index bcd2bf3..4c1e63d 100644 --- a/test/resource_serializer.test.js +++ b/test/resource_serializer.test.js @@ -4,7 +4,7 @@ const esResponse = require('./fixtures/item-filter-aggregations.json') describe('Resource Serializer', () => { describe('formatformat', () => { it('should format properly', () => { - expect(ResourceSerializer.getFormattedformat('a')).to.deep.equal({ '@id': 'a', prefLabel: 'Book/Text' }) + expect(ResourceSerializer.getFormattedFormat('a')).to.deep.equal({ '@id': 'a', prefLabel: 'Book/Text' }) }) }) describe('.formatItemFilterAggregations()', () => { From 18280b48fba4dfb2cb07673c241a7d7cdedfa7bd Mon Sep 17 00:00:00 2001 From: Vera Kahn Date: Fri, 28 Feb 2025 15:01:10 -0500 Subject: [PATCH 4/4] delete recordtypeid from response --- lib/jsonld_serializers.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/jsonld_serializers.js b/lib/jsonld_serializers.js index fed9bb9..64ad43f 100644 --- a/lib/jsonld_serializers.js +++ b/lib/jsonld_serializers.js @@ -272,6 +272,7 @@ class ResourceSerializer extends JsonLdItemSerializer { if (this.body.formatId) { stmts.format = ResourceSerializer.getFormattedFormat(this.body.formatId) delete stmts.formatId + delete stmts.recordTypeId } // DFE depends on this being set to an empty array when null: