diff --git a/lib/api-request.js b/lib/api-request.js index c874b61b..9eb1f3d8 100644 --- a/lib/api-request.js +++ b/lib/api-request.js @@ -1,13 +1,14 @@ /** * This class wraps request params to ease interpretting the query **/ +const { SEARCH_SCOPES } = require('./elasticsearch/config') // Build regex pattern for matching a phrase fully enclosed in quotes (or smart quotes): const QUOTE_CHARS = '"\u201C\u201D\u201E\u201F\u2033\u2036' const IN_QUOTES_PATTERN = new RegExp(`^[${QUOTE_CHARS}][^${QUOTE_CHARS}]+[${QUOTE_CHARS}]$`) class ApiRequest { - static ADVANCED_SEARCH_PARAMS = ['title', 'subject', 'contributor'] + static ADVANCED_SEARCH_PARAMS = ['title', 'subject', 'contributor', 'callnumber', 'standard_number'] static IDENTIFIER_NUMBER_PARAMS = ['isbn', 'issn', 'lccn', 'oclc'] constructor (params) { @@ -28,6 +29,7 @@ class ApiRequest { advancedSearchParamsThatAreAlsoScopes () { // Return search params that are also valid search_scope values return ApiRequest.ADVANCED_SEARCH_PARAMS + .filter((key) => SEARCH_SCOPES[key]) .filter((key) => this.params[key]) } diff --git a/lib/elasticsearch/elastic-query-builder.js b/lib/elasticsearch/elastic-query-builder.js index b3774370..db3a6697 100644 --- a/lib/elasticsearch/elastic-query-builder.js +++ b/lib/elasticsearch/elastic-query-builder.js @@ -1,4 +1,5 @@ const ElasticQuery = require('./elastic-query') +const ApiRequest = require('../api-request') const { escapeQuery, namedQuery, prefixMatch, termMatch, phraseMatch } = require('./utils') const { regexEscape } = require('../util') @@ -60,17 +61,6 @@ class ElasticQueryBuilder { this.requireMultiMatch(SEARCH_SCOPES.all.fields) } - // Coming from Adv Search? Add additional multi-match clauses for subject, - // contributor, title: - if (this.request.advancedSearchParamsThatAreAlsoScopes()) { - this.request - .advancedSearchParamsThatAreAlsoScopes() - .forEach((param) => - // Require a match on subject, contributor, or title fields: - this.requireMultiMatch(SEARCH_SCOPES[param].fields, this.request.params[param]) - ) - } - if (this.request.hasSearch()) { // Apply common boosting: this.boostNyplOwned() @@ -90,6 +80,9 @@ class ElasticQueryBuilder { } } + // Look for query params coming from Adv Search: + this.applyAdvancedSearchParams() + // Lastly, if any identifier-number params are present (lccn=, isbn=, etc), // add those clauses: if (this.request.hasIdentifierNumberParam()) { @@ -464,6 +457,37 @@ class ElasticQueryBuilder { this.query.addMust(should.length === 1 ? should[0] : { bool: { should } }) } + /** + * Handle use of subject=, contributor=, title=, & callnumber= Adv Search + * params. + * Note that the RC Adv Search page may also apply filters, which are + * handled by `applyFilters`. + **/ + applyAdvancedSearchParams () { + // We're specifically interested in params that match supported search- + // scopes because we can build a whole ES query just using the existing + // logic for that search scope: + if (this.request.advancedSearchParamsThatAreAlsoScopes()) { + this.request + .advancedSearchParamsThatAreAlsoScopes() + .forEach((advSearchParam) => { + const advSearchValue = this.request.params[advSearchParam] + // Build a new ApiRequest object for this search-scope: + const request = ApiRequest.fromParams({ + q: advSearchValue, + search_scope: advSearchParam + }) + + // Build the ES query for the search-scope and value: + const builder = ElasticQueryBuilder.forApiRequest(request) + const subquery = builder.query.toJson() + + // Add the query to the greater ES query's must clauses: + this.query.addMust(subquery) + }) + } + } + /** * Examine request for user-filters. When found, add them to query. */ diff --git a/lib/resources.js b/lib/resources.js index fbf99997..0594f3ab 100644 --- a/lib/resources.js +++ b/lib/resources.js @@ -87,6 +87,8 @@ const parseSearchParams = function (params) { filters: { type: 'hash', fields: FILTER_CONFIG }, items_size: { type: 'int', default: 100, range: [0, 200] }, items_from: { type: 'int', default: 0 }, + callnumber: { type: 'string' }, + standard_number: { type: 'string' }, contributor: { type: 'string' }, title: { type: 'string' }, subject: { type: 'string' }, diff --git a/lib/util.js b/lib/util.js index 53c19005..b559ad86 100644 --- a/lib/util.js +++ b/lib/util.js @@ -177,12 +177,6 @@ exports.parseParam = function (val, spec) { return val } -exports.arrayIntersection = (a1, a2) => { - return a1.filter(function (n) { - return a2.indexOf(n) !== -1 - }) -} - /** * Get array of key-value pairs for object * @@ -193,19 +187,6 @@ exports.objectEntries = (obj) => { .map((key) => [key, obj[key]]) } -exports.gatherParams = function (req, acceptedParams) { - // If specific params configured, pass those to handler - // otherwise just pass `value` param (i.e. keyword search) - acceptedParams = (typeof acceptedParams === 'undefined') ? ['page', 'per_page', 'value', 'q', 'filters', 'contributor', 'subject', 'title', 'isbn', 'issn', 'lccn', 'oclc', 'merge_checkin_card_items', 'include_item_aggregations'] : acceptedParams - - const params = {} - acceptedParams.forEach((k) => { - params[k] = req.query[k] - }) - if (req.query.q) params.value = req.query.q - return params -} - /* * Expects array of strings, numbers */ diff --git a/routes/resources.js b/routes/resources.js index b315cdb4..852b71c0 100644 --- a/routes/resources.js +++ b/routes/resources.js @@ -1,5 +1,3 @@ -const gatherParams = require('../lib/util').gatherParams - const VER = '0.1' module.exports = function (app) { @@ -11,29 +9,6 @@ module.exports = function (app) { next() }) - const standardParams = ['page', - 'per_page', - 'q', - 'filters', - 'expandContext', - 'ext', - 'field', - 'sort', - 'sort_direction', - 'search_scope', - 'all_items', - 'items_size', - 'items_from', - 'contributor', - 'title', - 'subject', - 'isbn', - 'issn', - 'lccn', - 'oclc', - 'merge_checkin_card_items', - 'include_item_aggregations'] - const respond = (res, _resp, params) => { let contentType = 'application/ld+json' if (params.ext === 'ntriples') contentType = 'text/plain' @@ -65,7 +40,7 @@ module.exports = function (app) { } app.get(`/api/v${VER}/discovery/resources$`, function (req, res) { - const params = gatherParams(req, standardParams) + const params = req.query return app.resources.search(params, { baseUrl: app.baseUrl }, req) .then((resp) => respond(res, resp, params)) @@ -73,7 +48,7 @@ module.exports = function (app) { }) app.get(`/api/v${VER}/discovery/resources/aggregations`, function (req, res) { - const params = gatherParams(req, standardParams) + const params = req.query return app.resources.aggregations(params, { baseUrl: app.baseUrl }) .then((resp) => respond(res, resp, params)) @@ -81,7 +56,7 @@ module.exports = function (app) { }) app.get(`/api/v${VER}/discovery/resources/aggregation/:field`, function (req, res) { - const params = Object.assign({}, gatherParams(req, standardParams), req.params) + const params = req.query return app.resources.aggregation(params, { baseUrl: app.baseUrl }) .then((resp) => respond(res, resp, params)) @@ -95,11 +70,11 @@ module.exports = function (app) { * /api/v${VER}/request/deliveryLocationsByBarcode?barcodes[]=12345&barcodes[]=45678&barcodes=[]=78910 */ app.get(`/api/v${VER}/request/deliveryLocationsByBarcode`, function (req, res) { - const params = gatherParams(req, ['barcodes', 'patronId']) + const params = req.query const handler = app.resources.deliveryLocationsByBarcode - return handler(params, { baseUrl: app.baseUrl }) + return handler(req.query.params, { baseUrl: app.baseUrl }) .then((resp) => respond(res, resp, params)) .catch((error) => handleError(res, error, params)) }) @@ -125,11 +100,10 @@ module.exports = function (app) { * e.g. discovery/resources/b1234 */ app.get(`/api/v${VER}/discovery/resources/:uri.:ext?`, function (req, res) { - const gatheredParams = gatherParams(req, ['uri', 'items_size', 'items_from', 'merge_checkin_card_items', 'include_item_aggregations', 'all_items']) const params = Object.assign({}, req.query, { uri: req.params.uri }) - if (Number.isInteger(parseInt(gatheredParams.items_size))) params.items_size = gatheredParams.items_size - if (Number.isInteger(parseInt(gatheredParams.items_from))) params.items_from = gatheredParams.items_from + if (Number.isInteger(parseInt(req.query.items_size))) params.items_size = req.query.items_size + if (Number.isInteger(parseInt(req.query.items_from))) params.items_from = req.query.items_from let handler = app.resources.findByUri diff --git a/test/elastic-query-builder.test.js b/test/elastic-query-builder.test.js index d0cc3b81..8ed4bcd9 100644 --- a/test/elastic-query-builder.test.js +++ b/test/elastic-query-builder.test.js @@ -138,4 +138,217 @@ describe('ElasticQueryBuilder', () => { .include({ 'bool.filter[0].term.buildingLocationIds': 'ma' }) }) }) + + describe('Advanced Search query params', () => { + describe('callnumber=', () => { + it('applies callnumber clauses to query', () => { + const request = new ApiRequest({ callnumber: 'toast' }) + const inst = ElasticQueryBuilder.forApiRequest(request) + + expect(inst.query.toJson()).to.nested + .include({ + // Match on bib shelfmark: + 'bool.must[0].bool.must[0].bool.should[0].prefix.shelfMark\\.keywordLowercased.value': 'toast', + // Match on item shelfmark: + 'bool.must[0].bool.must[0].bool.should[1].nested.path': 'items', + 'bool.must[0].bool.must[0].bool.should[1].nested.query.prefix.items\\.shelfMark\\.keywordLowercased.value': 'toast' + }) + }) + }) + + describe('standard_number=', () => { + it('applies standard_number clauses to query', () => { + const request = new ApiRequest({ standard_number: 'toast' }) + const inst = ElasticQueryBuilder.forApiRequest(request) + + expect(inst.query.toJson()).to.nested + .include({ + // Match on bib identifiers: + 'bool.must[0].bool.must[0].bool.should[0].prefix.identifierV2\\.value.value': 'toast' + }) + .include({ + // Match on bib id: + 'bool.must[0].bool.must[0].bool.should[1].term.uri.value': 'toast' // , + }) + .include({ + // Match on item barcode: + 'bool.must[0].bool.must[0].bool.should[2].nested.path': 'items', + 'bool.must[0].bool.must[0].bool.should[2].nested.query.term.items\\.idBarcode.value': 'toast' + }) + }) + }) + + describe('title=', () => { + it('applies title clauses to query', () => { + const request = new ApiRequest({ title: 'toast' }) + const inst = ElasticQueryBuilder.forApiRequest(request) + + const query = inst.query.toJson() + + // Assert there's a multi-match: + expect(query).to.nested + .include({ + // Multi-match on common title fields: + 'bool.must[0].bool.must[0].multi_match.fields[0]': 'title^5', + 'bool.must[0].bool.must[0].multi_match.query': 'toast' + }) + // Assert there's at least one of the title boosting clauses: + const titleShoulds = query.bool.must[0].bool.should + const prefixMatch = titleShoulds.find((should) => should.prefix) + expect(prefixMatch).to.deep.equal({ + prefix: { + 'title.keywordLowercasedStripped': { + value: 'toast', + boost: 50 + } + } + }) + }) + }) + + describe('contributor=', () => { + it('applies contributor clauses to query', () => { + const request = new ApiRequest({ contributor: 'toast' }) + const inst = ElasticQueryBuilder.forApiRequest(request) + + const query = inst.query.toJson() + + // Assert there's a multi-match: + expect(query).to.nested + .include({ + // Multi-match on common creator/contrib fields: + 'bool.must[0].bool.must[0].multi_match.fields[0]': 'creatorLiteral^4', + 'bool.must[0].bool.must[0].multi_match.query': 'toast' + }) + // Assert there's at least one of the creator boosting clauses: + const contributorShoulds = query.bool.must[0].bool.should + const prefixMatch = contributorShoulds.find((should) => should.prefix) + expect(prefixMatch).to.deep.equal({ + prefix: { + 'creatorLiteralNormalized.keywordLowercased': { + value: 'toast', + boost: 100 + } + } + }) + }) + }) + + describe('multiple adv search params', () => { + it('applies multiple param clauses to query', () => { + const request = new ApiRequest({ + title: 'title value', + contributor: 'contributor value', + callnumber: 'callnumber value' + }) + const inst = ElasticQueryBuilder.forApiRequest(request) + + const query = inst.query.toJson() + + // Assert there's a multi-match: + expect(query).to.nested + .include({ + // Multi-match on title fields: + 'bool.must[0].bool.must[0].multi_match.fields[0]': 'title^5', + 'bool.must[0].bool.must[0].multi_match.query': 'title value', + + // Multi-match on creator/contrib fields: + 'bool.must[1].bool.must[0].multi_match.fields[0]': 'creatorLiteral^4', + 'bool.must[1].bool.must[0].multi_match.query': 'contributor value' + }) + + // Assert there's at least one of the title boosting clauses: + const titleShoulds = query.bool.must[0].bool.should + const prefixMatch = titleShoulds.find((should) => should.prefix) + expect(prefixMatch).to.deep.equal({ + prefix: { + 'title.keywordLowercasedStripped': { + value: 'title value', + boost: 50 + } + } + }) + + // Assert there's at least one of the creator boosting clauses: + const creatorShoulds = query.bool.must[1].bool.should + const creatorPrefixMatch = creatorShoulds.find((should) => should.prefix) + expect(creatorPrefixMatch).to.deep.equal({ + prefix: { + 'creatorLiteralNormalized.keywordLowercased': { + value: 'contributor value', + boost: 100 + } + } + }) + }) + }) + + describe('adv search params with filters', () => { + it('applies param and filter clauses to query', () => { + const request = new ApiRequest({ + title: 'title value', + contributor: 'contributor value', + filters: { + dateAfter: 2020, + dateBefore: 2021, + materialType: ['resourcetypes:aud'] + } + }) + const inst = ElasticQueryBuilder.forApiRequest(request) + + const query = inst.query.toJson() + + // Assert there's a multi-match: + expect(query).to.nested + .include({ + // Multi-match on title fields: + 'bool.must[0].bool.must[0].multi_match.fields[0]': 'title^5', + 'bool.must[0].bool.must[0].multi_match.query': 'title value', + + // Multi-match on creator/contrib fields: + 'bool.must[1].bool.must[0].multi_match.fields[0]': 'creatorLiteral^4', + 'bool.must[1].bool.must[0].multi_match.query': 'contributor value' + }) + + // Assert there's at least one of the title boosting clauses: + const titleShoulds = query.bool.must[0].bool.should + const prefixMatch = titleShoulds.find((should) => should.prefix) + expect(prefixMatch).to.deep.equal({ + prefix: { + 'title.keywordLowercasedStripped': { + value: 'title value', + boost: 50 + } + } + }) + + // Assert there's at least one of the creator boosting clauses: + const creatorShoulds = query.bool.must[1].bool.should + const creatorPrefixMatch = creatorShoulds.find((should) => should.prefix) + expect(creatorPrefixMatch).to.deep.equal({ + prefix: { + 'creatorLiteralNormalized.keywordLowercased': { + value: 'contributor value', + boost: 100 + } + } + }) + + // Asset filter clauses: + expect(query).to.nested.include({ + // Match filers[dateBefore]: + 'bool.filter[0].bool.must[0].bool.should[0].range.dateStartYear.lte': 2021, + 'bool.filter[0].bool.must[0].bool.should[1].range.dateEndYear.lte': 2021, + // Match filters[dateAfter]: + 'bool.filter[0].bool.must[1].bool.should[0].range.dateStartYear.gte': 2020, + 'bool.filter[0].bool.must[1].bool.should[1].range.dateEndYear.gte': 2020 + }) + + expect(query).to.nested.include({ + // Match filters[materialType]: + 'bool.filter[1].bool.should[0].term.materialType\\.id': 'resourcetypes:aud' + }) + }) + }) + }) }) diff --git a/test/fixtures/query-0f39119a22aa5841e0de10b925f52b03.json b/test/fixtures/query-0f39119a22aa5841e0de10b925f52b03.json index 91de7b39..60c9503b 100644 --- a/test/fixtures/query-0f39119a22aa5841e0de10b925f52b03.json +++ b/test/fixtures/query-0f39119a22aa5841e0de10b925f52b03.json @@ -1,5 +1,5 @@ { - "took": 11, + "took": 6, "timed_out": false, "_shards": { "total": 2, @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.631159, + "max_score": 15.73737, "hits": [ { "_index": "resources-2024-10-22", "_id": "b14937001", - "_score": 15.631159, + "_score": 15.73737, "_source": { "note": [ { @@ -60,6 +60,10 @@ "dateEndString": [ "1uuu" ], + "buildingLocationIds": [ + "rc", + "ma" + ], "title": [ "Morgenblatt für gebildete leser." ], @@ -521,227 +525,222 @@ ] }, "inner_hits": { - "items": { + "allItems": { "hits": { "total": { - "value": 1, + "value": 4, "relation": "eq" }, - "max_score": null, + "max_score": 0, "hits": [ { "_index": "resources-2024-10-22", "_id": "b14937001", "_nested": { "field": "items", - "offset": 3 + "offset": 0 }, - "_score": null, + "_score": 0, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ - "accessMessage:1||Use in library" + "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", + "urn:barcode:33433088646033" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", "catalogItemType_packed": [ "catalogItemType:3||serial" ], "dateRange": [ { - "gte": "1860", - "lte": "1860" + "gte": "1933", + "lte": "1933" } ], - "enumerationChronology": [ - "Jahrg. 1860" - ], - "enumerationChronology_sort": [ - " -1860" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433097964930" + "enumerationChronology_sort": [ + " -1933" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", - "urn:barcode:33433097964930" + "type": [ + "bf:Item" ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + ], + "uri": "i28309666", "identifierV2": [ { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" }, { - "value": "33433097964930", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433088646033" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], + "idBarcode": [ + "33433088646033" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28543800" - }, - "sort": [ - " -1860" - ] - } - ] - } - }, - "allItems": { - "hits": { - "total": { - "value": 4, - "relation": "eq" - }, - "max_score": 0, - "hits": [ + ] + } + }, { "_index": "resources-2024-10-22", "_id": "b14937001", "_nested": { "field": "items", - "offset": 0 + "offset": 1 }, "_score": 0, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "urn:barcode:33433096425198" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "catalogItemType_packed": [ "catalogItemType:3||serial" ], "dateRange": [ { - "gte": "1933", - "lte": "1933" + "gte": "1855", + "lte": "1855" } ], - "enumerationChronology": [ - "Jahrg. Mar.-May 1933" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ - " -1933" + " -1855" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "uri": "i28309648", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + }, + { + "type": "bf:Barcode", + "value": "33433096425198" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "Jahrg. 49 (1855)" + ], "idBarcode": [ - "33433088646033" + "33433096425198" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", - "urn:barcode:33433088646033" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", - "type": "bf:ShelfMark" - }, - { - "value": "33433088646033", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309666" + ] } }, { @@ -749,210 +748,215 @@ "_id": "b14937001", "_nested": { "field": "items", - "offset": 1 + "offset": 2 }, "_score": 0, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "urn:barcode:33433088646041" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", "catalogItemType_packed": [ "catalogItemType:3||serial" ], "dateRange": [ { - "gte": "1855", - "lte": "1855" + "gte": "1861", + "lte": "1861" } ], - "enumerationChronology": [ - "Jahrg. 49 (1855)" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ - " -1855" + " -1861" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "uri": "i28309668", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + }, + { + "type": "bf:Barcode", + "value": "33433088646041" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "Jahrg. 1861" + ], "idBarcode": [ - "33433096425198" + "33433088646041" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", - "urn:barcode:33433096425198" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", - "type": "bf:ShelfMark" - }, - { - "value": "33433096425198", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309648" + ] } - }, + } + ] + } + }, + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ { "_index": "resources-2024-10-22", "_id": "b14937001", "_nested": { "field": "items", - "offset": 2 + "offset": 3 }, - "_score": 0, + "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "urn:barcode:33433097964930" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", "catalogItemType_packed": [ "catalogItemType:3||serial" ], "dateRange": [ { - "gte": "1861", - "lte": "1861" + "gte": "1860", + "lte": "1860" } ], - "enumerationChronology": [ - "Jahrg. 1861" - ], - "enumerationChronology_sort": [ - " -1861" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433088646041" + "enumerationChronology_sort": [ + " -1860" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", - "urn:barcode:33433088646041" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" ], + "uri": "i28543800", "identifierV2": [ { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" }, { - "value": "33433088646041", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "type": "bf:Barcode", + "value": "33433097964930" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "enumerationChronology": [ + "Jahrg. 1860" ], - "recapCustomerCode": [ - "NA" + "idBarcode": [ + "33433097964930" ], "requestable": [ true ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309668" - } + ] + }, + "sort": [ + " -1860" + ] } ] } diff --git a/test/fixtures/query-1367bcab600250a7a9de31be9159d305.json b/test/fixtures/query-1367bcab600250a7a9de31be9159d305.json index 1c5a8b4b..96eda128 100644 --- a/test/fixtures/query-1367bcab600250a7a9de31be9159d305.json +++ b/test/fixtures/query-1367bcab600250a7a9de31be9159d305.json @@ -68,6 +68,9 @@ "dateEndString": [ "1772" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Saṅkṣēpavēdartthaṃ : tṟānsliṯṯaṟēṣanuṃ parāvarttanavuṃ vyākhayānavuṃ ataṅṅiya putiya patipp" ], @@ -210,88 +213,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLD 84-299", + "urn:barcode:33433011099029" + ], + "physicalLocation": [ + "*OLD 84-299" + ], + "shelfMark_sort": "a*OLD 84-000299", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011099029" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLD 84-299", - "urn:barcode:33433011099029" + "shelfMark": [ + "*OLD 84-299" ], + "uri": "i10000682", "identifierV2": [ { - "value": "*OLD 84-299", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLD 84-299" }, { - "value": "33433011099029", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011099029" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011099029" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLD 84-299" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLD 84-299" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLD 84-000299", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000682" + ] }, "sort": [ null @@ -349,6 +352,9 @@ "dateEndString": [ "1670" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Zheng yin mo zhi : [4 juan]" ], @@ -487,88 +493,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OVL 84-1330", + "urn:barcode:33433001746852" + ], + "physicalLocation": [ + "*OVL 84-1330" + ], + "shelfMark_sort": "a*OVL 84-001330", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001746852" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OVL 84-1330", - "urn:barcode:33433001746852" + "shelfMark": [ + "*OVL 84-1330" ], + "uri": "i10002193", "identifierV2": [ { - "value": "*OVL 84-1330", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OVL 84-1330" }, { - "value": "33433001746852", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001746852" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001746852" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OVL 84-1330" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OVL 84-1330" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OVL 84-001330", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10002193" + ] }, "sort": [ null @@ -634,6 +640,9 @@ "dateEndString": [ "1899" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Basavapurāṇavu" ], @@ -773,88 +782,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLA+ 82-1360", + "urn:barcode:33433069579674" + ], + "physicalLocation": [ + "*OLA+ 82-1360" + ], + "shelfMark_sort": "a*OLA+ 82-001360", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433069579674" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLA+ 82-1360", - "urn:barcode:33433069579674" + "shelfMark": [ + "*OLA+ 82-1360" ], + "uri": "i13784381", "identifierV2": [ { - "value": "*OLA+ 82-1360", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLA+ 82-1360" }, { - "value": "33433069579674", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433069579674" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433069579674" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLA+ 82-1360" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLA+ 82-1360" - ], - "shelfMark_sort": "a*OLA+ 82-001360", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:2", + "label": "book non-circ" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "uri": "i13784381" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -914,6 +923,9 @@ "dateEndString": [ "999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Ḥarikat-i tārikhī-i Kurd bih Khurāsān dar difāʻ az istiqlāl-i Īrān" ], @@ -1043,100 +1055,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OMR 84-1145 v. 4", + "urn:barcode:33433013135854" + ], + "physicalLocation": [ + "*OMR 84-1145" + ], + "shelfMark_sort": "a*OMR 84-1145 v. 000004", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 4" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 4-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OMR 84-1145 v. 4" + ], + "uri": "i10002283", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OMR 84-1145 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433013135854" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 4" + ], "idBarcode": [ "33433013135854" ], - "identifier": [ - "urn:shelfmark:*OMR 84-1145 v. 4", - "urn:barcode:33433013135854" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OMR 84-1145 v. 4", - "type": "bf:ShelfMark" - }, - { - "value": "33433013135854", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OMR 84-1145" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OMR 84-1145 v. 4" - ], - "shelfMark_sort": "a*OMR 84-1145 v. 000004", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 4, "lte": 4 } - ], - "uri": "i10002283" + ] }, "sort": [ " 4-" @@ -1151,100 +1163,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OMR 84-1145 v. 3", + "urn:barcode:33433013135847" + ], + "physicalLocation": [ + "*OMR 84-1145" + ], + "shelfMark_sort": "a*OMR 84-1145 v. 000003", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 3" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 3-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OMR 84-1145 v. 3" + ], + "uri": "i10002282", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OMR 84-1145 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433013135847" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 3" + ], "idBarcode": [ "33433013135847" ], - "identifier": [ - "urn:shelfmark:*OMR 84-1145 v. 3", - "urn:barcode:33433013135847" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OMR 84-1145 v. 3", - "type": "bf:ShelfMark" - }, - { - "value": "33433013135847", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OMR 84-1145" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OMR 84-1145 v. 3" - ], - "shelfMark_sort": "a*OMR 84-1145 v. 000003", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 3, "lte": 3 } - ], - "uri": "i10002282" + ] }, "sort": [ " 3-" @@ -1259,100 +1271,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OMR 84-1145 v. 1", + "urn:barcode:33433013136530" + ], + "physicalLocation": [ + "*OMR 84-1145" + ], + "shelfMark_sort": "a*OMR 84-1145 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } + "type": [ + "bf:Item" ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433013136530" - ], - "identifier": [ - "urn:shelfmark:*OMR 84-1145 v. 1", - "urn:barcode:33433013136530" + "shelfMark": [ + "*OMR 84-1145 v. 1" ], + "uri": "i10002281", "identifierV2": [ { - "value": "*OMR 84-1145 v. 1", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OMR 84-1145 v. 1" }, { - "value": "33433013136530", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433013136530" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "enumerationChronology": [ + "v. 1" ], - "physicalLocation": [ - "*OMR 84-1145" + "idBarcode": [ + "33433013136530" ], - "recapCustomerCode": [ - "NA" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "*OMR 84-1145 v. 1" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OMR 84-1145 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i10002281" + ] }, "sort": [ " 1-" @@ -1410,15 +1422,19 @@ "createdYear": [ 196 ], + "buildingLocationIds": [ + "ma", + "rc" + ], "parallelTitle": [ "‏اليمن وحضارة العرب, مع دراسة جغرافية كاملة" ], - "title": [ - "al-Yaman wa-ḥaḍārat al-ʻArab, maʻa dirāsah jughrāfīyah kāmilah" - ], "type": [ "nypl:Item" ], + "title": [ + "al-Yaman wa-ḥaḍārat al-ʻArab, maʻa dirāsah jughrāfīyah kāmilah" + ], "shelfMark": [ "*OFI 82-4419" ], @@ -1443,9 +1459,6 @@ "parallelCreatorLiteral": [ "‏ترسيسي, عدنان." ], - "idOclc": [ - "11272192" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -1472,6 +1485,9 @@ "value": "(OCoLC)221366702" } ], + "idOclc": [ + "11272192" + ], "updatedAt": 1711087211898, "publicationStatement": [ "Bayrūt : Dār Maktabat al-Ḥayāh, [196-?]" @@ -1559,79 +1575,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)", + "urn:barcode:33433101143836" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" ], + "shelfMark_sort": "a*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433101143836" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)", - "urn:barcode:33433101143836" + "shelfMark": [ + "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" ], + "uri": "i29202258", "identifierV2": [ { - "value": "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" }, { - "value": "33433101143836", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433101143836" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" + "idBarcode": [ + "33433101143836" ], "requestable": [ true ], - "shelfMark": [ - "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i29202258" + ] }, "sort": [ null @@ -1646,88 +1662,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFI 82-4419", + "urn:barcode:33433002023293" + ], + "physicalLocation": [ + "*OFI 82-4419" + ], + "shelfMark_sort": "a*OFI 82-004419", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002023293" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFI 82-4419", - "urn:barcode:33433002023293" + "shelfMark": [ + "*OFI 82-4419" ], + "uri": "i10002714", "identifierV2": [ { - "value": "*OFI 82-4419", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFI 82-4419" }, { - "value": "33433002023293", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002023293" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002023293" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFI 82-4419" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFI 82-4419" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFI 82-004419", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10002714" + ] }, "sort": [ null @@ -1782,6 +1798,9 @@ "dateEndString": [ "62" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Junāpura Sṭīla." ], @@ -1919,100 +1938,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKV 82-3891 v. 2", + "urn:barcode:33433011168402" + ], + "physicalLocation": [ + "*OKV 82-3891" + ], + "shelfMark_sort": "a*OKV 82-3891 v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OKV 82-3891 v. 2" + ], + "uri": "i10002917", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OKV 82-3891 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433011168402" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433011168402" ], - "identifier": [ - "urn:shelfmark:*OKV 82-3891 v. 2", - "urn:barcode:33433011168402" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OKV 82-3891 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433011168402", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OKV 82-3891" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKV 82-3891 v. 2" - ], - "shelfMark_sort": "a*OKV 82-3891 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i10002917" + ] }, "sort": [ " 2-" @@ -2027,100 +2046,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKV 82-3891 v. 1", + "urn:barcode:33433011168394" + ], + "physicalLocation": [ + "*OKV 82-3891" + ], + "shelfMark_sort": "a*OKV 82-3891 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OKV 82-3891 v. 1" + ], + "uri": "i10002916", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OKV 82-3891 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433011168394" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433011168394" ], - "identifier": [ - "urn:shelfmark:*OKV 82-3891 v. 1", - "urn:barcode:33433011168394" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OKV 82-3891 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433011168394", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OKV 82-3891" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKV 82-3891 v. 1" - ], - "shelfMark_sort": "a*OKV 82-3891 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i10002916" + ] }, "sort": [ " 1-" @@ -2171,6 +2190,9 @@ "createdYear": [ 197 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tamiḻ valliṉa eḻuttukkaḷ: olikaḷum vitikaḷum" ], @@ -2308,88 +2330,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 83-2757", + "urn:barcode:33433061296681" + ], + "physicalLocation": [ + "*OLB 83-2757" + ], + "shelfMark_sort": "a*OLB 83-002757", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061296681" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 83-2757", - "urn:barcode:33433061296681" + "shelfMark": [ + "*OLB 83-2757" ], + "uri": "i13784546", "identifierV2": [ { - "value": "*OLB 83-2757", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 83-2757" }, { - "value": "33433061296681", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061296681" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061296681" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 83-2757" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 83-2757" - ], - "shelfMark_sort": "a*OLB 83-002757", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "uri": "i13784546" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -2436,6 +2458,7 @@ "createdYear": [ 1775 ], + "buildingLocationIds": [], "title": [ "All in the wrong a comedy, as it is acted at the Theatre-Royal in Drury-Lane" ], @@ -2586,6 +2609,9 @@ "createdYear": [ 1688 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Christophori Cellarii Collectanea historiae Samaritanae : quibus praeter res geographicas, tam politia huius gentis, quam religio et res litteraria explicantur." ], @@ -2715,85 +2741,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:a", - "label": "By appointment only" - } - ], "accessMessage_packed": [ "accessMessage:a||By appointment only" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1103", + "label": "Dorot Jewish Division" } ], + "identifier": [ + "urn:shelfmark:**P 07-283", + "urn:barcode:33433075470579" + ], + "physicalLocation": [ + "**P 07-283" + ], + "shelfMark_sort": "a**P 07-000283", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:maf88", - "label": "Schwarzman Building - Dorot Jewish Division Room 111" + "id": "accessMessage:a", + "label": "By appointment only" } ], - "holdingLocation_packed": [ - "loc:maf88||Schwarzman Building - Dorot Jewish Division Room 111" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433075470579" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:**P 07-283", - "urn:barcode:33433075470579" + "shelfMark": [ + "**P 07-283" ], + "uri": "i14746564", "identifierV2": [ { - "value": "**P 07-283", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "**P 07-283" }, { - "value": "33433075470579", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433075470579" } ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } + "holdingLocation_packed": [ + "loc:maf88||Schwarzman Building - Dorot Jewish Division Room 111" + ], + "idBarcode": [ + "33433075470579" ], "owner_packed": [ "orgs:1103||Dorot Jewish Division" ], - "physicalLocation": [ - "**P 07-283" - ], "requestable": [ false ], - "shelfMark": [ - "**P 07-283" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:maf88", + "label": "Schwarzman Building - Dorot Jewish Division Room 111" + } ], - "shelfMark_sort": "a**P 07-000283", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14746564" + ] }, "sort": [ null @@ -2843,6 +2869,9 @@ "dateEndString": [ "1899" ], + "buildingLocationIds": [ + "sc" + ], "title": [ "De 10 kleine nikkertjes." ], @@ -2969,87 +2998,87 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1116", + "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" } ], + "identifier": [ + "urn:shelfmark:Sc Rare F 83-57", + "urn:barcode:33433036926669" + ], + "physicalLocation": [ + "Sc Rare F 83-57" + ], + "shelfMark_sort": "aSc Rare F 83-000057", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433036926669" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=Sc+Rare+F+83-57&Date=1800&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10005935&ItemISxN=i119005189&ItemNumber=33433036926669&ItemPlace=Amsterdam&ItemPublisher=J.+Vlieger%2C+%5B18--%3F%5D&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100059351&Site=SCHRB&Title=De+10+kleine+nikkertjes." ], - "identifier": [ - "urn:shelfmark:Sc Rare F 83-57", - "urn:barcode:33433036926669" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "Sc Rare F 83-57" ], + "uri": "i11900518", "identifierV2": [ { - "value": "Sc Rare F 83-57", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc Rare F 83-57" }, { - "value": "33433036926669", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433036926669" } ], - "owner": [ - { - "id": "orgs:1116", - "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" - } + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "idBarcode": [ + "33433036926669" ], "owner_packed": [ "orgs:1116||Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" ], - "physicalLocation": [ - "Sc Rare F 83-57" - ], "requestable": [ false ], - "shelfMark": [ - "Sc Rare F 83-57" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } ], - "shelfMark_sort": "aSc Rare F 83-000057", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11900518", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=Sc+Rare+F+83-57&Date=1800&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10005935&ItemISxN=i119005189&ItemNumber=33433036926669&ItemPlace=Amsterdam&ItemPublisher=J.+Vlieger%2C+%5B18--%3F%5D&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100059351&Site=SCHRB&Title=De+10+kleine+nikkertjes." ] }, "sort": [ @@ -3123,6 +3152,10 @@ "createdYear": [ 1789 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Notes on the two reports from the Committee of the Honourable House of Assembly of Jamaica: appointed to examine into, and to report to the House, the allegations and charges contained in the several petitions which have been presented to the British House of Commons, on the subject of the slave-trade, and the treatment of the Negroes,&c.&c.&c." ], @@ -3576,6 +3609,9 @@ "createdYear": [ 1794 ], + "buildingLocationIds": [ + "sc" + ], "title": [ "The New Jamaica almanack, and register ... for the year of Our Lord 1795 ... ." ], @@ -3700,87 +3736,87 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1116", + "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" } ], + "identifier": [ + "urn:shelfmark:Sc Rare B 83-2", + "urn:barcode:33433036926776" + ], + "physicalLocation": [ + "Sc Rare B 83-2" + ], + "shelfMark_sort": "aSc Rare B 83-000002", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433036926776" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=Sc+Rare+B+83-2&Date=1794&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10005951&ItemISxN=i119005281&ItemNumber=33433036926776&ItemPlace=Kingston&ItemPublisher=Printed+by+David+Dickson+for+Thomas+Stevenson%2C+%5B1794%3F%5D&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b10005951x&Site=SCHRB&Title=The+New+Jamaica+almanack%2C+and+register+...+for+the+year+of+Our+Lord+1795+...+.&Transaction.CustomFields.Custom651=Jamaica+Registers." ], - "identifier": [ - "urn:shelfmark:Sc Rare B 83-2", - "urn:barcode:33433036926776" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "Sc Rare B 83-2" ], + "uri": "i11900528", "identifierV2": [ { - "value": "Sc Rare B 83-2", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc Rare B 83-2" }, { - "value": "33433036926776", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433036926776" } ], - "owner": [ - { - "id": "orgs:1116", - "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" - } + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "idBarcode": [ + "33433036926776" ], "owner_packed": [ "orgs:1116||Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" ], - "physicalLocation": [ - "Sc Rare B 83-2" - ], "requestable": [ false ], - "shelfMark": [ - "Sc Rare B 83-2" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } ], - "shelfMark_sort": "aSc Rare B 83-000002", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11900528", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=Sc+Rare+B+83-2&Date=1794&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10005951&ItemISxN=i119005281&ItemNumber=33433036926776&ItemPlace=Kingston&ItemPublisher=Printed+by+David+Dickson+for+Thomas+Stevenson%2C+%5B1794%3F%5D&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b10005951x&Site=SCHRB&Title=The+New+Jamaica+almanack%2C+and+register+...+for+the+year+of+Our+Lord+1795+...+.&Transaction.CustomFields.Custom651=Jamaica+Registers." ] }, "sort": [ @@ -3834,6 +3870,9 @@ "createdYear": [ 1797 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Lettre de Michel-Pascal Creuzé à Jean-Philippe Garan sur son rapport des troubles de St-Domingue : distribué au Corps législatif en ventôse, an V, dix-huit mois apres la clôture des débats." ], @@ -4089,6 +4128,9 @@ "dateEndString": [ "1899" ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Usi e costumi dell' Abissinia e dei dintorni di Massaua" ], @@ -4447,12 +4489,15 @@ "createdYear": [ 193 ], - "title": [ - "Liebelei : ein Wiener Stück mit Musik : nach dem gleichnamigen Schauspiel von Arthur Schnitzler" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Liebelei : ein Wiener Stück mit Musik : nach dem gleichnamigen Schauspiel von Arthur Schnitzler" + ], "shelfMark": [ "JMC 84-130" ], @@ -4477,9 +4522,6 @@ "dateStartYear": [ 193 ], - "idOclc": [ - "80791734" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -4498,6 +4540,9 @@ "value": "(OCoLC)80791734" } ], + "idOclc": [ + "80791734" + ], "uniformTitle": [ "Liebelei. Libretto" ], @@ -4506,15 +4551,15 @@ "publicationStatement": [ "Basel : Doremi, [193-?]" ], - "genreForm": [ - "Librettos." - ], "identifier": [ "urn:shelfmark:JMC 84-130", "urn:bnum:10006718", "urn:oclc:80791734", "urn:identifier:(OCoLC)80791734" ], + "genreForm": [ + "Librettos." + ], "numCheckinCardItems": [ 0 ], @@ -4552,15 +4597,15 @@ "placeOfPublication": [ "Basel" ], + "titleAlt": [ + "Liebelei." + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Liebelei." - ], "dimensions": [ "20 cm" ] @@ -4587,88 +4632,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMC 84-130", + "urn:barcode:33433004734608" + ], + "physicalLocation": [ + "JMC 84-130" + ], + "shelfMark_sort": "aJMC 84-000130", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433004734608" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMC 84-130", - "urn:barcode:33433004734608" + "shelfMark": [ + "JMC 84-130" ], + "uri": "i10003952", "identifierV2": [ { - "value": "JMC 84-130", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMC 84-130" }, { - "value": "33433004734608", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433004734608" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433004734608" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMC 84-130" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMC 84-130" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMC 84-000130", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10003952" + ] }, "sort": [ null @@ -4715,6 +4760,9 @@ "createdYear": [ 1725 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "La somiglianza commedia" ], @@ -4835,88 +4883,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*Z-3500", + "urn:barcode:33433107660718" + ], + "physicalLocation": [ + "*Z-3500" + ], + "shelfMark_sort": "a*Z-003500", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433107660718" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*Z-3500", - "urn:barcode:33433107660718" + "shelfMark": [ + "*Z-3500" ], + "uri": "i10003967", "identifierV2": [ { - "value": "*Z-3500", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*Z-3500" }, { - "value": "33433107660718", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433107660718" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433107660718" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*Z-3500" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*Z-3500" + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*Z-003500", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10003967" + ] }, "sort": [ null @@ -4971,6 +5019,9 @@ "dateEndString": [ "1334" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "ʻĀlam va Ādam" ], @@ -5097,88 +5148,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OMO 84-2676", + "urn:barcode:33433001898570" + ], + "physicalLocation": [ + "*OMO 84-2676" + ], + "shelfMark_sort": "a*OMO 84-002676", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcma2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001898570" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OMO 84-2676", - "urn:barcode:33433001898570" + "shelfMark": [ + "*OMO 84-2676" ], + "uri": "i10004294", "identifierV2": [ { - "value": "*OMO 84-2676", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OMO 84-2676" }, { - "value": "33433001898570", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001898570" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rcma2||Offsite" + ], + "idBarcode": [ + "33433001898570" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OMO 84-2676" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OMO 84-2676" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OMO 84-002676", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10004294" + ] }, "sort": [ null @@ -5393,6 +5444,9 @@ "dateEndString": [ "1597" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "In Porphyrii Isagogen et Aristotelis Organum : commentarius analyticus" ], @@ -5523,79 +5577,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:JFD 85-2807", + "urn:barcode:33433038876987" ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "JFD 85-2807" + ], + "shelfMark_sort": "aJFD 85-002807", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433038876987" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFD 85-2807", - "urn:barcode:33433038876987" + "shelfMark": [ + "JFD 85-2807" ], + "uri": "i12858678", "identifierV2": [ { - "value": "JFD 85-2807", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFD 85-2807" }, { - "value": "33433038876987", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433038876987" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "JFD 85-2807" + "idBarcode": [ + "33433038876987" ], "requestable": [ true ], - "shelfMark": [ - "JFD 85-2807" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "aJFD 85-002807", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12858678" + ] }, "sort": [ null @@ -5651,6 +5705,9 @@ "dateEndString": [ "1268" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Fatwá al-Ḥamawīyah al-kubrá" ], @@ -5791,88 +5848,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OGM 85-1727", + "urn:barcode:33433001945694" + ], + "physicalLocation": [ + "*OGM 85-1727" + ], + "shelfMark_sort": "a*OGM 85-001727", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001945694" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGM 85-1727", - "urn:barcode:33433001945694" + "shelfMark": [ + "*OGM 85-1727" ], + "uri": "i10004965", "identifierV2": [ { - "value": "*OGM 85-1727", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGM 85-1727" }, { - "value": "33433001945694", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001945694" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001945694" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGM 85-1727" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGM 85-1727" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGM 85-001727", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10004965" + ] }, "sort": [ null @@ -5924,12 +5981,15 @@ "createdYear": [ 195 ], - "title": [ - "Hawaiï-gitaar school : nieuwste vereenvoudigde leermethode voor het bespelen van de Hawaiï-gitaar en electro-Hawaiï-gitaar volgens cijfersysteem notenlezen overbodig" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Hawaiï-gitaar school : nieuwste vereenvoudigde leermethode voor het bespelen van de Hawaiï-gitaar en electro-Hawaiï-gitaar volgens cijfersysteem notenlezen overbodig" + ], "shelfMark": [ "JMG 85-191" ], @@ -5951,9 +6011,6 @@ "dateStartYear": [ 195 ], - "idOclc": [ - "16616001" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -5972,22 +6029,25 @@ "value": "(OCoLC)16616001" } ], + "idOclc": [ + "16616001" + ], "popularity": 2, "updatedAt": 1722351260410, "publicationStatement": [ "Arnsterdam : J. Poeltuyn, [195-?]" ], - "genreForm": [ - "Methods (Music) – Self-instruction.", - "Methods (Music)", - "Self-instruction." - ], "identifier": [ "urn:shelfmark:JMG 85-191", "urn:bnum:10009816", "urn:oclc:16616001", "urn:identifier:(OCoLC)16616001" ], + "genreForm": [ + "Methods (Music) – Self-instruction.", + "Methods (Music)", + "Self-instruction." + ], "numCheckinCardItems": [ 0 ], @@ -6055,88 +6115,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 85-191", + "urn:barcode:33433032736401" + ], + "physicalLocation": [ + "JMG 85-191" + ], + "shelfMark_sort": "aJMG 85-000191", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032736401" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 85-191", - "urn:barcode:33433032736401" + "shelfMark": [ + "JMG 85-191" ], + "uri": "i10942334", "identifierV2": [ { - "value": "JMG 85-191", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 85-191" }, { - "value": "33433032736401", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032736401" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032736401" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 85-191" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 85-191" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 85-000191", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942334" + ] }, "sort": [ null @@ -6182,6 +6242,9 @@ "dateEndString": [ "1799" ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Romance famoso : en que se refieren las grandes hazañas del valiente negro en Flandes, llamado Juan de Alva, y la mucho que el Rey nuestro Señor premio sus hechos." ], @@ -6308,87 +6371,87 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1116", + "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" } ], + "identifier": [ + "urn:shelfmark:Sc Rare+ F 82-61", + "urn:barcode:33433036926867" + ], + "physicalLocation": [ + "Sc Rare+ F 82-61" + ], + "shelfMark_sort": "aSc Rare+ F 82-000061", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433036926867" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=Sc+Rare%2B+F+82-61&Date=1700&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10009912&ItemISxN=i11901001x&ItemNumber=33433036926867&ItemPlace=Valladolid&ItemPublisher=Imprenta+de+Alonso+del+Riego%2C+%5B17--%3F%5D&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100099129&Site=SCHRB&Title=Romance+famoso+%3A+en+que+se+refieren+las+grandes+haza%C3%B1as+del+valiente+negro+en+Flandes%2C+llamado+Juan+de+Alva%2C+y+la+mucho+que+el+Rey+nuestro+Se%C3%B1or+premio+sus+hechos." ], - "identifier": [ - "urn:shelfmark:Sc Rare+ F 82-61", - "urn:barcode:33433036926867" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "Sc Rare+ F 82-61" ], + "uri": "i11901001", "identifierV2": [ { - "value": "Sc Rare+ F 82-61", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc Rare+ F 82-61" }, { - "value": "33433036926867", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433036926867" } ], - "owner": [ - { - "id": "orgs:1116", - "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" - } + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "idBarcode": [ + "33433036926867" ], "owner_packed": [ "orgs:1116||Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" ], - "physicalLocation": [ - "Sc Rare+ F 82-61" - ], "requestable": [ false ], - "shelfMark": [ - "Sc Rare+ F 82-61" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } ], - "shelfMark_sort": "aSc Rare+ F 82-000061", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11901001", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=Sc+Rare%2B+F+82-61&Date=1700&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10009912&ItemISxN=i11901001x&ItemNumber=33433036926867&ItemPlace=Valladolid&ItemPublisher=Imprenta+de+Alonso+del+Riego%2C+%5B17--%3F%5D&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100099129&Site=SCHRB&Title=Romance+famoso+%3A+en+que+se+refieren+las+grandes+haza%C3%B1as+del+valiente+negro+en+Flandes%2C+llamado+Juan+de+Alva%2C+y+la+mucho+que+el+Rey+nuestro+Se%C3%B1or+premio+sus+hechos." ] }, "sort": [ @@ -6451,6 +6514,9 @@ "dateEndString": [ "1899" ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Discours aux Haïtiens, ou, Hommage au dévouement patriotique de Coutillien" ], @@ -6580,85 +6646,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc Micro F-10900 Library has: Vol. 3, no. 5-v. 3, no. 7 (June-Aug. 1919)", + "urn:barcode:33433058298906" + ], + "physicalLocation": [ + "Sc Micro F-10900 Library has: Vol. 3, no. 5-v. 3, no. 7 (June-Aug. 1919)" + ], + "shelfMark_sort": "aSc Micro F-10900 Library has: Vol. 3, no. 000005-v. 3, no. 7 (June-Aug. 1919)", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058298906" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc Micro F-10900 Library has: Vol. 3, no. 5-v. 3, no. 7 (June-Aug. 1919)", - "urn:barcode:33433058298906" + "shelfMark": [ + "Sc Micro F-10900 Library has: Vol. 3, no. 5-v. 3, no. 7 (June-Aug. 1919)" ], + "uri": "i13965122", "identifierV2": [ { - "value": "Sc Micro F-10900 Library has: Vol. 3, no. 5-v. 3, no. 7 (June-Aug. 1919)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc Micro F-10900 Library has: Vol. 3, no. 5-v. 3, no. 7 (June-Aug. 1919)" }, { - "value": "33433058298906", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058298906" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433058298906" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc Micro F-10900 Library has: Vol. 3, no. 5-v. 3, no. 7 (June-Aug. 1919)" - ], "requestable": [ true ], - "shelfMark": [ - "Sc Micro F-10900 Library has: Vol. 3, no. 5-v. 3, no. 7 (June-Aug. 1919)" + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc Micro F-10900 Library has: Vol. 3, no. 000005-v. 3, no. 7 (June-Aug. 1919)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13965122" + ] }, "sort": [ null @@ -6673,85 +6739,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:26", - "label": "microfiche" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc Micro F-10834", + "urn:barcode:33433058299276" + ], + "physicalLocation": [ + "Sc Micro F-10834" + ], + "shelfMark_sort": "aSc Micro F-010834", "catalogItemType_packed": [ "catalogItemType:26||microfiche" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058299276" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc Micro F-10834", - "urn:barcode:33433058299276" + "shelfMark": [ + "Sc Micro F-10834" ], + "uri": "i13785539", "identifierV2": [ { - "value": "Sc Micro F-10834", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc Micro F-10834" }, { - "value": "33433058299276", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058299276" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433058299276" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc Micro F-10834" - ], "requestable": [ true ], - "shelfMark": [ - "Sc Micro F-10834" + "catalogItemType": [ + { + "id": "catalogItemType:26", + "label": "microfiche" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc Micro F-010834", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13785539" + ] }, "sort": [ null @@ -6802,6 +6868,9 @@ "createdYear": [ 198 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "U.S. Virgin Islands--Census 1901, pt. 1, 1911, pt. 1" ], @@ -6928,88 +6997,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands", + "urn:barcode:33433094813171" + ], + "physicalLocation": [ + "*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands" + ], + "shelfMark_sort": "a*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433094813171" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands", - "urn:barcode:33433094813171" + "shelfMark": [ + "*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands" ], + "uri": "i27849993", "identifierV2": [ { - "value": "*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands" }, { - "value": "33433094813171", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433094813171" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433094813171" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands" + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*ZAN-T4817 Latin America & the Caribbean: Jamaica, Panama Canal Zone, U.S. Virgin Islands", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i27849993" + ] }, "sort": [ null @@ -7071,6 +7140,9 @@ "createdYear": [ 1759 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Damnatio, et prohibitio operis in plures tomos distributi, cujus est titulus Encyclopedie, ou Dictionaire raisonné des sciences, des arts, & des metiers, par une société de gens de lettres, mis en ordre, & publié par Mr. Diderot de l'Academie royale des sciences, & des belles lettres de Prusse, & quant a la partie mathematique, par Mr. d'Alembert de l'Academie royale de Sciences de Paris, de celle de Prusse, & de la Société royale de Londres" ], @@ -7195,100 +7267,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*Z-3852 no. 1-27", + "urn:barcode:33433107973277" + ], + "physicalLocation": [ + "*Z-3852" + ], + "shelfMark_sort": "a*Z-3852 no. 000001-27", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "enumerationChronology": [ - "no. 1-27" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rcmi2", - "label": "Offsite" - } + "type": [ + "bf:Item" ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "idBarcode": [ - "33433107973277" - ], - "identifier": [ - "urn:shelfmark:*Z-3852 no. 1-27", - "urn:barcode:33433107973277" + "shelfMark": [ + "*Z-3852 no. 1-27" ], + "uri": "i30458802", "identifierV2": [ { - "value": "*Z-3852 no. 1-27", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*Z-3852 no. 1-27" }, { - "value": "33433107973277", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433107973277" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "enumerationChronology": [ + "no. 1-27" ], - "physicalLocation": [ - "*Z-3852" + "idBarcode": [ + "33433107973277" ], - "recapCustomerCode": [ - "NA" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "*Z-3852 no. 1-27" + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*Z-3852 no. 000001-27", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 27 } - ], - "uri": "i30458802" + ] }, "sort": [ " 1-" @@ -7351,6 +7423,9 @@ "dateEndString": [ "19uu" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Flor y canto." ], @@ -7473,21 +7548,9 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -7497,11 +7560,36 @@ "lte": "1978" } ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JFL 81-111 v. 2-5 1975-78" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFL 81-111 v. 2-5 1975-78" + }, + { + "type": "bf:Barcode", + "value": "33433005304187" + } + ], "enumerationChronology": [ "v. 2-5 1975-78" ], - "enumerationChronology_sort": [ - " 2-1975" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } ], "formatLiteral": [ "Text" @@ -7512,24 +7600,13 @@ "label": "Offsite" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433005304187" - ], - "identifier": [ - "urn:shelfmark:JFL 81-111 v. 2-5 1975-78", - "urn:barcode:33433005304187" + "recapCustomerCode": [ + "NA" ], - "identifierV2": [ - { - "value": "JFL 81-111 v. 2-5 1975-78", - "type": "bf:ShelfMark" - }, + "volumeRange": [ { - "value": "33433005304187", - "type": "bf:Barcode" + "gte": 2, + "lte": 5 } ], "owner": [ @@ -7538,41 +7615,39 @@ "label": "Stephen A. Schwarzman Building" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "identifier": [ + "urn:shelfmark:JFL 81-111 v. 2-5 1975-78", + "urn:barcode:33433005304187" ], "physicalLocation": [ "JFL 81-111" ], - "recapCustomerCode": [ - "NA" + "shelfMark_sort": "aJFL 81-111 v. 000002-5 1975-78", + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 2-1975" + ], + "uri": "i10005340", + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005304187" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "JFL 81-111 v. 2-5 1975-78" - ], - "shelfMark_sort": "aJFL 81-111 v. 000002-5 1975-78", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 2, - "lte": 5 - } - ], - "uri": "i10005340" + ] }, "sort": [ " 2-1975" @@ -7617,6 +7692,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "AASCU studies." ], @@ -7766,21 +7844,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JLM 81-389 1970-1974", + "urn:barcode:33433017529995" + ], + "physicalLocation": [ + "JLM 81-389" + ], + "shelfMark_sort": "aJLM 81-389 1970-001974", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -7790,76 +7870,74 @@ "lte": "1974" } ], - "enumerationChronology": [ - "1970-1974" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1970" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JLM 81-389 1970-1974" + ], + "uri": "i12540542", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JLM 81-389 1970-1974" + }, + { + "type": "bf:Barcode", + "value": "33433017529995" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "1970-1974" + ], "idBarcode": [ "33433017529995" ], - "identifier": [ - "urn:shelfmark:JLM 81-389 1970-1974", - "urn:barcode:33433017529995" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JLM 81-389 1970-1974", - "type": "bf:ShelfMark" - }, - { - "value": "33433017529995", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JLM 81-389" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JLM 81-389 1970-1974" - ], - "shelfMark_sort": "aJLM 81-389 1970-001974", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540542" + ] }, "sort": [ " -1970" @@ -7921,6 +7999,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Equal employment opportunity court cases." ], @@ -8083,21 +8164,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JLM 81-385 1980", + "urn:barcode:33433017529912" + ], + "physicalLocation": [ + "JLM 81-385" + ], + "shelfMark_sort": "aJLM 81-385 001980", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -8107,76 +8190,74 @@ "lte": "1980" } ], - "enumerationChronology": [ - "1980" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1980" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JLM 81-385 1980" + ], + "uri": "i12540547", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JLM 81-385 1980" + }, + { + "type": "bf:Barcode", + "value": "33433017529912" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "1980" + ], "idBarcode": [ "33433017529912" ], - "identifier": [ - "urn:shelfmark:JLM 81-385 1980", - "urn:barcode:33433017529912" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JLM 81-385 1980", - "type": "bf:ShelfMark" - }, - { - "value": "33433017529912", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JLM 81-385" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JLM 81-385 1980" - ], - "shelfMark_sort": "aJLM 81-385 001980", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540547" + ] }, "sort": [ " -1980" @@ -8227,6 +8308,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Bulletin." ], @@ -8378,21 +8462,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:M-10 3102 nos. 601-629 Jan. 1977-Jan. 1980", + "urn:barcode:33433010676884" + ], + "physicalLocation": [ + "M-10 3102" + ], + "shelfMark_sort": "aM-10 3102 nos. 601-629 Jan. 1977-Jan. 001980", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -8402,76 +8488,74 @@ "lte": "1980" } ], - "enumerationChronology": [ - "nos. 601-629 Jan. 1977-Jan. 1980" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1977" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "M-10 3102 nos. 601-629 Jan. 1977-Jan. 1980" + ], + "uri": "i11901117", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "M-10 3102 nos. 601-629 Jan. 1977-Jan. 1980" + }, + { + "type": "bf:Barcode", + "value": "33433010676884" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "nos. 601-629 Jan. 1977-Jan. 1980" + ], "idBarcode": [ "33433010676884" ], - "identifier": [ - "urn:shelfmark:M-10 3102 nos. 601-629 Jan. 1977-Jan. 1980", - "urn:barcode:33433010676884" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "M-10 3102 nos. 601-629 Jan. 1977-Jan. 1980", - "type": "bf:ShelfMark" - }, - { - "value": "33433010676884", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "M-10 3102" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "M-10 3102 nos. 601-629 Jan. 1977-Jan. 1980" - ], - "shelfMark_sort": "aM-10 3102 nos. 601-629 Jan. 1977-Jan. 001980", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11901117" + ] }, "sort": [ " -1977" @@ -8486,21 +8570,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:M-10 3102 nos. 574-600 1974-76", + "urn:barcode:33433010676876" + ], + "physicalLocation": [ + "M-10 3102" + ], + "shelfMark_sort": "aM-10 3102 nos. 574-600 1974-000076", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -8510,76 +8596,74 @@ "lte": "1976" } ], - "enumerationChronology": [ - "nos. 574-600 1974-76" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1974" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "M-10 3102 nos. 574-600 1974-76" + ], + "uri": "i11901116", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "M-10 3102 nos. 574-600 1974-76" + }, + { + "type": "bf:Barcode", + "value": "33433010676876" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "nos. 574-600 1974-76" + ], "idBarcode": [ "33433010676876" ], - "identifier": [ - "urn:shelfmark:M-10 3102 nos. 574-600 1974-76", - "urn:barcode:33433010676876" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "M-10 3102 nos. 574-600 1974-76", - "type": "bf:ShelfMark" - }, + "requestable": [ + true + ], + "catalogItemType": [ { - "value": "33433010676876", - "type": "bf:Barcode" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "M-10 3102" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "M-10 3102 nos. 574-600 1974-76" - ], - "shelfMark_sort": "aM-10 3102 nos. 574-600 1974-000076", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11901116" + ] }, "sort": [ " -1974" @@ -8594,21 +8678,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:M-10 3102 nos. 547-57 1971-73", + "urn:barcode:33433010676868" + ], + "physicalLocation": [ + "M-10 3102" + ], + "shelfMark_sort": "aM-10 3102 nos. 547-57 1971-000073", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -8618,76 +8704,74 @@ "lte": "1973" } ], - "enumerationChronology": [ - "nos. 547-57 1971-73" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1971" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "M-10 3102 nos. 547-57 1971-73" + ], + "uri": "i11901115", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "M-10 3102 nos. 547-57 1971-73" + }, + { + "type": "bf:Barcode", + "value": "33433010676868" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "nos. 547-57 1971-73" + ], "idBarcode": [ "33433010676868" ], - "identifier": [ - "urn:shelfmark:M-10 3102 nos. 547-57 1971-73", - "urn:barcode:33433010676868" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "M-10 3102 nos. 547-57 1971-73", - "type": "bf:ShelfMark" - }, - { - "value": "33433010676868", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "M-10 3102" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "M-10 3102 nos. 547-57 1971-73" - ], - "shelfMark_sort": "aM-10 3102 nos. 547-57 1971-000073", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11901115" + ] }, "sort": [ " -1971" @@ -8740,6 +8824,9 @@ "createdYear": [ 1770 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Johann Ernst Fabers Anmerkungen zur Erlernung des Talmudischen und Rabbinischen." ], @@ -8871,79 +8958,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], "accessMessage_packed": [ "accessMessage:u||Supervised use" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "identifier": [ + "urn:shelfmark:**P-*PCQ 85-1669", + "urn:barcode:33433089858876" + ], + "m2CustomerCode": [ + "XH" + ], + "physicalLocation": [ + "**P-*PCQ 85-1669" ], + "shelfMark_sort": "a**P-*PCQ 85-001669", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:maf98", - "label": "Schwarzman Building - Dorot Jewish Division Room 111" + "id": "accessMessage:u", + "label": "Supervised use" } ], - "holdingLocation_packed": [ - "loc:maf98||Schwarzman Building - Dorot Jewish Division Room 111" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433089858876" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:**P-*PCQ 85-1669", - "urn:barcode:33433089858876" + "shelfMark": [ + "**P-*PCQ 85-1669" ], + "uri": "i14747226", "identifierV2": [ { - "value": "**P-*PCQ 85-1669", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "**P-*PCQ 85-1669" }, { - "value": "33433089858876", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433089858876" } ], - "m2CustomerCode": [ - "XH" + "holdingLocation_packed": [ + "loc:maf98||Schwarzman Building - Dorot Jewish Division Room 111" ], - "physicalLocation": [ - "**P-*PCQ 85-1669" + "idBarcode": [ + "33433089858876" ], "requestable": [ true ], - "shelfMark": [ - "**P-*PCQ 85-1669" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:maf98", + "label": "Schwarzman Building - Dorot Jewish Division Room 111" + } ], - "shelfMark_sort": "a**P-*PCQ 85-001669", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14747226" + ] }, "sort": [ null @@ -9001,15 +9088,18 @@ "createdYear": [ 198 ], + "buildingLocationIds": [ + "rc" + ], "dateEndString": [ "1987" ], - "title": [ - "Report on domestic and international loan charge-offs." - ], "type": [ "nypl:Item" ], + "title": [ + "Report on domestic and international loan charge-offs." + ], "shelfMark": [ "JLM 81-449" ], @@ -9034,9 +9124,6 @@ "dateStartYear": [ 198 ], - "idOclc": [ - "NYPG0129-S" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -9063,6 +9150,9 @@ "value": "(WaOLN)nyp0211718" } ], + "idOclc": [ + "NYPG0129-S" + ], "dateEndYear": [ 1987 ], @@ -9116,15 +9206,15 @@ "placeOfPublication": [ "Philadelphia" ], + "titleAlt": [ + "Report on domestic and international loan charge-offs" + ], "issuance": [ { "id": "urn:biblevel:s", "label": "serial" } ], - "titleAlt": [ - "Report on domestic and international loan charge-offs" - ], "dimensions": [ "28 cm." ] @@ -9151,21 +9241,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JLM 81-449 1978-1983, 1987.", + "urn:barcode:33433019908379" + ], + "physicalLocation": [ + "JLM 81-449" + ], + "shelfMark_sort": "aJLM 81-449 1978-1983, 1987.", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -9175,76 +9267,74 @@ "lte": "1987" } ], - "enumerationChronology": [ - "1978-1983, 1987." + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1978" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JLM 81-449 1978-1983, 1987." + ], + "uri": "i12540558", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JLM 81-449 1978-1983, 1987." + }, + { + "type": "bf:Barcode", + "value": "33433019908379" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "1978-1983, 1987." + ], "idBarcode": [ "33433019908379" ], - "identifier": [ - "urn:shelfmark:JLM 81-449 1978-1983, 1987.", - "urn:barcode:33433019908379" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JLM 81-449 1978-1983, 1987.", - "type": "bf:ShelfMark" - }, - { - "value": "33433019908379", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JLM 81-449" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JLM 81-449 1978-1983, 1987." - ], - "shelfMark_sort": "aJLM 81-449 1978-1983, 1987.", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540558" + ] }, "sort": [ " -1978" @@ -9300,6 +9390,9 @@ "createdYear": [ 1795 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Kargavorutʻyun Hasarakatsʻ Aghotʻitsʻ Hayastaneaytsʻ Ekeghetsʻwoy." ], @@ -9576,6 +9669,9 @@ "dateEndString": [ "19uu" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Anthracite tri-district news : official organ for Districts No. 1, 7, and 9, United Mine Workers of America." ], @@ -9702,21 +9798,9 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], "accessMessage_packed": [ "accessMessage:o||Oversize" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -9726,11 +9810,36 @@ "lte": "1950" } ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 33 (1950)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "TDRA+++ (Anthracite tri-district news) v. 33 (1950)" + }, + { + "type": "bf:Barcode", + "value": "33433057102232" + } + ], "enumerationChronology": [ "v. 33 (1950)" ], - "enumerationChronology_sort": [ - " 33-1950" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } ], "formatLiteral": [ "Text" @@ -9741,24 +9850,13 @@ "label": "Offsite" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433057102232" - ], - "identifier": [ - "urn:shelfmark:TDRA+++ (Anthracite tri-district news) v. 33 (1950)", - "urn:barcode:33433057102232" + "recapCustomerCode": [ + "NL" ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 33 (1950)", - "type": "bf:ShelfMark" - }, + "volumeRange": [ { - "value": "33433057102232", - "type": "bf:Barcode" + "gte": 33, + "lte": 33 } ], "owner": [ @@ -9767,41 +9865,39 @@ "label": "Stephen A. Schwarzman Building" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "identifier": [ + "urn:shelfmark:TDRA+++ (Anthracite tri-district news) v. 33 (1950)", + "urn:barcode:33433057102232" ], "physicalLocation": [ "TDRA+++ (Anthracite tri-district news)" ], - "recapCustomerCode": [ - "NL" + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000033 (1950)", + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 33-1950" + ], + "uri": "i12859081", + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433057102232" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 33 (1950)" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000033 (1950)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 33, - "lte": 33 - } - ], - "uri": "i12859081" + ] }, "sort": [ " 33-1950" @@ -9816,21 +9912,9 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], "accessMessage_packed": [ "accessMessage:o||Oversize" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -9840,11 +9924,36 @@ "lte": "1949" } ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 32 (1949)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "TDRA+++ (Anthracite tri-district news) v. 32 (1949)" + }, + { + "type": "bf:Barcode", + "value": "33433057102224" + } + ], "enumerationChronology": [ "v. 32 (1949)" ], - "enumerationChronology_sort": [ - " 32-1949" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } ], "formatLiteral": [ "Text" @@ -9855,24 +9964,13 @@ "label": "Offsite" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433057102224" - ], - "identifier": [ - "urn:shelfmark:TDRA+++ (Anthracite tri-district news) v. 32 (1949)", - "urn:barcode:33433057102224" + "recapCustomerCode": [ + "NL" ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 32 (1949)", - "type": "bf:ShelfMark" - }, + "volumeRange": [ { - "value": "33433057102224", - "type": "bf:Barcode" + "gte": 32, + "lte": 32 } ], "owner": [ @@ -9881,41 +9979,39 @@ "label": "Stephen A. Schwarzman Building" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "identifier": [ + "urn:shelfmark:TDRA+++ (Anthracite tri-district news) v. 32 (1949)", + "urn:barcode:33433057102224" ], "physicalLocation": [ "TDRA+++ (Anthracite tri-district news)" ], - "recapCustomerCode": [ - "NL" + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000032 (1949)", + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 32-1949" + ], + "uri": "i12859080", + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433057102224" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 32 (1949)" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000032 (1949)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 32, - "lte": 32 - } - ], - "uri": "i12859080" + ] }, "sort": [ " 32-1949" @@ -9930,21 +10026,9 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:o", - "label": "Oversize" - } - ], "accessMessage_packed": [ "accessMessage:o||Oversize" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -9954,11 +10038,36 @@ "lte": "1947" } ], + "accessMessage": [ + { + "id": "accessMessage:o", + "label": "Oversize" + } + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "TDRA+++ (Anthracite tri-district news) v. 30 (1947)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "TDRA+++ (Anthracite tri-district news) v. 30 (1947)" + }, + { + "type": "bf:Barcode", + "value": "33433057102216" + } + ], "enumerationChronology": [ "v. 30 (1947)" ], - "enumerationChronology_sort": [ - " 30-1947" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } ], "formatLiteral": [ "Text" @@ -9969,24 +10078,13 @@ "label": "Offsite" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433057102216" - ], - "identifier": [ - "urn:shelfmark:TDRA+++ (Anthracite tri-district news) v. 30 (1947)", - "urn:barcode:33433057102216" + "recapCustomerCode": [ + "NL" ], - "identifierV2": [ - { - "value": "TDRA+++ (Anthracite tri-district news) v. 30 (1947)", - "type": "bf:ShelfMark" - }, + "volumeRange": [ { - "value": "33433057102216", - "type": "bf:Barcode" + "gte": 30, + "lte": 30 } ], "owner": [ @@ -9995,41 +10093,39 @@ "label": "Stephen A. Schwarzman Building" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "identifier": [ + "urn:shelfmark:TDRA+++ (Anthracite tri-district news) v. 30 (1947)", + "urn:barcode:33433057102216" ], "physicalLocation": [ "TDRA+++ (Anthracite tri-district news)" ], - "recapCustomerCode": [ - "NL" + "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000030 (1947)", + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 30-1947" + ], + "uri": "i12859079", + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433057102216" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "TDRA+++ (Anthracite tri-district news) v. 30 (1947)" - ], - "shelfMark_sort": "aTDRA+++ (Anthracite tri-district news) v. 000030 (1947)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 30, - "lte": 30 - } - ], - "uri": "i12859079" + ] }, "sort": [ " 30-1947" @@ -10080,6 +10176,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Trail breakers." ], @@ -10386,70 +10485,70 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], + "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297", "dateRange": [ { "gte": "2006-07-01", "lte": "2007-06-01" } ], - "enumerationChronology": [ - "No. 33 (Jul. 2006 - Jun. 2007)" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "volumeRaw": [ + "No. 33" ], "enumerationChronology_sort": [ " 33-2006-07-01" ], - "formatLiteral": [ - "Text" + "type": [ + "nypl:CheckinCardItem" ], - "holdingLocation": [ + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" + ], + "uri": "i-h1031662-10", + "identifierV2": [ { - "id": "loc:mag", - "label": "Schwarzman Building - Milstein Division Room 121" + "type": "bf:ShelfMark", + "value": "APR (Clark Co., Wash.) 81-297" } ], "holdingLocation_packed": [ "loc:mag||Schwarzman Building - Milstein Division Room 121" ], - "identifierV2": [ + "enumerationChronology": [ + "No. 33 (Jul. 2006 - Jun. 2007)" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ { - "value": "APR (Clark Co., Wash.) 81-297", - "type": "bf:ShelfMark" + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" } ], - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297", "status": [ { "id": "status:i", "label": "At bindery" } ], - "status_packed": [ - "status:i||At bindery" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1031662-10", "volumeRange": [ { "gte": 33, "lte": 33 } - ], - "volumeRaw": [ - "No. 33" ] }, "sort": [ @@ -10465,70 +10564,70 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], + "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297", "dateRange": [ { "gte": "2004-01-01", "lte": "2004-01-01" } ], - "enumerationChronology": [ - "Vol. 31-32 No. 1 (2004)" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "volumeRaw": [ + "Vol. 31-32 No. 1" ], "enumerationChronology_sort": [ " 31-2004-01-01" ], - "formatLiteral": [ - "Text" + "type": [ + "nypl:CheckinCardItem" ], - "holdingLocation": [ + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" + ], + "uri": "i-h1031662-12", + "identifierV2": [ { - "id": "loc:mag", - "label": "Schwarzman Building - Milstein Division Room 121" + "type": "bf:ShelfMark", + "value": "APR (Clark Co., Wash.) 81-297" } ], "holdingLocation_packed": [ "loc:mag||Schwarzman Building - Milstein Division Room 121" ], - "identifierV2": [ + "enumerationChronology": [ + "Vol. 31-32 No. 1 (2004)" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ { - "value": "APR (Clark Co., Wash.) 81-297", - "type": "bf:ShelfMark" + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" } ], - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" - ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297", "status": [ { "id": "status:na", "label": "Not available" } ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1031662-12", "volumeRange": [ { "gte": 31, "lte": 32 } - ], - "volumeRaw": [ - "Vol. 31-32 No. 1" ] }, "sort": [ @@ -10544,70 +10643,70 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], + "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297", "dateRange": [ { "gte": "2004-04-01", "lte": "2004-04-01" } ], - "enumerationChronology": [ - "Vol. 30 No. 3/4 (Spring 2004)" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:i||At bindery" + ], + "volumeRaw": [ + "Vol. 30 No. 3/4" ], "enumerationChronology_sort": [ " 30-2004-04-01" ], - "formatLiteral": [ - "Text" + "type": [ + "nypl:CheckinCardItem" ], - "holdingLocation": [ - { - "id": "loc:mag", - "label": "Schwarzman Building - Milstein Division Room 121" - } - ], - "holdingLocation_packed": [ - "loc:mag||Schwarzman Building - Milstein Division Room 121" + "shelfMark": [ + "APR (Clark Co., Wash.) 81-297" ], + "uri": "i-h1031662-9", "identifierV2": [ { - "value": "APR (Clark Co., Wash.) 81-297", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "APR (Clark Co., Wash.) 81-297" } ], - "shelfMark": [ - "APR (Clark Co., Wash.) 81-297" + "holdingLocation_packed": [ + "loc:mag||Schwarzman Building - Milstein Division Room 121" + ], + "enumerationChronology": [ + "Vol. 30 No. 3/4 (Spring 2004)" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag", + "label": "Schwarzman Building - Milstein Division Room 121" + } ], - "shelfMark_sort": "aAPR (Clark Co., Wash.) 81-000297", "status": [ { "id": "status:i", "label": "At bindery" } ], - "status_packed": [ - "status:i||At bindery" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1031662-9", "volumeRange": [ { "gte": 30, "lte": 30 } - ], - "volumeRaw": [ - "Vol. 30 No. 3/4" ] }, "sort": [ @@ -10670,6 +10769,9 @@ "dateEndString": [ "1928" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "The Jewish graphic." ], @@ -10792,21 +10894,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1103", + "label": "Dorot Jewish Division" } ], + "identifier": [ + "urn:shelfmark:*ZAN-*P519 Sept. 23, 1927-Jun 22, 1928 (Inc.)", + "urn:barcode:33433092672512" + ], + "physicalLocation": [ + "*ZAN-*P519" + ], + "shelfMark_sort": "a*ZAN-*P519 Sept. 23, 1927-Jun 22, 1928 (Inc.)", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], @@ -10816,73 +10920,71 @@ "lte": "1928" } ], - "enumerationChronology": [ - "Sept. 23, 1927-Jun 22, 1928 (Inc.)" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1927" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*ZAN-*P519 Sept. 23, 1927-Jun 22, 1928 (Inc.)" + ], + "uri": "i10006287", + "identifierV2": [ { - "id": "loc:maf82", - "label": "Schwarzman Building - Dorot Jewish Division Room 111" + "type": "bf:ShelfMark", + "value": "*ZAN-*P519 Sept. 23, 1927-Jun 22, 1928 (Inc.)" + }, + { + "type": "bf:Barcode", + "value": "33433092672512" } ], "holdingLocation_packed": [ "loc:maf82||Schwarzman Building - Dorot Jewish Division Room 111" ], + "enumerationChronology": [ + "Sept. 23, 1927-Jun 22, 1928 (Inc.)" + ], "idBarcode": [ "33433092672512" ], - "identifier": [ - "urn:shelfmark:*ZAN-*P519 Sept. 23, 1927-Jun 22, 1928 (Inc.)", - "urn:barcode:33433092672512" - ], - "identifierV2": [ - { - "value": "*ZAN-*P519 Sept. 23, 1927-Jun 22, 1928 (Inc.)", - "type": "bf:ShelfMark" - }, - { - "value": "33433092672512", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } - ], "owner_packed": [ "orgs:1103||Dorot Jewish Division" ], - "physicalLocation": [ - "*ZAN-*P519" - ], "requestable": [ true ], - "shelfMark": [ - "*ZAN-*P519 Sept. 23, 1927-Jun 22, 1928 (Inc.)" + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:maf82", + "label": "Schwarzman Building - Dorot Jewish Division Room 111" + } ], - "shelfMark_sort": "a*ZAN-*P519 Sept. 23, 1927-Jun 22, 1928 (Inc.)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10006287" + ] }, "sort": [ " -1927" @@ -10939,6 +11041,9 @@ "dateEndString": [ "999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Estructura y organización de los ministerios de poder ejecutivo nacional : [aportes para el estudio de la estructura del poder durante el gobierno del Dr. Alfonsín]" ], @@ -11069,100 +11174,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JLK 86-206 v. 1", + "urn:barcode:33433063254944" + ], + "physicalLocation": [ + "JLK 86-206" + ], + "shelfMark_sort": "aJLK 86-206 v. 000001", "catalogItemType_packed": [ "catalogItemType:3||serial" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JLK 86-206 v. 1" + ], + "uri": "i14747397", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JLK 86-206 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433063254944" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433063254944" ], - "identifier": [ - "urn:shelfmark:JLK 86-206 v. 1", - "urn:barcode:33433063254944" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JLK 86-206 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433063254944", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JLK 86-206" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JLK 86-206 v. 1" - ], - "shelfMark_sort": "aJLK 86-206 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i14747397" + ] }, "sort": [ " 1-" @@ -11209,6 +11314,9 @@ "dateEndString": [ "1597" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Problemata logica. Marburg 1597." ], @@ -11349,88 +11457,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JFB 86-112", + "urn:barcode:33433005151620" + ], + "physicalLocation": [ + "JFB 86-112" + ], + "shelfMark_sort": "aJFB 86-000112", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433005151620" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFB 86-112", - "urn:barcode:33433005151620" + "shelfMark": [ + "JFB 86-112" ], + "uri": "i10006744", "identifierV2": [ { - "value": "JFB 86-112", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFB 86-112" }, { - "value": "33433005151620", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433005151620" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005151620" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "JFB 86-112" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "JFB 86-112" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aJFB 86-000112", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10006744" + ] }, "sort": [ null @@ -11480,6 +11588,10 @@ "createdYear": [ 1643 ], + "buildingLocationIds": [ + "ma", + "rc" + ], "title": [ "La perspective speculative, et pratique ou sont demonstrez les fondemens de cet art, & de tout ce qui en a esté enseigné jusqu'ā present ..." ], @@ -11606,76 +11718,76 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], "accessMessage_packed": [ "accessMessage:u||Supervised use" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "identifier": [ + "urn:shelfmark:3-MBF (Aleaume, J. Perspective speculative, et pratique)", + "urn:barcode:33433090700216" ], + "physicalLocation": [ + "3-MBF (Aleaume, J. Perspective speculative, et pratique)" + ], + "shelfMark_sort": "a3-MBF (Aleaume, J. Perspective speculative, et pratique)", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mab98", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" + "id": "accessMessage:u", + "label": "Supervised use" } ], - "holdingLocation_packed": [ - "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090700216" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:3-MBF (Aleaume, J. Perspective speculative, et pratique)", - "urn:barcode:33433090700216" + "shelfMark": [ + "3-MBF (Aleaume, J. Perspective speculative, et pratique)" ], + "uri": "i10006752", "identifierV2": [ { - "value": "3-MBF (Aleaume, J. Perspective speculative, et pratique)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "3-MBF (Aleaume, J. Perspective speculative, et pratique)" }, { - "value": "33433090700216", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090700216" } ], - "physicalLocation": [ - "3-MBF (Aleaume, J. Perspective speculative, et pratique)" + "holdingLocation_packed": [ + "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" + ], + "idBarcode": [ + "33433090700216" ], "requestable": [ true ], - "shelfMark": [ - "3-MBF (Aleaume, J. Perspective speculative, et pratique)" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } ], - "shelfMark_sort": "a3-MBF (Aleaume, J. Perspective speculative, et pratique)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10006752" + ] }, "sort": [ null @@ -11690,88 +11802,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*ZM-189", + "urn:barcode:33433110386137" + ], + "physicalLocation": [ + "*ZM-189" + ], + "shelfMark_sort": "a*ZM-000189", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433110386137" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*ZM-189", - "urn:barcode:33433110386137" + "shelfMark": [ + "*ZM-189" ], + "uri": "i10006750", "identifierV2": [ { - "value": "*ZM-189", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*ZM-189" }, { - "value": "33433110386137", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433110386137" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433110386137" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*ZM-189" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*ZM-189" + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*ZM-000189", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10006750" + ] }, "sort": [ null @@ -12409,6 +12521,9 @@ "createdYear": [ 1791 ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Pétition faite à l'Assemblée nationale par MM. les Commissaires de l'Assemblée générale de la partie française de St.-Domingue : le 2 décembre 1791, et lue le 3." ], @@ -12538,87 +12653,87 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1116", + "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" } ], + "identifier": [ + "urn:shelfmark:Sc Rare C 86-3", + "urn:barcode:33433036927154" + ], + "physicalLocation": [ + "Sc Rare C 86-3" + ], + "shelfMark_sort": "aSc Rare C 86-000003", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433036927154" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Saint-Domingue.+Assembl%C3%A9e+g%C3%A9n%C3%A9rale+Commissaires.&CallNumber=Sc+Rare+C+86-3&Date=1791&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10013540&ItemISxN=i11901192x&ItemNumber=33433036927154&ItemPlace=%5BParis%3F%5D&ItemPublisher=De+l%27Impr.+de+P.F.+Didot+le+jeune%2C+%5B1791%3F%5D&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100135407&Site=SCHRB&Title=P%C3%A9tition+faite+%C3%A0+l%27Assembl%C3%A9e+nationale+par+MM.+les+Commissaires+de+l%27Assembl%C3%A9e+g%C3%A9n%C3%A9rale+de+la+partie+fran%C3%A7aise+de+St.-Domingue+%3A+le+2+d%C3%A9cembre+1791%2C+et+lue+le+3.&Transaction.CustomFields.Custom651=Haiti+History+Revolution%2C+1791-1804+Sources." ], - "identifier": [ - "urn:shelfmark:Sc Rare C 86-3", - "urn:barcode:33433036927154" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "Sc Rare C 86-3" ], + "uri": "i11901192", "identifierV2": [ { - "value": "Sc Rare C 86-3", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc Rare C 86-3" }, { - "value": "33433036927154", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433036927154" } ], - "owner": [ - { - "id": "orgs:1116", - "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" - } + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "idBarcode": [ + "33433036927154" ], "owner_packed": [ "orgs:1116||Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" ], - "physicalLocation": [ - "Sc Rare C 86-3" - ], "requestable": [ false ], - "shelfMark": [ - "Sc Rare C 86-3" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } ], - "shelfMark_sort": "aSc Rare C 86-000003", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11901192", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Saint-Domingue.+Assembl%C3%A9e+g%C3%A9n%C3%A9rale+Commissaires.&CallNumber=Sc+Rare+C+86-3&Date=1791&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10013540&ItemISxN=i11901192x&ItemNumber=33433036927154&ItemPlace=%5BParis%3F%5D&ItemPublisher=De+l%27Impr.+de+P.F.+Didot+le+jeune%2C+%5B1791%3F%5D&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100135407&Site=SCHRB&Title=P%C3%A9tition+faite+%C3%A0+l%27Assembl%C3%A9e+nationale+par+MM.+les+Commissaires+de+l%27Assembl%C3%A9e+g%C3%A9n%C3%A9rale+de+la+partie+fran%C3%A7aise+de+St.-Domingue+%3A+le+2+d%C3%A9cembre+1791%2C+et+lue+le+3.&Transaction.CustomFields.Custom651=Haiti+History+Revolution%2C+1791-1804+Sources." ] }, "sort": [ @@ -13054,6 +13169,9 @@ "dateEndString": [ "1795" ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Decret de la Convention nationale, du 16.e jour de pluviôse, an 2.e de la République françoise, une & indivisible, qui abolit l'esclavage des Nègres dans les colonies." ], @@ -13196,87 +13314,87 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1116", + "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" } ], + "identifier": [ + "urn:shelfmark:Sc Rare+ F 82-67", + "urn:barcode:33433036927170" + ], + "physicalLocation": [ + "Sc Rare+ F 82-67" + ], + "shelfMark_sort": "aSc Rare+ F 82-000067", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433036927170" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=France.+Convention+nationale.&CallNumber=Sc+Rare%2B+F+82-67&Date=1794&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10013542&ItemISxN=i119011943&ItemNumber=33433036927170&ItemPlace=A+Laon&ItemPublisher=De+l%27Imprimerie+de+Veuve+Melleville+%26+fils%2C+imprimeurs+du+D%C3%A9p.+de+l%27Aisne%2C+An+3+de+la+R%C3%A9publ.+%5B1794+or+1795%5D&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100135420&Site=SCHRB&Title=Decret+de+la+Convention+nationale%2C+du+16.e+jour+de+pluvi%C3%B4se%2C+an+2.e+de+la+R%C3%A9publique+fran%C3%A7oise%2C+une+%26+indivisible%2C+qui+abolit+l%27esclavage+des+N%C3%A8gres+dans+les+colonies.&Transaction.CustomFields.Custom651=France+Colonies+Politics+and+government+Early+works+to+1800." ], - "identifier": [ - "urn:shelfmark:Sc Rare+ F 82-67", - "urn:barcode:33433036927170" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "Sc Rare+ F 82-67" ], + "uri": "i11901194", "identifierV2": [ { - "value": "Sc Rare+ F 82-67", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc Rare+ F 82-67" }, { - "value": "33433036927170", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433036927170" } ], - "owner": [ - { - "id": "orgs:1116", - "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" - } + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "idBarcode": [ + "33433036927170" ], "owner_packed": [ "orgs:1116||Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" ], - "physicalLocation": [ - "Sc Rare+ F 82-67" - ], "requestable": [ false ], - "shelfMark": [ - "Sc Rare+ F 82-67" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } ], - "shelfMark_sort": "aSc Rare+ F 82-000067", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11901194", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=France.+Convention+nationale.&CallNumber=Sc+Rare%2B+F+82-67&Date=1794&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10013542&ItemISxN=i119011943&ItemNumber=33433036927170&ItemPlace=A+Laon&ItemPublisher=De+l%27Imprimerie+de+Veuve+Melleville+%26+fils%2C+imprimeurs+du+D%C3%A9p.+de+l%27Aisne%2C+An+3+de+la+R%C3%A9publ.+%5B1794+or+1795%5D&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100135420&Site=SCHRB&Title=Decret+de+la+Convention+nationale%2C+du+16.e+jour+de+pluvi%C3%B4se%2C+an+2.e+de+la+R%C3%A9publique+fran%C3%A7oise%2C+une+%26+indivisible%2C+qui+abolit+l%27esclavage+des+N%C3%A8gres+dans+les+colonies.&Transaction.CustomFields.Custom651=France+Colonies+Politics+and+government+Early+works+to+1800." ] }, "sort": [ @@ -13337,6 +13455,9 @@ "createdYear": [ 1627 ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Naturaleza, policia sagrada i profana, costumbres i ritos, disciplina i catechismo evangelico de todos etiopes" ], @@ -13472,87 +13593,87 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1116", + "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" } ], + "identifier": [ + "urn:shelfmark:Sc Rare F 82-70", + "urn:barcode:33433036927188" + ], + "physicalLocation": [ + "Sc Rare F 82-70" + ], + "shelfMark_sort": "aSc Rare F 82-000070", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433036927188" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Sandoval%2C+Alonso+de%2C+1576-1652.&CallNumber=Sc+Rare+F+82-70&Date=1627&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10013544&ItemISxN=i119011955&ItemNumber=33433036927188&ItemPlace=En+Sevilla&ItemPublisher=Por+Francisco+de+Lira%2C+impresor%2C+1627.&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100135444&Site=SCHRB&Title=Naturaleza%2C+policia+sagrada+i+profana%2C+costumbres+i+ritos%2C+disciplina+i+catechismo+evangelico+de+todos+etiopes&Transaction.CustomFields.Custom651=Africa+Social+life+and+customs." ], - "identifier": [ - "urn:shelfmark:Sc Rare F 82-70", - "urn:barcode:33433036927188" + "type": [ + "bf:Item" ], + "shelfMark": [ + "Sc Rare F 82-70" + ], + "uri": "i11901195", "identifierV2": [ { - "value": "Sc Rare F 82-70", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc Rare F 82-70" }, { - "value": "33433036927188", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433036927188" } ], - "owner": [ - { - "id": "orgs:1116", - "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" - } + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "idBarcode": [ + "33433036927188" ], "owner_packed": [ "orgs:1116||Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" ], - "physicalLocation": [ - "Sc Rare F 82-70" - ], "requestable": [ false ], - "shelfMark": [ - "Sc Rare F 82-70" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } ], - "shelfMark_sort": "aSc Rare F 82-000070", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11901195", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Sandoval%2C+Alonso+de%2C+1576-1652.&CallNumber=Sc+Rare+F+82-70&Date=1627&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10013544&ItemISxN=i119011955&ItemNumber=33433036927188&ItemPlace=En+Sevilla&ItemPublisher=Por+Francisco+de+Lira%2C+impresor%2C+1627.&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100135444&Site=SCHRB&Title=Naturaleza%2C+policia+sagrada+i+profana%2C+costumbres+i+ritos%2C+disciplina+i+catechismo+evangelico+de+todos+etiopes&Transaction.CustomFields.Custom651=Africa+Social+life+and+customs." ] }, "sort": [ @@ -13609,6 +13730,9 @@ "createdYear": [ 1770 ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Histoire philosophique et politique des établissemens & du commerce des Européens dans les deux Indes." ], @@ -13738,99 +13862,99 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1116", + "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" } ], + "identifier": [ + "urn:shelfmark:Sc Rare C 86-2 v. 6", + "urn:barcode:33433076137243" + ], + "physicalLocation": [ + "Sc Rare C 86-2" + ], + "shelfMark_sort": "aSc Rare C 86-2 v. 000006", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v. 6" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Raynal%2C+abb%C3%A9+%28Guillaume-Thomas-Fran%C3%A7ois%29%2C+1713-1796.&CallNumber=Sc+Rare+C+86-2&Date=1770&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10013584&ItemISxN=i321960841&ItemNumber=33433076137243&ItemPlace=A+Amsterdam&ItemPublisher=%5Bs.n.%5D%2C+1770.&ItemVolume=v.+6&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100135845&Site=SCHRB&Title=Histoire+philosophique+et+politique+des+%C3%A9tablissemens+%26+du+commerce+des+Europ%C3%A9ens+dans+les+deux+Indes.&Transaction.CustomFields.Custom651=America+Discovery+and+exploration." ], "enumerationChronology_sort": [ " 6-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "Sc Rare C 86-2 v. 6" + ], + "uri": "i32196084", + "identifierV2": [ { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" + "type": "bf:ShelfMark", + "value": "Sc Rare C 86-2 v. 6" + }, + { + "type": "bf:Barcode", + "value": "33433076137243" } ], "holdingLocation_packed": [ "loc:scdd2||Schomburg Center - Manuscripts & Archives" ], + "enumerationChronology": [ + "v. 6" + ], "idBarcode": [ "33433076137243" ], - "identifier": [ - "urn:shelfmark:Sc Rare C 86-2 v. 6", - "urn:barcode:33433076137243" - ], - "identifierV2": [ - { - "value": "Sc Rare C 86-2 v. 6", - "type": "bf:ShelfMark" - }, - { - "value": "33433076137243", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1116", - "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" - } - ], "owner_packed": [ "orgs:1116||Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" ], - "physicalLocation": [ - "Sc Rare C 86-2" - ], "requestable": [ false ], - "shelfMark": [ - "Sc Rare C 86-2 v. 6" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } ], - "shelfMark_sort": "aSc Rare C 86-2 v. 000006", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 6, "lte": 6 } - ], - "uri": "i32196084", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Raynal%2C+abb%C3%A9+%28Guillaume-Thomas-Fran%C3%A7ois%29%2C+1713-1796.&CallNumber=Sc+Rare+C+86-2&Date=1770&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10013584&ItemISxN=i321960841&ItemNumber=33433076137243&ItemPlace=A+Amsterdam&ItemPublisher=%5Bs.n.%5D%2C+1770.&ItemVolume=v.+6&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100135845&Site=SCHRB&Title=Histoire+philosophique+et+politique+des+%C3%A9tablissemens+%26+du+commerce+des+Europ%C3%A9ens+dans+les+deux+Indes.&Transaction.CustomFields.Custom651=America+Discovery+and+exploration." ] }, "sort": [ @@ -13846,99 +13970,99 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1116", + "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" } ], + "identifier": [ + "urn:shelfmark:Sc Rare C 86-2 v. 2", + "urn:barcode:33433076137235" + ], + "physicalLocation": [ + "Sc Rare C 86-2" + ], + "shelfMark_sort": "aSc Rare C 86-2 v. 000002", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Raynal%2C+abb%C3%A9+%28Guillaume-Thomas-Fran%C3%A7ois%29%2C+1713-1796.&CallNumber=Sc+Rare+C+86-2&Date=1770&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10013584&ItemISxN=i32196083x&ItemNumber=33433076137235&ItemPlace=A+Amsterdam&ItemPublisher=%5Bs.n.%5D%2C+1770.&ItemVolume=v.+2&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100135845&Site=SCHRB&Title=Histoire+philosophique+et+politique+des+%C3%A9tablissemens+%26+du+commerce+des+Europ%C3%A9ens+dans+les+deux+Indes.&Transaction.CustomFields.Custom651=America+Discovery+and+exploration." ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "Sc Rare C 86-2 v. 2" + ], + "uri": "i32196083", + "identifierV2": [ { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" + "type": "bf:ShelfMark", + "value": "Sc Rare C 86-2 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433076137235" } ], "holdingLocation_packed": [ "loc:scdd2||Schomburg Center - Manuscripts & Archives" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433076137235" ], - "identifier": [ - "urn:shelfmark:Sc Rare C 86-2 v. 2", - "urn:barcode:33433076137235" - ], - "identifierV2": [ - { - "value": "Sc Rare C 86-2 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433076137235", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1116", - "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" - } - ], "owner_packed": [ "orgs:1116||Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" ], - "physicalLocation": [ - "Sc Rare C 86-2" - ], "requestable": [ false ], - "shelfMark": [ - "Sc Rare C 86-2 v. 2" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } ], - "shelfMark_sort": "aSc Rare C 86-2 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i32196083", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Raynal%2C+abb%C3%A9+%28Guillaume-Thomas-Fran%C3%A7ois%29%2C+1713-1796.&CallNumber=Sc+Rare+C+86-2&Date=1770&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10013584&ItemISxN=i32196083x&ItemNumber=33433076137235&ItemPlace=A+Amsterdam&ItemPublisher=%5Bs.n.%5D%2C+1770.&ItemVolume=v.+2&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100135845&Site=SCHRB&Title=Histoire+philosophique+et+politique+des+%C3%A9tablissemens+%26+du+commerce+des+Europ%C3%A9ens+dans+les+deux+Indes.&Transaction.CustomFields.Custom651=America+Discovery+and+exploration." ] }, "sort": [ @@ -13954,99 +14078,99 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "owner": [ + { + "id": "orgs:1116", + "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" + } + ], + "identifier": [ + "urn:shelfmark:Sc Rare C 86-2 v. 1", + "urn:barcode:33433036927279" + ], + "physicalLocation": [ + "Sc Rare C 86-2" + ], + "shelfMark_sort": "aSc Rare C 86-2 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], "accessMessage": [ { "id": "accessMessage:1", "label": "Use in library" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" + "status_packed": [ + "status:a||Available" ], - "enumerationChronology": [ - "v. 1" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Raynal%2C+abb%C3%A9+%28Guillaume-Thomas-Fran%C3%A7ois%29%2C+1713-1796.&CallNumber=Sc+Rare+C+86-2&Date=1770&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10013584&ItemISxN=i119014671&ItemNumber=33433036927279&ItemPlace=A+Amsterdam&ItemPublisher=%5Bs.n.%5D%2C+1770.&ItemVolume=v.+1&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100135845&Site=SCHRB&Title=Histoire+philosophique+et+politique+des+%C3%A9tablissemens+%26+du+commerce+des+Europ%C3%A9ens+dans+les+deux+Indes.&Transaction.CustomFields.Custom651=America+Discovery+and+exploration." ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "Sc Rare C 86-2 v. 1" + ], + "uri": "i11901467", + "identifierV2": [ { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" + "type": "bf:ShelfMark", + "value": "Sc Rare C 86-2 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433036927279" } ], "holdingLocation_packed": [ "loc:scdd2||Schomburg Center - Manuscripts & Archives" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433036927279" ], - "identifier": [ - "urn:shelfmark:Sc Rare C 86-2 v. 1", - "urn:barcode:33433036927279" - ], - "identifierV2": [ - { - "value": "Sc Rare C 86-2 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433036927279", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1116", - "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" - } - ], "owner_packed": [ "orgs:1116||Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" ], - "physicalLocation": [ - "Sc Rare C 86-2" - ], "requestable": [ false ], - "shelfMark": [ - "Sc Rare C 86-2 v. 1" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } ], - "shelfMark_sort": "aSc Rare C 86-2 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i11901467", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Raynal%2C+abb%C3%A9+%28Guillaume-Thomas-Fran%C3%A7ois%29%2C+1713-1796.&CallNumber=Sc+Rare+C+86-2&Date=1770&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10013584&ItemISxN=i119014671&ItemNumber=33433036927279&ItemPlace=A+Amsterdam&ItemPublisher=%5Bs.n.%5D%2C+1770.&ItemVolume=v.+1&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100135845&Site=SCHRB&Title=Histoire+philosophique+et+politique+des+%C3%A9tablissemens+%26+du+commerce+des+Europ%C3%A9ens+dans+les+deux+Indes.&Transaction.CustomFields.Custom651=America+Discovery+and+exploration." ] }, "sort": [ @@ -14093,6 +14217,9 @@ "createdYear": [ 1792 ], + "buildingLocationIds": [ + "sc" + ], "title": [ "An Address to Her Royal Highness the Dutchess of York, against the use of sugar." ], @@ -14220,87 +14347,87 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1116", + "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" } ], + "identifier": [ + "urn:shelfmark:Sc Rare+ G 86-31", + "urn:barcode:33433036927360" + ], + "physicalLocation": [ + "Sc Rare+ G 86-31" + ], + "shelfMark_sort": "aSc Rare+ G 86-000031", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scdd2", - "label": "Schomburg Center - Manuscripts & Archives" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scdd2||Schomburg Center - Manuscripts & Archives" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433036927360" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=Sc+Rare%2B+G+86-31&Date=1792&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10013594&ItemISxN=i119014762&ItemNumber=33433036927360&ItemPlace=%5BLondon%3F&ItemPublisher=s.n.%5D%2C+1792.&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100135948&Site=SCHRB&Title=An+Address+to+Her+Royal+Highness+the+Dutchess+of+York%2C+against+the+use+of+sugar." ], - "identifier": [ - "urn:shelfmark:Sc Rare+ G 86-31", - "urn:barcode:33433036927360" + "type": [ + "bf:Item" ], + "shelfMark": [ + "Sc Rare+ G 86-31" + ], + "uri": "i11901476", "identifierV2": [ { - "value": "Sc Rare+ G 86-31", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc Rare+ G 86-31" }, { - "value": "33433036927360", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433036927360" } ], - "owner": [ - { - "id": "orgs:1116", - "label": "Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" - } + "holdingLocation_packed": [ + "loc:scdd2||Schomburg Center - Manuscripts & Archives" + ], + "idBarcode": [ + "33433036927360" ], "owner_packed": [ "orgs:1116||Schomburg Center for Research in Black Culture, Manuscripts, Archives and Rare Books Division" ], - "physicalLocation": [ - "Sc Rare+ G 86-31" - ], "requestable": [ false ], - "shelfMark": [ - "Sc Rare+ G 86-31" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scdd2", + "label": "Schomburg Center - Manuscripts & Archives" + } ], - "shelfMark_sort": "aSc Rare+ G 86-000031", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11901476", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=Sc+Rare%2B+G+86-31&Date=1792&Form=30&Genre=book+non-circ&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10013594&ItemISxN=i119014762&ItemNumber=33433036927360&ItemPlace=%5BLondon%3F&ItemPublisher=s.n.%5D%2C+1792.&Location=Schomburg+Center+Manuscripts%2C+Archives+and+Rare+Books&ReferenceNumber=b100135948&Site=SCHRB&Title=An+Address+to+Her+Royal+Highness+the+Dutchess+of+York%2C+against+the+use+of+sugar." ] }, "sort": [ @@ -14360,6 +14487,9 @@ "dateEndString": [ "19uu" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Ningas." ], @@ -14501,21 +14631,9 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -14525,11 +14643,36 @@ "lte": "1978" } ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JFM 85-295 v. 8 oct 1978- ma y1979" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFM 85-295 v. 8 oct 1978- ma y1979" + }, + { + "type": "bf:Barcode", + "value": "33433005091180" + } + ], "enumerationChronology": [ "v. 8 oct 1978- ma y1979" ], - "enumerationChronology_sort": [ - " 8-1978" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } ], "formatLiteral": [ "Text" @@ -14540,67 +14683,54 @@ "label": "Offsite" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "recapCustomerCode": [ + "NA" ], - "idBarcode": [ - "33433005091180" + "volumeRange": [ + { + "gte": 8, + "lte": 8 + } + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } ], "identifier": [ "urn:shelfmark:JFM 85-295 v. 8 oct 1978- ma y1979", "urn:barcode:33433005091180" ], - "identifierV2": [ - { - "value": "JFM 85-295 v. 8 oct 1978- ma y1979", - "type": "bf:ShelfMark" - }, - { - "value": "33433005091180", - "type": "bf:Barcode" - } + "physicalLocation": [ + "JFM 85-295" + ], + "shelfMark_sort": "aJFM 85-295 v. 000008 oct 1978- ma y1979", + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 8-1978" + ], + "uri": "i10006769", + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "idBarcode": [ + "33433005091180" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "JFM 85-295" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "JFM 85-295 v. 8 oct 1978- ma y1979" - ], - "shelfMark_sort": "aJFM 85-295 v. 000008 oct 1978- ma y1979", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 8, - "lte": 8 - } - ], - "uri": "i10006769" + ] }, "sort": [ " 8-1978" @@ -14666,6 +14796,9 @@ "dateEndString": [ "19uu" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Quadrante" ], @@ -14795,21 +14928,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*ZAN-M114 July 1933-July/Aug. 1935, inc.", + "urn:barcode:33433110459025" + ], + "physicalLocation": [ + "*ZAN-M114" + ], + "shelfMark_sort": "a*ZAN-M114 July 1933-July/Aug. 1935, inc.", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], @@ -14819,76 +14954,74 @@ "lte": "1935" } ], - "enumerationChronology": [ - "July 1933-July/Aug. 1935, inc." + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1933" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*ZAN-M114 July 1933-July/Aug. 1935, inc." + ], + "uri": "i30719650", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*ZAN-M114 July 1933-July/Aug. 1935, inc." + }, + { + "type": "bf:Barcode", + "value": "33433110459025" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "July 1933-July/Aug. 1935, inc." + ], "idBarcode": [ "33433110459025" ], - "identifier": [ - "urn:shelfmark:*ZAN-M114 July 1933-July/Aug. 1935, inc.", - "urn:barcode:33433110459025" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*ZAN-M114 July 1933-July/Aug. 1935, inc.", - "type": "bf:ShelfMark" - }, - { - "value": "33433110459025", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*ZAN-M114" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*ZAN-M114 July 1933-July/Aug. 1935, inc." - ], - "shelfMark_sort": "a*ZAN-M114 July 1933-July/Aug. 1935, inc.", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i30719650" + ] }, "sort": [ " -1933" @@ -14956,6 +15089,10 @@ "dateEndString": [ "1989" ], + "buildingLocationIds": [ + "ma", + "rc" + ], "title": [ "National thrift news" ], @@ -15096,21 +15233,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:*ZAN-T5363 v. 13, no. 1-27 (Oct. 1988-May 22, 1989)", + "urn:barcode:33433062614056" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "shelfMark_sort": "a*ZAN-T5363 v. 000013, no. 1-27 (Oct. 1988-May 22, 1989)", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], @@ -15120,79 +15259,77 @@ "lte": "1989" } ], - "enumerationChronology": [ - "v. 13, no. 1-27 (Oct. 1988-May 22, 1989)" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 13-1988" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*ZAN-T5363 v. 13, no. 1-27 (Oct. 1988-May 22, 1989)" + ], + "uri": "i14747442", + "identifierV2": [ { - "id": "loc:mai82", - "label": "Schwarzman Building M1 - Microforms Room 315" + "type": "bf:ShelfMark", + "value": "*ZAN-T5363 v. 13, no. 1-27 (Oct. 1988-May 22, 1989)" + }, + { + "type": "bf:Barcode", + "value": "33433062614056" } ], "holdingLocation_packed": [ "loc:mai82||Schwarzman Building M1 - Microforms Room 315" ], + "enumerationChronology": [ + "v. 13, no. 1-27 (Oct. 1988-May 22, 1989)" + ], "idBarcode": [ "33433062614056" ], - "identifier": [ - "urn:shelfmark:*ZAN-T5363 v. 13, no. 1-27 (Oct. 1988-May 22, 1989)", - "urn:barcode:33433062614056" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 13, no. 1-27 (Oct. 1988-May 22, 1989)", - "type": "bf:ShelfMark" - }, - { - "value": "33433062614056", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "*ZAN-T5363" - ], "requestable": [ true ], - "shelfMark": [ - "*ZAN-T5363 v. 13, no. 1-27 (Oct. 1988-May 22, 1989)" + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mai82", + "label": "Schwarzman Building M1 - Microforms Room 315" + } ], - "shelfMark_sort": "a*ZAN-T5363 v. 000013, no. 1-27 (Oct. 1988-May 22, 1989)", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 13, "lte": 13 } - ], - "uri": "i14747442" + ] }, "sort": [ " 13-1988" @@ -15207,21 +15344,9 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } - ], "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], @@ -15231,11 +15356,36 @@ "lte": "1989" } ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZAN-T5363 v. 13, Issue 1-27, Oct. (1988) - May 22 (1989)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZAN-T5363 v. 13, Issue 1-27, Oct. (1988) - May 22 (1989)" + }, + { + "type": "bf:Barcode", + "value": "33433093588832" + } + ], "enumerationChronology": [ "v. 13, Issue 1-27, Oct. (1988) - May 22 (1989)" ], - "enumerationChronology_sort": [ - " 13-1988" + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } ], "formatLiteral": [ "Text" @@ -15246,24 +15396,13 @@ "label": "Offsite" } ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "idBarcode": [ - "33433093588832" - ], - "identifier": [ - "urn:shelfmark:*ZAN-T5363 v. 13, Issue 1-27, Oct. (1988) - May 22 (1989)", - "urn:barcode:33433093588832" + "recapCustomerCode": [ + "NA" ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 13, Issue 1-27, Oct. (1988) - May 22 (1989)", - "type": "bf:ShelfMark" - }, + "volumeRange": [ { - "value": "33433093588832", - "type": "bf:Barcode" + "gte": 13, + "lte": 13 } ], "owner": [ @@ -15272,41 +15411,39 @@ "label": "Stephen A. Schwarzman Building" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "identifier": [ + "urn:shelfmark:*ZAN-T5363 v. 13, Issue 1-27, Oct. (1988) - May 22 (1989)", + "urn:barcode:33433093588832" ], "physicalLocation": [ "*ZAN-T5363" ], - "recapCustomerCode": [ - "NA" + "shelfMark_sort": "a*ZAN-T5363 v. 000013, Issue 1-27, Oct. (1988) - May 22 (1989)", + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 13-1988" + ], + "uri": "i27646161", + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" + ], + "idBarcode": [ + "33433093588832" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "*ZAN-T5363 v. 13, Issue 1-27, Oct. (1988) - May 22 (1989)" - ], - "shelfMark_sort": "a*ZAN-T5363 v. 000013, Issue 1-27, Oct. (1988) - May 22 (1989)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 13, - "lte": 13 - } - ], - "uri": "i27646161" + ] }, "sort": [ " 13-1988" @@ -15321,21 +15458,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:*ZAN-T5363 v. 13 (Oct. 3, 1988-May 22, 1989)", + "urn:barcode:33433062614098" + ], + "physicalLocation": [ + "*ZAN-T5363" + ], + "shelfMark_sort": "a*ZAN-T5363 v. 000013 (Oct. 3, 1988-May 22, 1989)", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], @@ -15345,79 +15484,77 @@ "lte": "1989" } ], - "enumerationChronology": [ - "v. 13 (Oct. 3, 1988-May 22, 1989)" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 13-1988" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*ZAN-T5363 v. 13 (Oct. 3, 1988-May 22, 1989)" + ], + "uri": "i14747445", + "identifierV2": [ { - "id": "loc:mai82", - "label": "Schwarzman Building M1 - Microforms Room 315" + "type": "bf:ShelfMark", + "value": "*ZAN-T5363 v. 13 (Oct. 3, 1988-May 22, 1989)" + }, + { + "type": "bf:Barcode", + "value": "33433062614098" } ], "holdingLocation_packed": [ "loc:mai82||Schwarzman Building M1 - Microforms Room 315" ], + "enumerationChronology": [ + "v. 13 (Oct. 3, 1988-May 22, 1989)" + ], "idBarcode": [ "33433062614098" ], - "identifier": [ - "urn:shelfmark:*ZAN-T5363 v. 13 (Oct. 3, 1988-May 22, 1989)", - "urn:barcode:33433062614098" - ], - "identifierV2": [ - { - "value": "*ZAN-T5363 v. 13 (Oct. 3, 1988-May 22, 1989)", - "type": "bf:ShelfMark" - }, - { - "value": "33433062614098", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "*ZAN-T5363" - ], "requestable": [ true ], - "shelfMark": [ - "*ZAN-T5363 v. 13 (Oct. 3, 1988-May 22, 1989)" + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mai82", + "label": "Schwarzman Building M1 - Microforms Room 315" + } ], - "shelfMark_sort": "a*ZAN-T5363 v. 000013 (Oct. 3, 1988-May 22, 1989)", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 13, "lte": 13 } - ], - "uri": "i14747445" + ] }, "sort": [ " 13-1988" @@ -15473,6 +15610,9 @@ "dateEndString": [ "19uu" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Latvijas muzikis" ], @@ -15598,21 +15738,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*ZAN-*Q1241 1929-May 1934", + "urn:barcode:33433110389370" + ], + "physicalLocation": [ + "*ZAN-*Q1241" + ], + "shelfMark_sort": "a*ZAN-*Q1241 1929-May 001934", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], @@ -15622,76 +15764,74 @@ "lte": "1934" } ], - "enumerationChronology": [ - "1929-May 1934" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1929" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*ZAN-*Q1241 1929-May 1934" + ], + "uri": "i30780148", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*ZAN-*Q1241 1929-May 1934" + }, + { + "type": "bf:Barcode", + "value": "33433110389370" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "1929-May 1934" + ], "idBarcode": [ "33433110389370" ], - "identifier": [ - "urn:shelfmark:*ZAN-*Q1241 1929-May 1934", - "urn:barcode:33433110389370" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*ZAN-*Q1241 1929-May 1934", - "type": "bf:ShelfMark" - }, - { - "value": "33433110389370", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*ZAN-*Q1241" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*ZAN-*Q1241 1929-May 1934" - ], - "shelfMark_sort": "a*ZAN-*Q1241 1929-May 001934", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i30780148" + ] }, "sort": [ " -1929" diff --git a/test/fixtures/query-1672a25f4faaa5ac3220a27d6b3ee209.json b/test/fixtures/query-1672a25f4faaa5ac3220a27d6b3ee209.json index 1b23cffb..37188860 100644 --- a/test/fixtures/query-1672a25f4faaa5ac3220a27d6b3ee209.json +++ b/test/fixtures/query-1672a25f4faaa5ac3220a27d6b3ee209.json @@ -1,5 +1,5 @@ { - "took": 252, + "took": 110, "timed_out": false, "_shards": { "total": 2, @@ -332,6 +332,9 @@ "createdYear": [ 1989 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Scottish islands" ], @@ -476,79 +479,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:JFF 89-526", + "urn:barcode:33433050409147" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "JFF 89-526" + ], + "shelfMark_sort": "aJFF 89-000526", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433050409147" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFF 89-526", - "urn:barcode:33433050409147" + "shelfMark": [ + "JFF 89-526" ], + "uri": "i13783780", "identifierV2": [ { - "value": "JFF 89-526", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFF 89-526" }, { - "value": "33433050409147", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433050409147" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "JFF 89-526" + "idBarcode": [ + "33433050409147" ], "requestable": [ true ], - "shelfMark": [ - "JFF 89-526" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "aJFF 89-000526", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783780" + ] }, "sort": [ null @@ -598,6 +601,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Śrī Ramaṇa Maharshi : eka saṃkshipta jīvanī : sacitra." ], @@ -854,12 +860,15 @@ "createdYear": [ 1972 ], - "title": [ - "Aṣṭakapañcakam = Ashtaka-panchakam ; Jaladhijānandalaharī = Jaladhijanandalahari" + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Aṣṭakapañcakam = Ashtaka-panchakam ; Jaladhijānandalaharī = Jaladhijanandalahari" + ], "shelfMark": [ "*OLY 83-4674" ], @@ -884,9 +893,6 @@ "dateStartYear": [ 1972 ], - "idOclc": [ - "NYPG001000104-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -913,6 +919,9 @@ "value": "(WaOLN)nyp0200155" } ], + "idOclc": [ + "NYPG001000104-B" + ], "uniformTitle": [ "Aṣṭakapañcaka" ], @@ -967,16 +976,16 @@ "placeOfPublication": [ "[S.l." ], + "titleAlt": [ + "Aṣṭakapañcaka", + "Jaladhijānandalaharī." + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Aṣṭakapañcaka", - "Jaladhijānandalaharī." - ], "dimensions": [ "22 cm." ] @@ -1003,79 +1012,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 83-4674", + "urn:barcode:33433060370396" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "*OLY 83-4674" + ], + "shelfMark_sort": "a*OLY 83-004674", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060370396" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 83-4674", - "urn:barcode:33433060370396" + "shelfMark": [ + "*OLY 83-4674" ], + "uri": "i13783803", "identifierV2": [ { - "value": "*OLY 83-4674", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 83-4674" }, { - "value": "33433060370396", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060370396" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "*OLY 83-4674" + "idBarcode": [ + "33433060370396" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 83-4674" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 83-004674", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783803" + ] }, "sort": [ null @@ -1132,6 +1141,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Āḻv̲arkaḷ Tamiḻil akkārak kaṉikaḷ" ], @@ -1272,79 +1284,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 83-4895", + "urn:barcode:33433060419649" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 83-4895" ], + "shelfMark_sort": "a*OLY 83-004895", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060419649" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 83-4895", - "urn:barcode:33433060419649" + "shelfMark": [ + "*OLY 83-4895" ], + "uri": "i13783808", "identifierV2": [ { - "value": "*OLY 83-4895", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 83-4895" }, { - "value": "33433060419649", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060419649" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 83-4895" + "idBarcode": [ + "33433060419649" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 83-4895" - ], - "shelfMark_sort": "a*OLY 83-004895", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "uri": "i13783808" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -1399,6 +1411,9 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Rāmasnehī-sampradāya kī dārśanika prshṭhabhūmi." ], @@ -1539,79 +1554,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 84-85", + "urn:barcode:33433060419680" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "*OLY 84-85" + ], + "shelfMark_sort": "a*OLY 84-000085", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060419680" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 84-85", - "urn:barcode:33433060419680" + "shelfMark": [ + "*OLY 84-85" ], + "uri": "i13783812", "identifierV2": [ { - "value": "*OLY 84-85", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 84-85" }, { - "value": "33433060419680", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060419680" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 84-85" + "idBarcode": [ + "33433060419680" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 84-85" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 84-000085", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783812" + ] }, "sort": [ null @@ -1661,6 +1676,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Irāmāyaṇap pāttiraṅkaḷ; ātāraṅkaḷil uḷḷapaṭi tokuttatu." ], @@ -1798,79 +1816,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 83-2592", + "urn:barcode:33433060418526" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 83-2592" ], + "shelfMark_sort": "a*OLY 83-002592", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060418526" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 83-2592", - "urn:barcode:33433060418526" + "shelfMark": [ + "*OLY 83-2592" ], + "uri": "i13783817", "identifierV2": [ { - "value": "*OLY 83-2592", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 83-2592" }, { - "value": "33433060418526", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060418526" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 83-2592" + "idBarcode": [ + "33433060418526" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 83-2592" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 83-002592", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783817" + ] }, "sort": [ null @@ -1920,12 +1938,15 @@ "createdYear": [ 1978 ], - "title": [ - "Ramaṇa Maharshi : evaṃ ātma-jñāna kā mārga. [́Hindi edition of Ramana Maharshi and the Path of Self-Knowledge by Arthur Osbourne]" + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Ramaṇa Maharshi : evaṃ ātma-jñāna kā mārga. [́Hindi edition of Ramana Maharshi and the Path of Self-Knowledge by Arthur Osbourne]" + ], "shelfMark": [ "*OLY 82-3981" ], @@ -1950,9 +1971,6 @@ "dateStartYear": [ 1978 ], - "idOclc": [ - "NYPG001000151-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -1975,6 +1993,9 @@ "value": "(WaOLN)nyp0200202" } ], + "idOclc": [ + "NYPG001000151-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -2053,79 +2074,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 82-3981", + "urn:barcode:33433060417486" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "*OLY 82-3981" + ], + "shelfMark_sort": "a*OLY 82-003981", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060417486" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 82-3981", - "urn:barcode:33433060417486" + "shelfMark": [ + "*OLY 82-3981" ], + "uri": "i13783820", "identifierV2": [ { - "value": "*OLY 82-3981", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 82-3981" }, { - "value": "33433060417486", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060417486" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "*OLY 82-3981" + "idBarcode": [ + "33433060417486" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 82-3981" - ], - "shelfMark_sort": "a*OLY 82-003981", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "uri": "i13783820" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -2187,6 +2208,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "The Thirumazhisaiars' Association : (Mahisara Abhijana Sabha) silver jubilee souvenir, 1972." ], @@ -2322,79 +2346,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 84-1084", + "urn:barcode:33433060419979" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 84-1084" ], + "shelfMark_sort": "a*OLY 84-001084", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060419979" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 84-1084", - "urn:barcode:33433060419979" + "shelfMark": [ + "*OLY 84-1084" ], + "uri": "i13783829", "identifierV2": [ { - "value": "*OLY 84-1084", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 84-1084" }, { - "value": "33433060419979", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060419979" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 84-1084" + "idBarcode": [ + "33433060419979" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 84-1084" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 84-001084", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783829" + ] }, "sort": [ null @@ -2444,6 +2468,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Revelation : Śrīramaṇahṛdayam. A Sanskrit Version of the Ulladu Narpadu of Bhagavan Sri Ramana with an English translation" ], @@ -2570,79 +2597,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 82-3739", + "urn:barcode:33433060417452" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "*OLY 82-3739" + ], + "shelfMark_sort": "a*OLY 82-003739", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060417452" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 82-3739", - "urn:barcode:33433060417452" + "shelfMark": [ + "*OLY 82-3739" ], + "uri": "i13783845", "identifierV2": [ { - "value": "*OLY 82-3739", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 82-3739" }, { - "value": "33433060417452", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060417452" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 82-3739" + "idBarcode": [ + "33433060417452" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 82-3739" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 82-003739", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783845" + ] }, "sort": [ null @@ -2692,6 +2719,9 @@ "createdYear": [ 1963 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Bṛhatstotraratrākaraḥ, sacitraḥ; stotrasaṃkhyā 224." ], @@ -2826,79 +2856,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 82-3968", + "urn:barcode:33433060417478" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 82-3968" ], + "shelfMark_sort": "a*OLY 82-003968", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060417478" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 82-3968", - "urn:barcode:33433060417478" + "shelfMark": [ + "*OLY 82-3968" ], + "uri": "i13783847", "identifierV2": [ { - "value": "*OLY 82-3968", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 82-3968" }, { - "value": "33433060417478", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060417478" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 82-3968" + "idBarcode": [ + "33433060417478" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 82-3968" - ], - "shelfMark_sort": "a*OLY 82-003968", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "uri": "i13783847" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -2963,6 +2993,9 @@ "dateEndString": [ "1962" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Ṭibb al-Ṣādiq, ṭibb va bihdāsht az naẓar-i Imām Jaʻfar Ṣādiq." ], @@ -3108,79 +3141,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OGI 82-3991", + "urn:barcode:33433058031224" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "*OGI 82-3991" + ], + "shelfMark_sort": "a*OGI 82-003991", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058031224" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGI 82-3991", - "urn:barcode:33433058031224" + "shelfMark": [ + "*OGI 82-3991" ], + "uri": "i12858044", "identifierV2": [ { - "value": "*OGI 82-3991", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGI 82-3991" }, { - "value": "33433058031224", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058031224" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OGI 82-3991" + "idBarcode": [ + "33433058031224" ], "requestable": [ true ], - "shelfMark": [ - "*OGI 82-3991" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OGI 82-003991", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12858044" + ] }, "sort": [ null @@ -3237,12 +3270,15 @@ "createdYear": [ 1961 ], - "title": [ - "Ṭibb va bihdāsht az naẓar-i Imām ʻAlī ibn Mūsā al-Rizā" + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Ṭibb va bihdāsht az naẓar-i Imām ʻAlī ibn Mūsā al-Rizā" + ], "shelfMark": [ "*OGI 82-3989" ], @@ -3270,9 +3306,6 @@ "dateStartYear": [ 1961 ], - "idOclc": [ - "NYPG001000298-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -3299,6 +3332,9 @@ "value": "(WaOLN)nyp0200344" } ], + "idOclc": [ + "NYPG001000298-B" + ], "popularity": 2, "updatedAt": 1729000306794, "publicationStatement": [ @@ -3383,79 +3419,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } + "identifier": [ + "urn:shelfmark:*OGI 82-3989", + "urn:barcode:33433058030721" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OGI 82-3989" ], + "shelfMark_sort": "a*OGI 82-003989", "catalogItemType_packed": [ "catalogItemType:32||google project, book" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058030721" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGI 82-3989", - "urn:barcode:33433058030721" + "shelfMark": [ + "*OGI 82-3989" ], + "uri": "i12858045", "identifierV2": [ { - "value": "*OGI 82-3989", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGI 82-3989" }, { - "value": "33433058030721", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058030721" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "*OGI 82-3989" + "idBarcode": [ + "33433058030721" ], "requestable": [ true ], - "shelfMark": [ - "*OGI 82-3989" + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "a*OGI 82-003989", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12858045" + ] }, "sort": [ null @@ -3514,6 +3550,9 @@ "dateEndString": [ "1880" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Kitāb-i mustaṭāb-i ganj-i dānish" ], @@ -3646,79 +3685,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } + "identifier": [ + "urn:shelfmark:*ONA+ 82-2677 ", + "urn:barcode:33433059840763" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "*ONA+ 82-2677 " + ], + "shelfMark_sort": "a*ONA+ 82-2677 ", "catalogItemType_packed": [ "catalogItemType:32||google project, book" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433059840763" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*ONA+ 82-2677 ", - "urn:barcode:33433059840763" + "shelfMark": [ + "*ONA+ 82-2677 " ], + "uri": "i13783848", "identifierV2": [ { - "value": "*ONA+ 82-2677 ", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*ONA+ 82-2677 " }, { - "value": "33433059840763", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433059840763" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*ONA+ 82-2677 " + "idBarcode": [ + "33433059840763" ], "requestable": [ true ], - "shelfMark": [ - "*ONA+ 82-2677 " - ], - "shelfMark_sort": "a*ONA+ 82-2677 ", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:32", + "label": "google project, book" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "uri": "i13783848" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -3774,6 +3813,9 @@ "createdYear": [ 1949 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Favāʼid al-Razavīyah : zindigānī-i ʻulamāʼī maẕ hab-i shīʻah" ], @@ -3901,79 +3943,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } + "identifier": [ + "urn:shelfmark:*OGI 83-4798", + "urn:barcode:33433058030051" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OGI 83-4798" ], + "shelfMark_sort": "a*OGI 83-004798", "catalogItemType_packed": [ "catalogItemType:32||google project, book" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058030051" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGI 83-4798", - "urn:barcode:33433058030051" + "shelfMark": [ + "*OGI 83-4798" ], + "uri": "i12858047", "identifierV2": [ { - "value": "*OGI 83-4798", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGI 83-4798" }, { - "value": "33433058030051", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058030051" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "*OGI 83-4798" + "idBarcode": [ + "33433058030051" ], "requestable": [ true ], - "shelfMark": [ - "*OGI 83-4798" + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "a*OGI 83-004798", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12858047" + ] }, "sort": [ null @@ -4027,6 +4069,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Aimperu viḻākkaḷ." ], @@ -4165,79 +4210,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 84-1823", + "urn:barcode:33433060420118" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "*OLY 84-1823" + ], + "shelfMark_sort": "a*OLY 84-001823", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060420118" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 84-1823", - "urn:barcode:33433060420118" + "shelfMark": [ + "*OLY 84-1823" ], + "uri": "i13783870", "identifierV2": [ { - "value": "*OLY 84-1823", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 84-1823" }, { - "value": "33433060420118", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060420118" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 84-1823" + "idBarcode": [ + "33433060420118" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 84-1823" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 84-001823", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783870" + ] }, "sort": [ null @@ -4293,6 +4338,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Caivattiṉ camaracam." ], @@ -4434,79 +4482,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 84-1838", + "urn:barcode:33433060420126" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 84-1838" ], + "shelfMark_sort": "a*OLY 84-001838", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060420126" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 84-1838", - "urn:barcode:33433060420126" + "shelfMark": [ + "*OLY 84-1838" ], + "uri": "i13783872", "identifierV2": [ { - "value": "*OLY 84-1838", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 84-1838" }, { - "value": "33433060420126", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060420126" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 84-1838" + "idBarcode": [ + "33433060420126" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 84-1838" - ], - "shelfMark_sort": "a*OLY 84-001838", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "uri": "i13783872" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -4557,6 +4605,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Ōtāḷar kuṟavañci; eṉum, Alakumalaikkuṟavañci." ], @@ -4697,79 +4748,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 84-1725", + "urn:barcode:33433060420076" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "*OLY 84-1725" + ], + "shelfMark_sort": "a*OLY 84-001725", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060420076" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 84-1725", - "urn:barcode:33433060420076" + "shelfMark": [ + "*OLY 84-1725" ], + "uri": "i13783876", "identifierV2": [ { - "value": "*OLY 84-1725", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 84-1725" }, { - "value": "33433060420076", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060420076" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 84-1725" + "idBarcode": [ + "33433060420076" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 84-1725" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 84-001725", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783876" + ] }, "sort": [ null @@ -4819,6 +4870,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Tiruvēṟkāṭu Śrī Tēvi Karumārī Ammaṉ Catakam" ], @@ -4953,79 +5007,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 84-1817", + "urn:barcode:33433060420100" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 84-1817" ], + "shelfMark_sort": "a*OLY 84-001817", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060420100" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 84-1817", - "urn:barcode:33433060420100" + "shelfMark": [ + "*OLY 84-1817" ], + "uri": "i13783880", "identifierV2": [ { - "value": "*OLY 84-1817", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 84-1817" }, { - "value": "33433060420100", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060420100" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 84-1817" + "idBarcode": [ + "33433060420100" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 84-1817" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 84-001817", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783880" + ] }, "sort": [ null @@ -5077,6 +5131,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Tamiḻnāṭum Nammāḻvārum." ], @@ -5344,12 +5401,15 @@ "createdYear": [ 1973 ], - "title": [ - "Śrīmajjaiminipraṇītamīmāṃsādarśaneʼṅgāṅgi-bhāvavimarśakaḥ \"Aṅgatvaniruktiḥ\" nāma prabandhaḥ" + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Śrīmajjaiminipraṇītamīmāṃsādarśaneʼṅgāṅgi-bhāvavimarśakaḥ \"Aṅgatvaniruktiḥ\" nāma prabandhaḥ" + ], "shelfMark": [ "*OKM 97-3015" ], @@ -5365,21 +5425,18 @@ "idLccn": [ "76903136" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Ānandāśramasaṃskrtagranthāvaliḥ; granthāṇkaḥ 137" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Ānandāśramasaṃsthā." ], "dateStartYear": [ 1973 ], - "idOclc": [ - "NYPG001000378-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -5406,6 +5463,9 @@ "value": "(WaOLN)nyp0200423" } ], + "idOclc": [ + "NYPG001000378-B" + ], "uniformTitle": [ "Aṅgatvanirukti" ], @@ -5459,15 +5519,15 @@ "placeOfPublication": [ "Puṇyākhyapattane" ], + "titleAlt": [ + "Aṅgatvanirukti" + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Aṅgatvanirukti" - ], "dimensions": [ "23 cm." ] @@ -5494,31 +5554,47 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:shelfmark:*OKM 97-3015", + "urn:barcode:33433058597968" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OKM 97-3015" + ], + "shelfMark_sort": "a*OKM 97-003015", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], "accessMessage": [ { "id": "accessMessage:1", "label": "Use in library" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Text" + "shelfMark": [ + "*OKM 97-3015" ], - "holdingLocation": [ + "uri": "i13783885", + "identifierV2": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "type": "bf:ShelfMark", + "value": "*OKM 97-3015" + }, + { + "type": "bf:Barcode", + "value": "33433058597968" } ], "holdingLocation_packed": [ @@ -5527,46 +5603,30 @@ "idBarcode": [ "33433058597968" ], - "identifier": [ - "urn:shelfmark:*OKM 97-3015", - "urn:barcode:33433058597968" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "*OKM 97-3015", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433058597968", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "*OKM 97-3015" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "*OKM 97-3015" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OKM 97-003015", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783885" + ] }, "sort": [ null @@ -5616,6 +5676,9 @@ "dateEndString": [ "1963" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Ativīra Rāma Pāṇtiyar iyaṟṟiya Kūrma Purāṇa mūlam." ], @@ -5764,91 +5827,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OKOK 81-2812 v. 2", + "urn:barcode:33433058648977" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "*OKOK 81-2812" + ], + "shelfMark_sort": "a*OKOK 81-2812 v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OKOK 81-2812 v. 2" + ], + "uri": "i13783891", + "identifierV2": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "type": "bf:ShelfMark", + "value": "*OKOK 81-2812 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433058648977" } ], "holdingLocation_packed": [ "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433058648977" ], - "identifier": [ - "urn:shelfmark:*OKOK 81-2812 v. 2", - "urn:barcode:33433058648977" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "*OKOK 81-2812 v. 2", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433058648977", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "*OKOK 81-2812" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "*OKOK 81-2812 v. 2" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OKOK 81-2812 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i13783891" + ] }, "sort": [ " 2-" @@ -5863,91 +5926,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OKOK 81-2812 v. 1", + "urn:barcode:33433058648969" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "*OKOK 81-2812" + ], + "shelfMark_sort": "a*OKOK 81-2812 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OKOK 81-2812 v. 1" + ], + "uri": "i13783890", + "identifierV2": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "type": "bf:ShelfMark", + "value": "*OKOK 81-2812 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433058648969" } ], "holdingLocation_packed": [ "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433058648969" ], - "identifier": [ - "urn:shelfmark:*OKOK 81-2812 v. 1", - "urn:barcode:33433058648969" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "*OKOK 81-2812 v. 1", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433058648969", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "*OKOK 81-2812" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "*OKOK 81-2812 v. 1" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OKOK 81-2812 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i13783890" + ] }, "sort": [ " 1-" @@ -6007,6 +6070,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Jaina-dharma meṃ ahiṃsā." ], @@ -6147,70 +6213,27 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433060359332" - ], "identifier": [ "urn:shelfmark:*OLX 83-155", "urn:barcode:33433060359332" ], - "identifierV2": [ - { - "value": "*OLX 83-155", - "type": "bf:ShelfMark" - }, - { - "value": "33433060359332", - "type": "bf:Barcode" - } - ], "m2CustomerCode": [ "XA" ], "physicalLocation": [ "*OLX 83-155" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLX 83-155" - ], "shelfMark_sort": "a*OLX 83-000155", - "status": [ + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "status:a", - "label": "Available" + "id": "accessMessage:1", + "label": "Use in library" } ], "status_packed": [ @@ -6219,7 +6242,50 @@ "type": [ "bf:Item" ], - "uri": "i13783893" + "shelfMark": [ + "*OLX 83-155" + ], + "uri": "i13783893", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLX 83-155" + }, + { + "type": "bf:Barcode", + "value": "33433060359332" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433060359332" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -6280,15 +6346,19 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "rc", + "ma" + ], "dateEndString": [ "1907" ], - "title": [ - "Riḥlat Abī al-Husayn Muhammad ibn Ahmad ibn Jubayr al-Kinānī al-Andalusī al-Balinsī." - ], "type": [ "nypl:Item" ], + "title": [ + "Riḥlat Abī al-Husayn Muhammad ibn Ahmad ibn Jubayr al-Kinānī al-Andalusī al-Balinsī." + ], "shelfMark": [ "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" ], @@ -6314,9 +6384,6 @@ "dateStartYear": [ 1973 ], - "idOclc": [ - "NYPG002000036-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -6343,6 +6410,9 @@ "value": "(WaOLN)nyp0200626" } ], + "idOclc": [ + "NYPG002000036-B" + ], "uniformTitle": [ "\"E.J.W. Gibb memorial\" series ; v.5." ], @@ -6398,15 +6468,15 @@ "placeOfPublication": [ "[New York" ], + "titleAlt": [ + "Travels of Ibn Jubayr." + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Travels of Ibn Jubayr." - ], "dimensions": [ "23 cm." ] @@ -6433,88 +6503,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFV 87-659", + "urn:barcode:33433014525079" + ], + "physicalLocation": [ + "*OFV 87-659" + ], + "shelfMark_sort": "a*OFV 87-000659", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433014525079" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFV 87-659", - "urn:barcode:33433014525079" + "shelfMark": [ + "*OFV 87-659" ], + "uri": "i10000366", "identifierV2": [ { - "value": "*OFV 87-659", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFV 87-659" }, { - "value": "33433014525079", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433014525079" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014525079" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFV 87-659" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFV 87-659" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFV 87-000659", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000366" + ] }, "sort": [ null @@ -6529,88 +6599,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], "accessMessage_packed": [ "accessMessage:u||Supervised use" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:66", - "label": "book, poor condition, non-MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OAC (\"E. J. W. Gibb memorial\" series. v. 5)", + "urn:barcode:33433115326104" + ], + "physicalLocation": [ + "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" + ], + "shelfMark_sort": "a*OAC (\"E. J. W. Gibb memorial\" series. v. 000005)", "catalogItemType_packed": [ "catalogItemType:66||book, poor condition, non-MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:u", + "label": "Supervised use" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433115326104" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OAC (\"E. J. W. Gibb memorial\" series. v. 5)", - "urn:barcode:33433115326104" + "shelfMark": [ + "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" ], + "uri": "i31207836", "identifierV2": [ { - "value": "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" }, { - "value": "33433115326104", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433115326104" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433115326104" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" + "catalogItemType": [ + { + "id": "catalogItemType:66", + "label": "book, poor condition, non-MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OAC (\"E. J. W. Gibb memorial\" series. v. 000005)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i31207836" + ] }, "sort": [ null @@ -6625,79 +6695,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OAC (\"E. J. W. Gibb memorial\" series. v. 5)", + "urn:barcode:33433096515220" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" + ], + "shelfMark_sort": "a*OAC (\"E. J. W. Gibb memorial\" series. v. 000005)", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433096515220" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OAC (\"E. J. W. Gibb memorial\" series. v. 5)", - "urn:barcode:33433096515220" + "shelfMark": [ + "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" ], + "uri": "i10000365", "identifierV2": [ { - "value": "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" }, { - "value": "33433096515220", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433096515220" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" + "idBarcode": [ + "33433096515220" ], "requestable": [ true ], - "shelfMark": [ - "*OAC (\"E. J. W. Gibb memorial\" series. v. 5)" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OAC (\"E. J. W. Gibb memorial\" series. v. 000005)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000365" + ] }, "sort": [ null @@ -6763,6 +6833,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Saṃskrta ke aitihāsika nāṭaka : [...aitihāsika, sāhityika, evaṃ saṃskrtika anuśīlana]" ], @@ -7030,6 +7103,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Rāmabhakti, paramparā aura sāhitya" ], @@ -7172,79 +7248,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 83-185", + "urn:barcode:33433060417874" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 83-185" ], + "shelfMark_sort": "a*OLY 83-000185", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060417874" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 83-185", - "urn:barcode:33433060417874" + "shelfMark": [ + "*OLY 83-185" ], + "uri": "i13783898", "identifierV2": [ { - "value": "*OLY 83-185", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 83-185" }, { - "value": "33433060417874", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060417874" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 83-185" + "idBarcode": [ + "33433060417874" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 83-185" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 83-000185", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783898" + ] }, "sort": [ null @@ -7304,6 +7380,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "ma" + ], "type": [ "nypl:Item" ], @@ -7568,6 +7647,9 @@ "createdYear": [ 1965 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Śrī Viṣṇusahasranāmastotram. Sri Vishnu sahasranama stotram, with namavali." ], @@ -7712,79 +7794,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 83-374", + "urn:barcode:33433060417890" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "*OLY 83-374" + ], + "shelfMark_sort": "a*OLY 83-000374", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060417890" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 83-374", - "urn:barcode:33433060417890" + "shelfMark": [ + "*OLY 83-374" ], + "uri": "i13783901", "identifierV2": [ { - "value": "*OLY 83-374", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 83-374" }, { - "value": "33433060417890", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060417890" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 83-374" + "idBarcode": [ + "33433060417890" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 83-374" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 83-000374", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783901" + ] }, "sort": [ null @@ -7850,12 +7932,15 @@ "createdYear": [ 1970 ], - "title": [ - "Vicatavākcikāmaṇikaḷāṉa Maṇavāḷamāmuṉikaḷ aruḷicceyta upatēcarattiṉamālai. Tiruvāymoḻi nūṟṟantāti. Ārttippirapantam." + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Vicatavākcikāmaṇikaḷāṉa Maṇavāḷamāmuṉikaḷ aruḷicceyta upatēcarattiṉamālai. Tiruvāymoḻi nūṟṟantāti. Ārttippirapantam." + ], "shelfMark": [ "*OLY 83-2976" ], @@ -7884,9 +7969,6 @@ "dateStartYear": [ 1970 ], - "idOclc": [ - "NYPG002000146-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -7913,6 +7995,9 @@ "value": "(WaOLN)nyp0200736" } ], + "idOclc": [ + "NYPG002000146-B" + ], "uniformTitle": [ "Upatēcarattiṉamālai" ], @@ -7966,15 +8051,15 @@ "placeOfPublication": [ "[Kāñcīpuram" ], + "titleAlt": [ + "Upatēcarattiṉamālai" + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Upatēcarattiṉamālai" - ], "dimensions": [ "26 cm." ] @@ -8001,79 +8086,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 83-2976", + "urn:barcode:33433060418666" ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 83-2976" + ], + "shelfMark_sort": "a*OLY 83-002976", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060418666" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 83-2976", - "urn:barcode:33433060418666" + "shelfMark": [ + "*OLY 83-2976" ], + "uri": "i13783922", "identifierV2": [ { - "value": "*OLY 83-2976", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 83-2976" }, { - "value": "33433060418666", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060418666" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "*OLY 83-2976" + "idBarcode": [ + "33433060418666" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 83-2976" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 83-002976", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783922" + ] }, "sort": [ null @@ -8125,15 +8210,18 @@ "createdYear": [ 1966 ], + "buildingLocationIds": [ + "ma" + ], "dateEndString": [ "1967" ], - "title": [ - "Chāndogyopaniṣad." - ], "type": [ "nypl:Item" ], + "title": [ + "Chāndogyopaniṣad." + ], "shelfMark": [ "*OKLB 83-2978" ], @@ -8158,9 +8246,6 @@ "dateStartYear": [ 1966 ], - "idOclc": [ - "NYPG002000148-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -8187,6 +8272,9 @@ "value": "(WaOLN)nyp0200738" } ], + "idOclc": [ + "NYPG002000148-B" + ], "uniformTitle": [ "Upanishads. Chāndogyopaniṣad." ], @@ -8272,79 +8360,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OKLB 83-2978", + "urn:barcode:33433058574710" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OKLB 83-2978" ], + "shelfMark_sort": "a*OKLB 83-002978", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058574710" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKLB 83-2978", - "urn:barcode:33433058574710" + "shelfMark": [ + "*OKLB 83-2978" ], + "uri": "i13783923", "identifierV2": [ { - "value": "*OKLB 83-2978", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKLB 83-2978" }, { - "value": "33433058574710", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058574710" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "*OKLB 83-2978" + "idBarcode": [ + "33433058574710" ], "requestable": [ true ], - "shelfMark": [ - "*OKLB 83-2978" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "a*OKLB 83-002978", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783923" + ] }, "sort": [ null @@ -8400,6 +8488,9 @@ "createdYear": [ 1971 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Kāvya Rāmāyaṇam." ], @@ -8538,79 +8629,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 82-1781", + "urn:barcode:33433060417288" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 82-1781" ], + "shelfMark_sort": "a*OLY 82-001781", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060417288" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 82-1781", - "urn:barcode:33433060417288" + "shelfMark": [ + "*OLY 82-1781" ], + "uri": "i13783961", "identifierV2": [ { - "value": "*OLY 82-1781", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 82-1781" }, { - "value": "33433060417288", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060417288" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 82-1781" + "idBarcode": [ + "33433060417288" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 82-1781" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 82-001781", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783961" + ] }, "sort": [ null @@ -8665,6 +8756,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "al-Rasūl, ṣallá Allāh ʻalayhi wa-sallam, lamḁhāt min ̥hayātih .... wa-nafaḥāt min hadyih" ], @@ -8805,79 +8899,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OGE 82-2828", + "urn:barcode:33433057993358" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "*OGE 82-2828" + ], + "shelfMark_sort": "a*OGE 82-002828", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433057993358" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGE 82-2828", - "urn:barcode:33433057993358" + "shelfMark": [ + "*OGE 82-2828" ], + "uri": "i12858070", "identifierV2": [ { - "value": "*OGE 82-2828", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGE 82-2828" }, { - "value": "33433057993358", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433057993358" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OGE 82-2828" + "idBarcode": [ + "33433057993358" ], "requestable": [ true ], - "shelfMark": [ - "*OGE 82-2828" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OGE 82-002828", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12858070" + ] }, "sort": [ null @@ -8927,6 +9021,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Tulasī kā mānasa." ], @@ -9064,79 +9161,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 83-31", + "urn:barcode:33433060417726" ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 83-31" + ], + "shelfMark_sort": "a*OLY 83-000031", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060417726" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 83-31", - "urn:barcode:33433060417726" + "shelfMark": [ + "*OLY 83-31" ], + "uri": "i13783983", "identifierV2": [ { - "value": "*OLY 83-31", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 83-31" }, { - "value": "33433060417726", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060417726" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 83-31" + "idBarcode": [ + "33433060417726" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 83-31" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 83-000031", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783983" + ] }, "sort": [ null @@ -9188,6 +9285,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Tiruvaṇṇāmalai Srī Cēṣātri Svāmikaḷ carittiram" ], @@ -9458,12 +9558,15 @@ "createdYear": [ 1969 ], - "title": [ - "Mokṣākaraguptaviracitā Bauddha-tarkabhāṣā. Hindīanuvādapariśiṣṭadvayasaṃvalitā." + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Mokṣākaraguptaviracitā Bauddha-tarkabhāṣā. Hindīanuvādapariśiṣṭadvayasaṃvalitā." + ], "shelfMark": [ "*OLWF 83-4679" ], @@ -9492,9 +9595,6 @@ "dateStartYear": [ 1969 ], - "idOclc": [ - "NYPG002000452-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -9521,6 +9621,9 @@ "value": "(WaOLN)nyp0201041" } ], + "idOclc": [ + "NYPG002000452-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -9571,17 +9674,17 @@ "placeOfPublication": [ "Vārāṇasī" ], + "titleAlt": [ + "Bauddha-tarkabhāṣā.", + "Tarkabhasha.", + "Anekantavadanirasa." + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Bauddha-tarkabhāṣā.", - "Tarkabhasha.", - "Anekantavadanirasa." - ], "dimensions": [ "19 cm." ] @@ -9608,79 +9711,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLWF 83-4679", + "urn:barcode:33433059862981" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLWF 83-4679" ], + "shelfMark_sort": "a*OLWF 83-004679", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433059862981" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLWF 83-4679", - "urn:barcode:33433059862981" + "shelfMark": [ + "*OLWF 83-4679" ], + "uri": "i13783998", "identifierV2": [ { - "value": "*OLWF 83-4679", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLWF 83-4679" }, { - "value": "33433059862981", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433059862981" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "*OLWF 83-4679" + "idBarcode": [ + "33433059862981" ], "requestable": [ true ], - "shelfMark": [ - "*OLWF 83-4679" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "a*OLWF 83-004679", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783998" + ] }, "sort": [ null @@ -9738,6 +9841,9 @@ "dateEndString": [ "1975" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Vādasaṅgraha" ], @@ -9878,79 +9984,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLX 84-289", + "urn:barcode:33433060359589" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "*OLX 84-289" + ], + "shelfMark_sort": "a*OLX 84-000289", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060359589" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLX 84-289", - "urn:barcode:33433060359589" + "shelfMark": [ + "*OLX 84-289" ], + "uri": "i13784009", "identifierV2": [ { - "value": "*OLX 84-289", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLX 84-289" }, { - "value": "33433060359589", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060359589" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLX 84-289" + "idBarcode": [ + "33433060359589" ], "requestable": [ true ], - "shelfMark": [ - "*OLX 84-289" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLX 84-000289", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13784009" + ] }, "sort": [ null @@ -9995,6 +10101,9 @@ "createdYear": [ 1964 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "al-Kharīdah al-nafīsah fī tārīkh al-kanīsah" ], @@ -10125,91 +10234,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OCF 81-3103 v. 2", + "urn:barcode:33433017339361" ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OCF 81-3103" + ], + "shelfMark_sort": "a*OCF 81-3103 v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OCF 81-3103 v. 2" + ], + "uri": "i11900431", + "identifierV2": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "type": "bf:ShelfMark", + "value": "*OCF 81-3103 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433017339361" } ], "holdingLocation_packed": [ "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433017339361" ], - "identifier": [ - "urn:shelfmark:*OCF 81-3103 v. 2", - "urn:barcode:33433017339361" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "*OCF 81-3103 v. 2", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433017339361", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "*OCF 81-3103" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "*OCF 81-3103 v. 2" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OCF 81-3103 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i11900431" + ] }, "sort": [ " 2-" @@ -10224,91 +10333,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OCF 81-3103 v. 1", + "urn:barcode:33433017339353" ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OCF 81-3103" + ], + "shelfMark_sort": "a*OCF 81-3103 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OCF 81-3103 v. 1" + ], + "uri": "i11900430", + "identifierV2": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "type": "bf:ShelfMark", + "value": "*OCF 81-3103 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433017339353" } ], "holdingLocation_packed": [ "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433017339353" ], - "identifier": [ - "urn:shelfmark:*OCF 81-3103 v. 1", - "urn:barcode:33433017339353" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "*OCF 81-3103 v. 1", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433017339353", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "*OCF 81-3103" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "*OCF 81-3103 v. 1" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OCF 81-3103 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i11900430" + ] }, "sort": [ " 1-" @@ -10359,6 +10468,9 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "al-Bashāʼir fī mawlid al-Mukhtār ..." ], @@ -10496,79 +10608,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OGE 82-1575", + "urn:barcode:33433057993127" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OGE 82-1575" ], + "shelfMark_sort": "a*OGE 82-001575", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433057993127" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGE 82-1575", - "urn:barcode:33433057993127" + "shelfMark": [ + "*OGE 82-1575" ], + "uri": "i12858081", "identifierV2": [ { - "value": "*OGE 82-1575", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGE 82-1575" }, { - "value": "33433057993127", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433057993127" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OGE 82-1575" + "idBarcode": [ + "33433057993127" ], "requestable": [ true ], - "shelfMark": [ - "*OGE 82-1575" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OGE 82-001575", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12858081" + ] }, "sort": [ null @@ -10616,12 +10728,16 @@ "createdYear": [ 1950 ], - "title": [ - "Falsafat al-mūsīqá al-Sharqīyah fī asrār al-fann al-ʻArabī, kitāb yunaẓẓim ʻulūm al-mūsīqá wa-yadʻū ilá tawḥīd lughatihā ʻilmīyan" + "buildingLocationIds": [ + "rc", + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Falsafat al-mūsīqá al-Sharqīyah fī asrār al-fann al-ʻArabī, kitāb yunaẓẓim ʻulūm al-mūsīqá wa-yadʻū ilá tawḥīd lughatihā ʻilmīyan" + ], "shelfMark": [ "JME 82-175" ], @@ -10646,9 +10762,6 @@ "dateStartYear": [ 1950 ], - "idOclc": [ - "1323143411" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -10675,6 +10788,9 @@ "value": "(OCoLC)1323143411" } ], + "idOclc": [ + "1323143411" + ], "popularity": 3, "updatedAt": 1722351260580, "publicationStatement": [ @@ -10725,15 +10841,15 @@ "placeOfPublication": [ "Dimashq" ], + "titleAlt": [ + "Philosophy of oriental music." + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Philosophy of oriental music." - ], "dimensions": [ "25 cm." ] @@ -10760,88 +10876,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:32", - "label": "google project, book" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JME 82-175", + "urn:barcode:33433032678454" + ], + "physicalLocation": [ + "JME 82-175" + ], + "shelfMark_sort": "aJME 82-000175", "catalogItemType_packed": [ "catalogItemType:32||google project, book" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032678454" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JME 82-175", - "urn:barcode:33433032678454" + "shelfMark": [ + "JME 82-175" ], + "uri": "i10942096", "identifierV2": [ { - "value": "JME 82-175", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JME 82-175" }, { - "value": "33433032678454", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032678454" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032678454" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JME 82-175" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JME 82-175" + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJME 82-000175", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942096" + ] }, "sort": [ null @@ -10856,79 +10972,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OG (Allawerdi. Falsafat al-mūsīqá al-Sharqīyah)", + "urn:barcode:33433098691227" ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OG (Allawerdi. Falsafat al-mūsīqá al-Sharqīyah)" + ], + "shelfMark_sort": "a*OG (Allawerdi. Falsafat al-mūsīqá al-Sharqīyah)", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433098691227" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OG (Allawerdi. Falsafat al-mūsīqá al-Sharqīyah)", - "urn:barcode:33433098691227" + "shelfMark": [ + "*OG (Allawerdi. Falsafat al-mūsīqá al-Sharqīyah)" ], + "uri": "i28274409", "identifierV2": [ { - "value": "*OG (Allawerdi. Falsafat al-mūsīqá al-Sharqīyah)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OG (Allawerdi. Falsafat al-mūsīqá al-Sharqīyah)" }, { - "value": "33433098691227", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433098691227" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "*OG (Allawerdi. Falsafat al-mūsīqá al-Sharqīyah)" + "idBarcode": [ + "33433098691227" ], "requestable": [ true ], - "shelfMark": [ - "*OG (Allawerdi. Falsafat al-mūsīqá al-Sharqīyah)" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "a*OG (Allawerdi. Falsafat al-mūsīqá al-Sharqīyah)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28274409" + ] }, "sort": [ null @@ -10985,6 +11101,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Tʻung-Chʻeng pʻai wen hsueh shih" ], @@ -11244,6 +11363,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Bhāgavataṃ : Irupattināluvrttaṃ" ], @@ -11381,79 +11503,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 84-598", + "urn:barcode:33433060419870" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 84-598" ], + "shelfMark_sort": "a*OLY 84-000598", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060419870" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 84-598", - "urn:barcode:33433060419870" + "shelfMark": [ + "*OLY 84-598" ], + "uri": "i13784029", "identifierV2": [ { - "value": "*OLY 84-598", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 84-598" }, { - "value": "33433060419870", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060419870" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 84-598" + "idBarcode": [ + "33433060419870" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 84-598" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 84-000598", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13784029" + ] }, "sort": [ null @@ -11503,12 +11625,15 @@ "createdYear": [ 1979 ], - "title": [ - "Śrī Ramaṇa Maharshi se bātacīta" + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Śrī Ramaṇa Maharshi se bātacīta" + ], "shelfMark": [ "*OLY 82-3982" ], @@ -11533,9 +11658,6 @@ "dateStartYear": [ 1979 ], - "idOclc": [ - "NYPG002000652-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -11558,6 +11680,9 @@ "value": "(WaOLN)nyp0201237" } ], + "idOclc": [ + "NYPG002000652-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -11636,79 +11761,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 82-3982", + "urn:barcode:33433060417494" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 82-3982" ], + "shelfMark_sort": "a*OLY 82-003982", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060417494" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 82-3982", - "urn:barcode:33433060417494" + "shelfMark": [ + "*OLY 82-3982" ], + "uri": "i13784032", "identifierV2": [ { - "value": "*OLY 82-3982", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 82-3982" }, { - "value": "33433060417494", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060417494" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "*OLY 82-3982" + "idBarcode": [ + "33433060417494" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 82-3982" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 82-003982", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13784032" + ] }, "sort": [ null @@ -11769,12 +11894,15 @@ "createdYear": [ 1973 ], - "title": [ - "Vedāntakaumudī; Bhāvadīpikāsaṃvalitā." + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Vedāntakaumudī; Bhāvadīpikāsaṃvalitā." + ], "shelfMark": [ "*OKN 84-1977" ], @@ -11790,13 +11918,13 @@ "idLccn": [ "74903417" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Kāśī Hindū Viśvavidyālaya Saṃskrtagranthamālā, puṣpa 9", "Śodhaprakāśanayojanā" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Caturvedī, Rādheśyāma, 1940-" ], @@ -11806,9 +11934,6 @@ "dateStartYear": [ 1973 ], - "idOclc": [ - "NYPG002000653-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -11835,6 +11960,9 @@ "value": "(WaOLN)nyp0201238" } ], + "idOclc": [ + "NYPG002000653-B" + ], "uniformTitle": [ "Vedāntakaumudī. Hindi & Sanskrit." ], @@ -11889,15 +12017,15 @@ "placeOfPublication": [ "Vārāṇasī]" ], + "titleAlt": [ + "Vedāntakaumudī." + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Vedāntakaumudī." - ], "dimensions": [ "25 cm." ] @@ -11924,79 +12052,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OKN 84-1977", + "urn:barcode:33433058618418" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OKN 84-1977" ], + "shelfMark_sort": "a*OKN 84-001977", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058618418" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKN 84-1977", - "urn:barcode:33433058618418" + "shelfMark": [ + "*OKN 84-1977" ], + "uri": "i13784033", "identifierV2": [ { - "value": "*OKN 84-1977", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKN 84-1977" }, { - "value": "33433058618418", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058618418" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "*OKN 84-1977" + "idBarcode": [ + "33433058618418" ], "requestable": [ true ], - "shelfMark": [ - "*OKN 84-1977" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "a*OKN 84-001977", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13784033" + ] }, "sort": [ null @@ -12315,6 +12443,9 @@ "createdYear": [ 1968 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Apirāmi antāti." ], @@ -12458,79 +12589,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 83-1631", + "urn:barcode:33433060418252" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 83-1631" ], + "shelfMark_sort": "a*OLY 83-001631", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060418252" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 83-1631", - "urn:barcode:33433060418252" + "shelfMark": [ + "*OLY 83-1631" ], + "uri": "i13784062", "identifierV2": [ { - "value": "*OLY 83-1631", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 83-1631" }, { - "value": "33433060418252", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060418252" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 83-1631" + "idBarcode": [ + "33433060418252" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 83-1631" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 83-001631", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13784062" + ] }, "sort": [ null @@ -12581,6 +12712,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Paḻaṉiyāṉ kātal" ], @@ -12718,79 +12852,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 84-1362", + "urn:barcode:33433060419987" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 84-1362" ], + "shelfMark_sort": "a*OLY 84-001362", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060419987" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 84-1362", - "urn:barcode:33433060419987" + "shelfMark": [ + "*OLY 84-1362" ], + "uri": "i13784068", "identifierV2": [ { - "value": "*OLY 84-1362", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 84-1362" }, { - "value": "33433060419987", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060419987" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 84-1362" + "idBarcode": [ + "33433060419987" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 84-1362" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 84-001362", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13784068" + ] }, "sort": [ null @@ -12846,6 +12980,9 @@ "createdYear": [ 1963 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Saṃskāradīpakaḥ" ], @@ -12990,79 +13127,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 83-204", + "urn:barcode:33433060417882" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "*OLY 83-204" + ], + "shelfMark_sort": "a*OLY 83-000204", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060417882" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 83-204", - "urn:barcode:33433060417882" + "shelfMark": [ + "*OLY 83-204" ], + "uri": "i13784073", "identifierV2": [ { - "value": "*OLY 83-204", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 83-204" }, { - "value": "33433060417882", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060417882" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 83-204" + "idBarcode": [ + "33433060417882" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 83-204" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 83-000204", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13784073" + ] }, "sort": [ null @@ -13112,6 +13249,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Śrī Liṅka purāṇam." ], @@ -13252,79 +13392,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 83-1666", + "urn:barcode:33433060418278" ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 83-1666" + ], + "shelfMark_sort": "a*OLY 83-001666", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060418278" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 83-1666", - "urn:barcode:33433060418278" + "shelfMark": [ + "*OLY 83-1666" ], + "uri": "i13784074", "identifierV2": [ { - "value": "*OLY 83-1666", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 83-1666" }, { - "value": "33433060418278", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060418278" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 83-1666" + "idBarcode": [ + "33433060418278" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 83-1666" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 83-001666", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13784074" + ] }, "sort": [ null @@ -13379,12 +13519,15 @@ "createdYear": [ 1965 ], - "title": [ - "ʻNa caʼ ratnamālikā; Svopajñanūtanālokaṭīkāsamvalitā" + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "ʻNa caʼ ratnamālikā; Svopajñanūtanālokaṭīkāsamvalitā" + ], "shelfMark": [ "*OKM 83-1701" ], @@ -13400,12 +13543,12 @@ "idLccn": [ "sa 68010892" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Saravati Bhavana granthamala, 93" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Raman Nambiar, C. K." ], @@ -13415,9 +13558,6 @@ "dateStartYear": [ 1965 ], - "idOclc": [ - "NYPG002000795-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -13444,6 +13584,9 @@ "value": "(WaOLN)nyp0201377" } ], + "idOclc": [ + "NYPG002000795-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -13526,79 +13669,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OKM 83-1701", + "urn:barcode:33433058602826" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OKM 83-1701" ], + "shelfMark_sort": "a*OKM 83-001701", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058602826" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKM 83-1701", - "urn:barcode:33433058602826" + "shelfMark": [ + "*OKM 83-1701" ], + "uri": "i13784075", "identifierV2": [ { - "value": "*OKM 83-1701", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKM 83-1701" }, { - "value": "33433058602826", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058602826" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "*OKM 83-1701" + "idBarcode": [ + "33433058602826" ], "requestable": [ true ], - "shelfMark": [ - "*OKM 83-1701" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "a*OKM 83-001701", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13784075" + ] }, "sort": [ null @@ -13658,6 +13801,9 @@ "createdYear": [ 1968 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Śrī Tēvi Mahātmiyam; kīrttaṉaikaḷ." ], @@ -13799,79 +13945,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 83-1674", + "urn:barcode:33433060418286" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 83-1674" ], + "shelfMark_sort": "a*OLY 83-001674", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060418286" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 83-1674", - "urn:barcode:33433060418286" + "shelfMark": [ + "*OLY 83-1674" ], + "uri": "i13784080", "identifierV2": [ { - "value": "*OLY 83-1674", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 83-1674" }, { - "value": "33433060418286", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060418286" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 83-1674" + "idBarcode": [ + "33433060418286" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 83-1674" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 83-001674", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13784080" + ] }, "sort": [ null diff --git a/test/fixtures/query-208e50ae5be56bf638ffa334c645bd28.json b/test/fixtures/query-208e50ae5be56bf638ffa334c645bd28.json index 988538bd..4b1048e0 100644 --- a/test/fixtures/query-208e50ae5be56bf638ffa334c645bd28.json +++ b/test/fixtures/query-208e50ae5be56bf638ffa334c645bd28.json @@ -1,5 +1,5 @@ { - "took": 1015, + "took": 1151, "timed_out": false, "_shards": { "total": 2, @@ -9,7 +9,7 @@ }, "hits": { "total": { - "value": 124, + "value": 126, "relation": "eq" }, "max_score": null, @@ -17,7 +17,7 @@ { "_index": "resources-2024-10-22", "_id": "b12423567", - "_score": 2430.5195, + "_score": 2368.8965, "_source": { "extent": [ "202 p." @@ -46,6 +46,9 @@ "createdYear": [ 1741 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Vita Th. Campanellae." ], @@ -146,7 +149,7 @@ ] }, "sort": [ - 2430.5195, + 2368.8965, "b12423567" ], "inner_hits": { @@ -167,79 +170,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], "accessMessage_packed": [ "accessMessage:u||Supervised use" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "identifier": [ + "urn:shelfmark:AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)", + "urn:barcode:33433104031624" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" + ], + "shelfMark_sort": "aAN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:u", + "label": "Supervised use" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433104031624" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)", - "urn:barcode:33433104031624" + "shelfMark": [ + "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" ], + "uri": "i16020288", "identifierV2": [ { - "value": "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" }, { - "value": "33433104031624", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433104031624" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" + "idBarcode": [ + "33433104031624" ], "requestable": [ true ], - "shelfMark": [ - "AN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "aAN (Campanella) (Cyprian, E. S. Vita Th. Campanellae)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16020288" + ] }, "sort": [ null @@ -253,7 +256,7 @@ { "_index": "resources-2024-10-22", "_id": "b10024431", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "x, 242 p." @@ -294,6 +297,10 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "dateEndString": [ "1903" ], @@ -429,7 +436,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b10024431" ], "inner_hits": { @@ -629,7 +636,7 @@ { "_index": "resources-2024-10-22", "_id": "b10578369", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "243 p. illus." @@ -673,6 +680,10 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "sc", + "rc" + ], "title": [ "Race, class, and political consciousness" ], @@ -813,7 +824,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b10578369" ], "inner_hits": { @@ -834,85 +845,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc E 02-1201", + "urn:barcode:33433018580450" + ], + "physicalLocation": [ + "Sc E 02-1201" + ], + "shelfMark_sort": "aSc E 02-001201", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018580450" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc E 02-1201", - "urn:barcode:33433018580450" + "shelfMark": [ + "Sc E 02-1201" ], + "uri": "i11038931", "identifierV2": [ { - "value": "Sc E 02-1201", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 02-1201" }, { - "value": "33433018580450", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018580450" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433018580450" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 02-1201" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 02-1201" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc E 02-001201", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11038931" + ] }, "sort": [ null @@ -927,88 +938,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JLE 79-2381", + "urn:barcode:33433081059655" + ], + "physicalLocation": [ + "JLE 79-2381" + ], + "shelfMark_sort": "aJLE 79-002381", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433081059655" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JLE 79-2381", - "urn:barcode:33433081059655" + "shelfMark": [ + "JLE 79-2381" ], + "uri": "i11976916", "identifierV2": [ { - "value": "JLE 79-2381", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JLE 79-2381" }, { - "value": "33433081059655", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433081059655" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433081059655" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "JLE 79-2381" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "JLE 79-2381" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aJLE 79-002381", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11976916" + ] }, "sort": [ null @@ -1022,7 +1033,7 @@ { "_index": "resources-2024-10-22", "_id": "b10818236", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "112 p. : ill. ;" @@ -1196,7 +1207,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b10818236" ], "inner_hits": { @@ -1312,7 +1323,7 @@ { "_index": "resources-2024-10-22", "_id": "b10855482", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "62 p. ;" @@ -1348,6 +1359,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Ensayos sobre el Caribe" ], @@ -1473,7 +1487,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b10855482" ], "inner_hits": { @@ -1494,85 +1508,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:HNB 84-199", + "urn:barcode:33433099014460" + ], + "physicalLocation": [ + "HNB 84-199" + ], + "shelfMark_sort": "aHNB 84-000199", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433099014460" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:HNB 84-199", - "urn:barcode:33433099014460" + "shelfMark": [ + "HNB 84-199" ], + "uri": "i15810175", "identifierV2": [ { - "value": "HNB 84-199", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "HNB 84-199" }, { - "value": "33433099014460", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433099014460" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099014460" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "HNB 84-199" - ], "requestable": [ true ], - "shelfMark": [ - "HNB 84-199" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aHNB 84-000199", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15810175" + ] }, "sort": [ null @@ -1586,7 +1600,7 @@ { "_index": "resources-2024-10-22", "_id": "b10861449", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "185 p. : ill. ;" @@ -1619,6 +1633,9 @@ "createdYear": [ 1984 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "The year of miracle and grief" ], @@ -1745,7 +1762,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b10861449" ], "inner_hits": { @@ -1766,79 +1783,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "identifier": [ + "urn:shelfmark:**QDM 85-994", + "urn:barcode:33433059440952" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "**QDM 85-994" + ], + "shelfMark_sort": "a**QDM 85-000994", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433059440952" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:**QDM 85-994", - "urn:barcode:33433059440952" + "shelfMark": [ + "**QDM 85-994" ], + "uri": "i13931350", "identifierV2": [ { - "value": "**QDM 85-994", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "**QDM 85-994" }, { - "value": "33433059440952", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433059440952" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "**QDM 85-994" + "idBarcode": [ + "33433059440952" ], "requestable": [ true ], - "shelfMark": [ - "**QDM 85-994" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a**QDM 85-000994", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13931350" + ] }, "sort": [ null @@ -1852,7 +1869,7 @@ { "_index": "resources-2024-10-22", "_id": "b11205007", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "496 p. ;" @@ -1882,6 +1899,9 @@ "createdYear": [ 1986 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Mitología cubana" ], @@ -2004,7 +2024,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b11205007" ], "inner_hits": { @@ -2117,7 +2137,7 @@ { "_index": "resources-2024-10-22", "_id": "b11280922", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "viii, 152 p. : chiefly color ill. ;" @@ -2155,6 +2175,10 @@ "createdYear": [ 1989 ], + "buildingLocationIds": [ + "rc", + "sc" + ], "type": [ "nypl:Item" ], @@ -2292,7 +2316,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b11280922" ], "inner_hits": { @@ -2313,81 +2337,81 @@ }, "_score": null, "_source": { - "uri": "i12658931", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:1105", "label": "Irma and Paul Milstein Division of United States History, Local History and Genealogy" } ], - "owner_packed": [ - "orgs:1105||Irma and Paul Milstein Division of United States History, Local History and Genealogy" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:barcode:33433100845084" + ], + "physicalLocation": [ + "ITC+ 90-2828" ], + "shelfMark_sort": "aITC+ 90-002828", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmg2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmg2||Offsite" + "status_packed": [ + "status:a||Available" ], + "uri": "i12658931", "shelfMark": [ "ITC+ 90-2828" ], "identifierV2": [ { - "value": "ITC+ 90-2828", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ITC+ 90-2828" }, { "type": "bf:Barcode", "value": "33433100845084" } ], - "physicalLocation": [ - "ITC+ 90-2828" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433100845084" + "holdingLocation_packed": [ + "loc:rcmg2||Offsite" ], "idBarcode": [ "33433100845084" ], + "owner_packed": [ + "orgs:1105||Irma and Paul Milstein Division of United States History, Local History and Genealogy" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmg2", + "label": "Offsite" + } ], - "shelfMark_sort": "aITC+ 90-002828" + "recapCustomerCode": [ + "NA" + ] }, "sort": [ null @@ -2402,78 +2426,78 @@ }, "_score": null, "_source": { - "uri": "i12658932", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:1114", "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], - "owner_packed": [ - "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + "accessMessage_packed": [ + "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "identifier": [ + "urn:barcode:33433018663926" + ], + "physicalLocation": [ + "Sc+ G 03-1" ], + "shelfMark_sort": "aSc+ G 03-000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], + "uri": "i12658932", "shelfMark": [ "Sc+ G 03-1" ], "identifierV2": [ { - "value": "Sc+ G 03-1", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc+ G 03-1" }, { "type": "bf:Barcode", "value": "33433018663926" } ], - "physicalLocation": [ - "Sc+ G 03-1" - ], - "identifier": [ - "urn:barcode:33433018663926" + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" ], "idBarcode": [ "33433018663926" ], + "owner_packed": [ + "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + ], "requestable": [ false ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "catalogItemType:2", + "label": "book non-circ" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "shelfMark_sort": "aSc+ G 03-000001" + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ] }, "sort": [ null @@ -2487,7 +2511,7 @@ { "_index": "resources-2024-10-22", "_id": "b11425862", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "xii, 353 p., [12] p. of plates : ill. ;" @@ -2519,6 +2543,9 @@ "createdYear": [ 1991 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -2654,7 +2681,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b11425862" ], "inner_hits": { @@ -2675,81 +2702,81 @@ }, "_score": null, "_source": { - "uri": "i12674670", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:1000", "label": "Stephen A. Schwarzman Building" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:barcode:33433036991341" + ], + "physicalLocation": [ + "JBE 91-972" ], + "shelfMark_sort": "aJBE 91-000972", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], + "uri": "i12674670", "shelfMark": [ "JBE 91-972" ], "identifierV2": [ { - "value": "JBE 91-972", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JBE 91-972" }, { "type": "bf:Barcode", "value": "33433036991341" } ], - "physicalLocation": [ - "JBE 91-972" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433036991341" + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" ], "idBarcode": [ "33433036991341" ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], - "shelfMark_sort": "aJBE 91-000972" + "recapCustomerCode": [ + "NA" + ] }, "sort": [ null @@ -2763,7 +2790,7 @@ { "_index": "resources-2024-10-22", "_id": "b11535326", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "479 p. ;" @@ -2801,6 +2828,10 @@ "createdYear": [ 1986 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Discursos escogidos, 1979-1983" ], @@ -2929,7 +2960,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b11535326" ], "inner_hits": { @@ -2950,85 +2981,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc D 01-1515", + "urn:barcode:33433059467153" + ], + "physicalLocation": [ + "Sc D 01-1515" + ], + "shelfMark_sort": "aSc D 01-001515", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433059467153" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc D 01-1515", - "urn:barcode:33433059467153" + "shelfMark": [ + "Sc D 01-1515" ], + "uri": "i10352589", "identifierV2": [ { - "value": "Sc D 01-1515", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc D 01-1515" }, { - "value": "33433059467153", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433059467153" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433059467153" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc D 01-1515" - ], "requestable": [ true ], - "shelfMark": [ - "Sc D 01-1515" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc D 01-001515", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10352589" + ] }, "sort": [ null @@ -3043,70 +3074,27 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433098321981" - ], "identifier": [ "urn:shelfmark:HRG 92-3767", "urn:barcode:33433098321981" ], - "identifierV2": [ - { - "value": "HRG 92-3767", - "type": "bf:ShelfMark" - }, - { - "value": "33433098321981", - "type": "bf:Barcode" - } - ], "m2CustomerCode": [ "XA" ], "physicalLocation": [ "HRG 92-3767" ], - "requestable": [ - true - ], - "shelfMark": [ - "HRG 92-3767" - ], "shelfMark_sort": "aHRG 92-003767", - "status": [ + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "status:a", - "label": "Available" + "id": "accessMessage:1", + "label": "Use in library" } ], "status_packed": [ @@ -3115,7 +3103,50 @@ "type": [ "bf:Item" ], - "uri": "i10352588" + "shelfMark": [ + "HRG 92-3767" + ], + "uri": "i10352588", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "HRG 92-3767" + }, + { + "type": "bf:Barcode", + "value": "33433098321981" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433098321981" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -3129,7 +3160,7 @@ { "_index": "resources-2024-10-22", "_id": "b11579218", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "190 p." @@ -3166,6 +3197,9 @@ "createdYear": [ 1957 ], + "buildingLocationIds": [ + "sc" + ], "title": [ "White man, listen!" ], @@ -3306,7 +3340,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b11579218" ], "inner_hits": { @@ -3512,7 +3546,7 @@ { "_index": "resources-2024-10-22", "_id": "b11687986", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "347 p. ;" @@ -3549,6 +3583,10 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "African writing today." ], @@ -3671,7 +3709,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b11687986" ], "inner_hits": { @@ -3692,85 +3730,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc 808.8-M (Mphahlele, E. African writing today)", + "urn:barcode:33433070028810" + ], + "physicalLocation": [ + "Sc 808.8-M (Mphahlele, E. African writing today)" + ], + "shelfMark_sort": "aSc 808.8-M (Mphahlele, E. African writing today)", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433070028810" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc 808.8-M (Mphahlele, E. African writing today)", - "urn:barcode:33433070028810" + "shelfMark": [ + "Sc 808.8-M (Mphahlele, E. African writing today)" ], + "uri": "i10398899", "identifierV2": [ { - "value": "Sc 808.8-M (Mphahlele, E. African writing today)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc 808.8-M (Mphahlele, E. African writing today)" }, { - "value": "33433070028810", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433070028810" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433070028810" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc 808.8-M (Mphahlele, E. African writing today)" - ], "requestable": [ true ], - "shelfMark": [ - "Sc 808.8-M (Mphahlele, E. African writing today)" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc 808.8-M (Mphahlele, E. African writing today)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10398899" + ] }, "sort": [ null @@ -3785,79 +3823,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:C-13 4965", + "urn:barcode:33433101446361" ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "C-13 4965" + ], + "shelfMark_sort": "aC-13 004965", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433101446361" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:C-13 4965", - "urn:barcode:33433101446361" + "shelfMark": [ + "C-13 4965" ], + "uri": "i10398900", "identifierV2": [ { - "value": "C-13 4965", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "C-13 4965" }, { - "value": "33433101446361", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433101446361" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "C-13 4965" + "idBarcode": [ + "33433101446361" ], "requestable": [ true ], - "shelfMark": [ - "C-13 4965" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "aC-13 004965", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10398900" + ] }, "sort": [ null @@ -3871,7 +3909,7 @@ { "_index": "resources-2024-10-22", "_id": "b11798161", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "xii, 216 p. : map ;" @@ -3920,6 +3958,10 @@ "createdYear": [ 1993 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Imagining Ethiopia : struggles for history and identity in the Horn of Africa" ], @@ -4071,7 +4113,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b11798161" ], "inner_hits": { @@ -4092,85 +4134,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc E 02-1460", + "urn:barcode:33433017860945" + ], + "physicalLocation": [ + "Sc E 02-1460" + ], + "shelfMark_sort": "aSc E 02-001460", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "idBarcode": [ - "33433017860945" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:Sc E 02-1460", - "urn:barcode:33433017860945" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "Sc E 02-1460" ], + "uri": "i11167482", "identifierV2": [ { - "value": "Sc E 02-1460", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 02-1460" }, { - "value": "33433017860945", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433017860945" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433017860945" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 02-1460" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 02-1460" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc E 02-001460", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11167482" + ] }, "sort": [ null @@ -4185,79 +4227,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:JFE 93-12431", + "urn:barcode:33433070285527" + ], + "m2CustomerCode": [ + "XF" + ], + "physicalLocation": [ + "JFE 93-12431" ], + "shelfMark_sort": "aJFE 93-012431", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433070285527" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFE 93-12431", - "urn:barcode:33433070285527" + "shelfMark": [ + "JFE 93-12431" ], + "uri": "i11167481", "identifierV2": [ { - "value": "JFE 93-12431", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFE 93-12431" }, { - "value": "33433070285527", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433070285527" } ], - "m2CustomerCode": [ - "XF" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "JFE 93-12431" + "idBarcode": [ + "33433070285527" ], "requestable": [ true ], - "shelfMark": [ - "JFE 93-12431" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "aJFE 93-012431", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11167481" + ] }, "sort": [ null @@ -4271,7 +4313,7 @@ { "_index": "resources-2024-10-22", "_id": "b11946223", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "xv, 454 p., [26] p. of plates : ill., geneal. tables ;" @@ -4324,12 +4366,17 @@ "createdYear": [ 1994 ], - "title": [ - "The House of Percy : honor, melancholy, and imagination in a Southern family" + "buildingLocationIds": [ + "sc", + "rc", + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "The House of Percy : honor, melancholy, and imagination in a Southern family" + ], "shelfMark": [ "JFE 94-15682" ], @@ -4357,9 +4404,6 @@ "donor": [ "Gift of New York Genealogical and Biographical Society." ], - "idOclc": [ - "28294789" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -4390,14 +4434,13 @@ "value": "(WaOLN)nyp1935774" } ], + "idOclc": [ + "28294789" + ], "updatedAt": 1711082115184, "publicationStatement": [ "New York : Oxford University Press, 1994." ], - "idIsbn": [ - "SECOND COPY GIFT FOR SCHOMBURG", - "0195056264 (alk. paper)" - ], "identifier": [ "urn:shelfmark:JFE 94-15682", "urn:bnum:11946223", @@ -4407,6 +4450,10 @@ "urn:lccn:93020690", "urn:identifier:(WaOLN)nyp1935774" ], + "idIsbn": [ + "SECOND COPY GIFT FOR SCHOMBURG", + "0195056264 (alk. paper)" + ], "numCheckinCardItems": [ 0 ], @@ -4464,7 +4511,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b11946223" ], "inner_hits": { @@ -4485,85 +4532,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc E 03-852", + "urn:barcode:33433018663819" + ], + "physicalLocation": [ + "Sc E 03-852" + ], + "shelfMark_sort": "aSc E 03-000852", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018663819" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc E 03-852", - "urn:barcode:33433018663819" + "shelfMark": [ + "Sc E 03-852" ], + "uri": "i12219973", "identifierV2": [ { - "value": "Sc E 03-852", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 03-852" }, { - "value": "33433018663819", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018663819" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433018663819" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 03-852" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 03-852" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc E 03-000852", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12219973" + ] }, "sort": [ null @@ -4578,88 +4625,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:65", - "label": "book, good condition, non-MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:NYGB G P 4127", + "urn:barcode:33433085765687" + ], + "physicalLocation": [ + "NYGB G P 4127" + ], + "shelfMark_sort": "aNYGB G P 004127", "catalogItemType_packed": [ "catalogItemType:65||book, good condition, non-MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcma2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433085765687" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:NYGB G P 4127", - "urn:barcode:33433085765687" + "shelfMark": [ + "NYGB G P 4127" ], + "uri": "i23219257", "identifierV2": [ { - "value": "NYGB G P 4127", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "NYGB G P 4127" }, { - "value": "33433085765687", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433085765687" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rcma2||Offsite" + ], + "idBarcode": [ + "33433085765687" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "NYGB G P 4127" - ], - "recapCustomerCode": [ - "NQ" - ], "requestable": [ true ], - "shelfMark": [ - "NYGB G P 4127" + "catalogItemType": [ + { + "id": "catalogItemType:65", + "label": "book, good condition, non-MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" ], - "shelfMark_sort": "aNYGB G P 004127", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i23219257" + ] }, "sort": [ null @@ -4674,85 +4721,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFE 94-15682", + "urn:barcode:33433078502899" + ], + "physicalLocation": [ + "JFE 94-15682" + ], + "shelfMark_sort": "aJFE 94-015682", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433078502899" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFE 94-15682", - "urn:barcode:33433078502899" + "shelfMark": [ + "JFE 94-15682" ], + "uri": "i12219972", "identifierV2": [ { - "value": "JFE 94-15682", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFE 94-15682" }, { - "value": "33433078502899", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433078502899" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078502899" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFE 94-15682" - ], "requestable": [ true ], - "shelfMark": [ - "JFE 94-15682" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFE 94-015682", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12219972" + ] }, "sort": [ null @@ -4766,7 +4813,7 @@ { "_index": "resources-2024-10-22", "_id": "b12005666", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "xv, 305 p., [6] p. of plates : ill., map ;" @@ -4816,6 +4863,10 @@ "createdYear": [ 1995 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Indians at Hampton Institute, 1877-1923" ], @@ -4952,7 +5003,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b12005666" ], "inner_hits": { @@ -4973,85 +5024,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc E 03-842", + "urn:barcode:33433018663934" + ], + "physicalLocation": [ + "Sc E 03-842" + ], + "shelfMark_sort": "aSc E 03-000842", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018663934" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc E 03-842", - "urn:barcode:33433018663934" + "shelfMark": [ + "Sc E 03-842" ], + "uri": "i12227995", "identifierV2": [ { - "value": "Sc E 03-842", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 03-842" }, { - "value": "33433018663934", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018663934" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433018663934" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 03-842" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 03-842" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc E 03-000842", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12227995" + ] }, "sort": [ null @@ -5066,85 +5117,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:HBC 95-2988", + "urn:barcode:33433062825967" + ], + "physicalLocation": [ + "HBC 95-2988" + ], + "shelfMark_sort": "aHBC 95-002988", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433062825967" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:HBC 95-2988", - "urn:barcode:33433062825967" + "shelfMark": [ + "HBC 95-2988" ], + "uri": "i12227994", "identifierV2": [ { - "value": "HBC 95-2988", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "HBC 95-2988" }, { - "value": "33433062825967", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433062825967" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433062825967" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "HBC 95-2988" - ], "requestable": [ true ], - "shelfMark": [ - "HBC 95-2988" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aHBC 95-002988", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12227994" + ] }, "sort": [ null @@ -5158,7 +5209,7 @@ { "_index": "resources-2024-10-22", "_id": "b12116006", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "viii, 194 p." @@ -5184,6 +5235,9 @@ "createdYear": [ 1964 ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Hello, Dolly! A musical comedy. Book by Michael Stewart based on The matchmaker by Thornton Wilder. Music and lyrics by Jerry Herman. Directed and choreographed by Gower Champion. Piano reduction by Robert H. Noeltner." ], @@ -5320,7 +5374,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b12116006" ], "inner_hits": { @@ -5341,85 +5395,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc F 02-543", + "urn:barcode:33433017883194" + ], + "physicalLocation": [ + "Sc F 02-543" + ], + "shelfMark_sort": "aSc F 02-000543", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433017883194" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc F 02-543", - "urn:barcode:33433017883194" + "shelfMark": [ + "Sc F 02-543" ], + "uri": "i11238198", "identifierV2": [ { - "value": "Sc F 02-543", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc F 02-543" }, { - "value": "33433017883194", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433017883194" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433017883194" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc F 02-543" - ], "requestable": [ true ], - "shelfMark": [ - "Sc F 02-543" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc F 02-000543", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11238198" + ] }, "sort": [ null @@ -5433,7 +5487,7 @@ { "_index": "resources-2024-10-22", "_id": "b12361250", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "342 p." @@ -5478,6 +5532,9 @@ "dateEndString": [ "1889" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Alcohol inside out from bottom principles facts for the millions." ], @@ -5596,7 +5653,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b12361250" ], "inner_hits": { @@ -5617,100 +5674,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*Z-7413 no. 1 no. 1-6", + "urn:barcode:33433107290128" + ], + "physicalLocation": [ + "*Z-7413 no. 1" + ], + "shelfMark_sort": "a*Z-7413 no. 000001 no. 1-6", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "enumerationChronology": [ - "no. 1-6" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*Z-7413 no. 1 no. 1-6" + ], + "uri": "i30164992", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*Z-7413 no. 1 no. 1-6" + }, + { + "type": "bf:Barcode", + "value": "33433107290128" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "no. 1-6" + ], "idBarcode": [ "33433107290128" ], - "identifier": [ - "urn:shelfmark:*Z-7413 no. 1 no. 1-6", - "urn:barcode:33433107290128" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*Z-7413 no. 1 no. 1-6", - "type": "bf:ShelfMark" - }, - { - "value": "33433107290128", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*Z-7413 no. 1" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*Z-7413 no. 1 no. 1-6" - ], - "shelfMark_sort": "a*Z-7413 no. 000001 no. 1-6", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 6 } - ], - "uri": "i30164992" + ] }, "sort": [ " 1-" @@ -5724,7 +5781,7 @@ { "_index": "resources-2024-10-22", "_id": "b12657791", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "211 p. illus., ports." @@ -5754,6 +5811,9 @@ "createdYear": [ 1945 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Histoire d'Haïti, à l'usage des candidates au certificat d'études primaires, d'après le Manuel d'histoire d'Haïti" ], @@ -5868,7 +5928,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b12657791" ], "inner_hits": { @@ -5889,77 +5949,77 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" + "identifier": [ + "urn:shelfmark:HPB (Brothers of Christian Instruction. Histoire d'Haiti)" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "HPB (Brothers of Christian Instruction. Histoire d'Haiti)" ], - "holdingLocation": [ + "shelfMark_sort": "aHPB (Brothers of Christian Instruction. Histoire d'Haiti)", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:HPB (Brothers of Christian Instruction. Histoire d'Haiti)" + "type": [ + "bf:Item" ], + "shelfMark": [ + "HPB (Brothers of Christian Instruction. Histoire d'Haiti)" + ], + "uri": "i16166841", "identifierV2": [ { - "value": "HPB (Brothers of Christian Instruction. Histoire d'Haiti)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "HPB (Brothers of Christian Instruction. Histoire d'Haiti)" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "HPB (Brothers of Christian Instruction. Histoire d'Haiti)" - ], "requestable": [ true ], - "shelfMark": [ - "HPB (Brothers of Christian Instruction. Histoire d'Haiti)" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aHPB (Brothers of Christian Instruction. Histoire d'Haiti)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16166841" + ] }, "sort": [ null @@ -5973,7 +6033,7 @@ { "_index": "resources-2024-10-22", "_id": "b12763093", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "viii, 114 p. : maps ;" @@ -6010,6 +6070,10 @@ "createdYear": [ 1963 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Africa past and present" ], @@ -6116,7 +6180,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b12763093" ], "inner_hits": { @@ -6137,97 +6201,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:61", - "label": "pamphlet volumes, bound with" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:C-12 9885 no. 1-8", + "urn:barcode:33433110584525" + ], + "physicalLocation": [ + "C-12 9885" + ], + "shelfMark_sort": "aC-12 9885 no. 000001-8", "catalogItemType_packed": [ "catalogItemType:61||pamphlet volumes, bound with" ], - "enumerationChronology": [ - "no. 1-8" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "C-12 9885 no. 1-8" + ], + "uri": "i31319399", + "identifierV2": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "type": "bf:ShelfMark", + "value": "C-12 9885 no. 1-8" + }, + { + "type": "bf:Barcode", + "value": "33433110584525" } ], "holdingLocation_packed": [ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], + "enumerationChronology": [ + "no. 1-8" + ], "idBarcode": [ "33433110584525" ], - "identifier": [ - "urn:shelfmark:C-12 9885 no. 1-8", - "urn:barcode:33433110584525" - ], - "identifierV2": [ - { - "value": "C-12 9885 no. 1-8", - "type": "bf:ShelfMark" - }, - { - "value": "33433110584525", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "C-12 9885" - ], "requestable": [ true ], - "shelfMark": [ - "C-12 9885 no. 1-8" + "catalogItemType": [ + { + "id": "catalogItemType:61", + "label": "pamphlet volumes, bound with" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aC-12 9885 no. 000001-8", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 8 } - ], - "uri": "i31319399" + ] }, "sort": [ " 1-" @@ -6242,85 +6306,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc C 03-369", + "urn:barcode:33433018555486" + ], + "physicalLocation": [ + "Sc C 03-369" + ], + "shelfMark_sort": "aSc C 03-000369", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018555486" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc C 03-369", - "urn:barcode:33433018555486" + "shelfMark": [ + "Sc C 03-369" ], + "uri": "i13435623", "identifierV2": [ { - "value": "Sc C 03-369", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc C 03-369" }, { - "value": "33433018555486", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018555486" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433018555486" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc C 03-369" - ], "requestable": [ true ], - "shelfMark": [ - "Sc C 03-369" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc C 03-000369", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13435623" + ] }, "sort": [ null @@ -6334,7 +6398,7 @@ { "_index": "resources-2024-10-22", "_id": "b13638125", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "141 p. : ill. ;" @@ -6497,7 +6561,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b13638125" ], "inner_hits": { @@ -6703,7 +6767,7 @@ { "_index": "resources-2024-10-22", "_id": "b13957410", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "286 p. : ill. ;" @@ -6744,6 +6808,10 @@ "createdYear": [ 1998 ], + "buildingLocationIds": [ + "sc", + "rc" + ], "title": [ "Rockers, jazzbos & visionaries" ], @@ -6875,7 +6943,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b13957410" ], "inner_hits": { @@ -6896,85 +6964,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "formatLiteral": [ - "Text" + "identifier": [ + "urn:shelfmark:Sc E 03-1387", + "urn:barcode:33433058173984" ], - "holdingLocation": [ + "physicalLocation": [ + "Sc E 03-1387" + ], + "shelfMark_sort": "aSc E 03-001387", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058173984" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc E 03-1387", - "urn:barcode:33433058173984" + "shelfMark": [ + "Sc E 03-1387" ], + "uri": "i14440557", "identifierV2": [ { - "value": "Sc E 03-1387", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 03-1387" }, { - "value": "33433058173984", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058173984" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433058173984" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 03-1387" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 03-1387" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc E 03-001387", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14440557" + ] }, "sort": [ null @@ -6989,88 +7057,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JME 99-57", + "urn:barcode:33433047473644" + ], + "physicalLocation": [ + "JME 99-57" + ], + "shelfMark_sort": "aJME 99-000057", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433047473644" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JME 99-57", - "urn:barcode:33433047473644" + "shelfMark": [ + "JME 99-57" ], + "uri": "i14440556", "identifierV2": [ { - "value": "JME 99-57", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JME 99-57" }, { - "value": "33433047473644", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433047473644" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433047473644" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JME 99-57" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JME 99-57" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJME 99-000057", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14440556" + ] }, "sort": [ null @@ -7084,7 +7152,7 @@ { "_index": "resources-2024-10-22", "_id": "b14192476", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "xvii, 264 p. : ill. ;" @@ -7129,6 +7197,9 @@ "createdYear": [ 1999 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "French colonial empire and the Popular Front : hope and disillusion" ], @@ -7273,7 +7344,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b14192476" ], "inner_hits": { @@ -7294,85 +7365,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFD 99-10935", + "urn:barcode:33433042458608" + ], + "physicalLocation": [ + "JFD 99-10935" + ], + "shelfMark_sort": "aJFD 99-010935", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433042458608" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFD 99-10935", - "urn:barcode:33433042458608" + "shelfMark": [ + "JFD 99-10935" ], + "uri": "i13675402", "identifierV2": [ { - "value": "JFD 99-10935", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFD 99-10935" }, { - "value": "33433042458608", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433042458608" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433042458608" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFD 99-10935" - ], "requestable": [ true ], - "shelfMark": [ - "JFD 99-10935" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFD 99-010935", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13675402" + ] }, "sort": [ null @@ -7386,7 +7457,7 @@ { "_index": "resources-2024-10-22", "_id": "b15021954", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "xlii, 567 p. ;" @@ -7424,6 +7495,10 @@ "createdYear": [ 2000 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Historical dictionary of Equatorial Guinea" ], @@ -7556,7 +7631,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b15021954" ], "inner_hits": { @@ -7577,85 +7652,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:-", - "label": "No restrictions" - } - ], "accessMessage_packed": [ "accessMessage:-||No restrictions" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)", + "urn:barcode:33433015882909" + ], + "physicalLocation": [ + "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)" + ], + "shelfMark_sort": "aSc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff1", - "label": "Schomburg Center - Research & Reference - Open Shelf" + "id": "accessMessage:-", + "label": "No restrictions" } ], - "holdingLocation_packed": [ - "loc:scff1||Schomburg Center - Research & Reference - Open Shelf" + "status_packed": [ + "status:o||Use in library" ], - "idBarcode": [ - "33433015882909" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)", - "urn:barcode:33433015882909" + "shelfMark": [ + "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)" ], + "uri": "i10908907", "identifierV2": [ { - "value": "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)" }, { - "value": "33433015882909", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015882909" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff1||Schomburg Center - Research & Reference - Open Shelf" + ], + "idBarcode": [ + "33433015882909" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)" - ], "requestable": [ false ], - "shelfMark": [ - "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff1", + "label": "Schomburg Center - Research & Reference - Open Shelf" + } ], - "shelfMark_sort": "aSc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)", "status": [ { "id": "status:o", "label": "Use in library" } - ], - "status_packed": [ - "status:o||Use in library" - ], - "type": [ - "bf:Item" - ], - "uri": "i10908907" + ] }, "sort": [ null @@ -7670,85 +7745,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:-", - "label": "No restrictions" - } - ], "accessMessage_packed": [ "accessMessage:-||No restrictions" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:*R-RMRR DT620.15 .L57 2000", + "urn:barcode:33433071345189" + ], + "physicalLocation": [ + "*R-RMRR DT620.15 .L57 2000" + ], + "shelfMark_sort": "a*R-RMRR DT620.15 .L57 002000", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" + "id": "accessMessage:-", + "label": "No restrictions" } ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + "status_packed": [ + "status:o||Use in library" ], - "idBarcode": [ - "33433071345189" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*R-RMRR DT620.15 .L57 2000", - "urn:barcode:33433071345189" + "shelfMark": [ + "*R-RMRR DT620.15 .L57 2000" ], + "uri": "i10908906", "identifierV2": [ { - "value": "*R-RMRR DT620.15 .L57 2000", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*R-RMRR DT620.15 .L57 2000" }, { - "value": "33433071345189", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433071345189" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "idBarcode": [ + "33433071345189" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "*R-RMRR DT620.15 .L57 2000" - ], "requestable": [ false ], - "shelfMark": [ - "*R-RMRR DT620.15 .L57 2000" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } ], - "shelfMark_sort": "a*R-RMRR DT620.15 .L57 002000", "status": [ { "id": "status:o", "label": "Use in library" } - ], - "status_packed": [ - "status:o||Use in library" - ], - "type": [ - "bf:Item" - ], - "uri": "i10908906" + ] }, "sort": [ null @@ -7762,7 +7837,7 @@ { "_index": "resources-2024-10-22", "_id": "b15340973", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "v." @@ -7800,6 +7875,9 @@ "dateEndString": [ "uuuu" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Verslag over het bestuur en den zakentoestand der Stad." ], @@ -7908,7 +7986,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b15340973" ], "inner_hits": { @@ -7929,21 +8007,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937", + "urn:barcode:33433014295111" + ], + "physicalLocation": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" + ], + "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-001937", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -7953,76 +8033,74 @@ "lte": "1937" } ], - "enumerationChronology": [ - "1936-1937" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1936" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937" + ], + "uri": "i11694436", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937" + }, + { + "type": "bf:Barcode", + "value": "33433014295111" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "1936-1937" + ], "idBarcode": [ "33433014295111" ], - "identifier": [ - "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937", - "urn:barcode:33433014295111" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937", - "type": "bf:ShelfMark" - }, - { - "value": "33433014295111", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937" - ], - "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-001937", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11694436" + ] }, "sort": [ " -1936" @@ -8037,21 +8115,23 @@ }, "_score": null, "_source": { - "accessMessage": [ + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "identifier": [ + "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935", + "urn:barcode:33433014295129" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } + "physicalLocation": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" ], + "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-001935", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -8061,76 +8141,74 @@ "lte": "1935" } ], - "enumerationChronology": [ - "1932-1935" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1932" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935" + ], + "uri": "i11694435", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935" + }, + { + "type": "bf:Barcode", + "value": "33433014295129" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "1932-1935" + ], "idBarcode": [ "33433014295129" ], - "identifier": [ - "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935", - "urn:barcode:33433014295129" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935", - "type": "bf:ShelfMark" - }, - { - "value": "33433014295129", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935" - ], - "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-001935", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11694435" + ] }, "sort": [ " -1932" @@ -8145,21 +8223,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931", + "urn:barcode:33433014295137" + ], + "physicalLocation": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" + ], + "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-001931", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -8169,76 +8249,74 @@ "lte": "1931" } ], - "enumerationChronology": [ - "1930-1931" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1930" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931" + ], + "uri": "i11694434", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931" + }, + { + "type": "bf:Barcode", + "value": "33433014295137" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "1930-1931" + ], "idBarcode": [ "33433014295137" ], - "identifier": [ - "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931", - "urn:barcode:33433014295137" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931", - "type": "bf:ShelfMark" - }, - { - "value": "33433014295137", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931" - ], - "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-001931", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11694434" + ] }, "sort": [ " -1930" @@ -8252,7 +8330,7 @@ { "_index": "resources-2024-10-22", "_id": "b15393792", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "vii, 196 p. : map ;" @@ -8297,6 +8375,10 @@ "createdYear": [ 2001 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Civil blood : a Civil War mystery" ], @@ -8433,7 +8515,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b15393792" ], "inner_hits": { @@ -8454,85 +8536,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc E 03-795", + "urn:barcode:33433018585681" + ], + "physicalLocation": [ + "Sc E 03-795" + ], + "shelfMark_sort": "aSc E 03-000795", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018585681" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc E 03-795", - "urn:barcode:33433018585681" + "shelfMark": [ + "Sc E 03-795" ], + "uri": "i14562818", "identifierV2": [ { - "value": "Sc E 03-795", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 03-795" }, { - "value": "33433018585681", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018585681" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433018585681" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 03-795" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 03-795" - ], - "shelfMark_sort": "aSc E 03-000795", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "uri": "i14562818" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -8547,85 +8629,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFE 02-14816", + "urn:barcode:33433030975449" + ], + "physicalLocation": [ + "JFE 02-14816" + ], + "shelfMark_sort": "aJFE 02-014816", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433030975449" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFE 02-14816", - "urn:barcode:33433030975449" + "shelfMark": [ + "JFE 02-14816" ], + "uri": "i11756968", "identifierV2": [ { - "value": "JFE 02-14816", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFE 02-14816" }, { - "value": "33433030975449", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433030975449" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433030975449" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFE 02-14816" - ], "requestable": [ true ], - "shelfMark": [ - "JFE 02-14816" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFE 02-014816", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11756968" + ] }, "sort": [ null @@ -8640,85 +8722,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFE 02-14816", + "urn:barcode:33433018426258" + ], + "physicalLocation": [ + "JFE 02-14816" + ], + "shelfMark_sort": "aJFE 02-014816", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018426258" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFE 02-14816", - "urn:barcode:33433018426258" + "shelfMark": [ + "JFE 02-14816" ], + "uri": "i11756967", "identifierV2": [ { - "value": "JFE 02-14816", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFE 02-14816" }, { - "value": "33433018426258", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018426258" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433018426258" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFE 02-14816" - ], "requestable": [ true ], - "shelfMark": [ - "JFE 02-14816" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFE 02-014816", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11756967" + ] }, "sort": [ null @@ -8732,7 +8814,7 @@ { "_index": "resources-2024-10-22", "_id": "b15568526", - "_score": 279.4066, + "_score": 279.10864, "_ignored": [ "title.keyword", "title.keywordLowercased", @@ -8785,6 +8867,9 @@ "createdYear": [ 2000 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "So︠t︡sialʹni ta politychni nauky u Spivdru︠z︡hnosti nezale︠z︡hnykh der︠z︡hav (SND) : dopovidi druhoï robochoï zustrichi, Kyïv, 23-24 veresn︠i︡a 1999 r. = Social and political sciences in the Commonwealth of Independent states (CIS) : proceedings of the Second Workshop, Kyiv, September, 23-24, 1999" ], @@ -8907,7 +8992,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b15568526" ], "inner_hits": { @@ -8928,88 +9013,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*QGA 03-2333", + "urn:barcode:33433031887841" + ], + "physicalLocation": [ + "*QGA 03-2333" + ], + "shelfMark_sort": "a*QGA 03-002333", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433031887841" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*QGA 03-2333", - "urn:barcode:33433031887841" + "shelfMark": [ + "*QGA 03-2333" ], + "uri": "i12462040", "identifierV2": [ { - "value": "*QGA 03-2333", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*QGA 03-2333" }, { - "value": "33433031887841", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433031887841" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433031887841" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*QGA 03-2333" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*QGA 03-2333" - ], - "shelfMark_sort": "a*QGA 03-002333", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "uri": "i12462040" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -9023,7 +9108,7 @@ { "_index": "resources-2024-10-22", "_id": "b15727834", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "xv, 336 p. : ill. ;" @@ -9067,12 +9152,15 @@ "createdYear": [ 2003 ], - "title": [ - "I never walked alone : the autobiography of an American singer" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "I never walked alone : the autobiography of an American singer" + ], "shelfMark": [ "JME 03-511" ], @@ -9097,9 +9185,6 @@ "dateStartYear": [ 2003 ], - "idOclc": [ - "vendor" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -9126,14 +9211,13 @@ "value": "2003002601" } ], + "idOclc": [ + "vendor" + ], "updatedAt": 1711013255913, "publicationStatement": [ "Hoboken, N.J. : John Wiley & Sons, c2003." ], - "idIsbn": [ - "GIFT REC'D AT SCH.", - "0471209910 (Cloth)" - ], "identifier": [ "urn:shelfmark:JME 03-511", "urn:bnum:15727834", @@ -9142,6 +9226,10 @@ "urn:oclc:vendor", "urn:lccn:2003002601" ], + "idIsbn": [ + "GIFT REC'D AT SCH.", + "0471209910 (Cloth)" + ], "numCheckinCardItems": [ 0 ], @@ -9198,7 +9286,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b15727834" ], "inner_hits": { @@ -9219,88 +9307,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JME 03-511", + "urn:barcode:33433035597842" + ], + "physicalLocation": [ + "JME 03-511" + ], + "shelfMark_sort": "aJME 03-000511", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433035597842" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JME 03-511", - "urn:barcode:33433035597842" + "shelfMark": [ + "JME 03-511" ], + "uri": "i12826752", "identifierV2": [ { - "value": "JME 03-511", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JME 03-511" }, { - "value": "33433035597842", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433035597842" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433035597842" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JME 03-511" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JME 03-511" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJME 03-000511", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12826752" + ] }, "sort": [ null @@ -9314,7 +9402,7 @@ { "_index": "resources-2024-10-22", "_id": "b16081816", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "511 p." @@ -9352,6 +9440,9 @@ "createdYear": [ 1952 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Trudy I. V. Stalina o ︠i︡azykoznanii i voprosy istoricheskogo materializma." ], @@ -9479,7 +9570,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b16081816" ], "inner_hits": { @@ -9500,79 +9591,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*QGF (Aleksandrov, G. Trudy)", + "urn:barcode:33433070398676" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*QGF (Aleksandrov, G. Trudy)" ], + "shelfMark_sort": "a*QGF (Aleksandrov, G. Trudy)", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433070398676" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*QGF (Aleksandrov, G. Trudy)", - "urn:barcode:33433070398676" + "shelfMark": [ + "*QGF (Aleksandrov, G. Trudy)" ], + "uri": "i15492993", "identifierV2": [ { - "value": "*QGF (Aleksandrov, G. Trudy)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*QGF (Aleksandrov, G. Trudy)" }, { - "value": "33433070398676", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433070398676" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*QGF (Aleksandrov, G. Trudy)" + "idBarcode": [ + "33433070398676" ], "requestable": [ true ], - "shelfMark": [ - "*QGF (Aleksandrov, G. Trudy)" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*QGF (Aleksandrov, G. Trudy)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15492993" + ] }, "sort": [ null @@ -9586,7 +9677,7 @@ { "_index": "resources-2024-10-22", "_id": "b18845012", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "199 p. : ill. ;" @@ -9636,12 +9727,15 @@ "createdYear": [ 2010 ], - "title": [ - "Salvador Dalí : Les chants de Maldoror, 1934" + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Salvador Dalí : Les chants de Maldoror, 1934" + ], "shelfMark": [ "MDG (Dali) 11-2416" ], @@ -9666,11 +9760,6 @@ "dateStartYear": [ 2010 ], - "idOclc": [ - "671870008", - "0671870008", - "it 60710530" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -9701,14 +9790,16 @@ "value": "(OCoLC)0671870008" } ], + "idOclc": [ + "671870008", + "0671870008", + "it 60710530" + ], "popularity": 0, "updatedAt": 1729181297739, "publicationStatement": [ "[Figueres, Spain] : Distribucions d'Art Surrealista, 2010." ], - "idIsbn": [ - "" - ], "identifier": [ "urn:shelfmark:MDG (Dali) 11-2416", "urn:bnum:18845012", @@ -9718,6 +9809,9 @@ "urn:oclc:it 60710530", "urn:identifier:(OCoLC)0671870008" ], + "idIsbn": [ + "" + ], "numCheckinCardItems": [ 0 ], @@ -9776,7 +9870,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b18845012" ], "inner_hits": { @@ -9797,87 +9891,87 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1112", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection" } ], + "identifier": [ + "urn:shelfmark:MDG (Dali) 11-2416", + "urn:barcode:33433090594536" + ], + "physicalLocation": [ + "MDG (Dali) 11-2416" + ], + "shelfMark_sort": "aMDG (Dali) 11-002416", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mauu2", - "label": "Schwarzman Building - Print Collection Room 308" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mauu2||Schwarzman Building - Print Collection Room 308" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090594536" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=MDG+%28Dali%29+11-2416&Date=2010&Form=30&Genre=book+non-circ&ItemEdition=1.+ed.&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db18845012&ItemISxN=i262430988&ItemNumber=33433090594536&ItemPlace=%5BFigueres%2C+Spain%5D&ItemPublisher=Distribucions+d%27Art+Surrealista%2C+2010.&Location=Schwarzman+Prints+and+Photographs+Division&ReferenceNumber=b188450129&Site=SASPR&Title=Salvador+Dal%C3%AD+%3A+Les+chants+de+Maldoror%2C+1934" ], - "identifier": [ - "urn:shelfmark:MDG (Dali) 11-2416", - "urn:barcode:33433090594536" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "MDG (Dali) 11-2416" ], + "uri": "i26243098", "identifierV2": [ { - "value": "MDG (Dali) 11-2416", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "MDG (Dali) 11-2416" }, { - "value": "33433090594536", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090594536" } ], - "owner": [ - { - "id": "orgs:1112", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection" - } + "holdingLocation_packed": [ + "loc:mauu2||Schwarzman Building - Print Collection Room 308" + ], + "idBarcode": [ + "33433090594536" ], "owner_packed": [ "orgs:1112||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection" ], - "physicalLocation": [ - "MDG (Dali) 11-2416" - ], "requestable": [ false ], - "shelfMark": [ - "MDG (Dali) 11-2416" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mauu2", + "label": "Schwarzman Building - Print Collection Room 308" + } ], - "shelfMark_sort": "aMDG (Dali) 11-002416", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i26243098", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=MDG+%28Dali%29+11-2416&Date=2010&Form=30&Genre=book+non-circ&ItemEdition=1.+ed.&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db18845012&ItemISxN=i262430988&ItemNumber=33433090594536&ItemPlace=%5BFigueres%2C+Spain%5D&ItemPublisher=Distribucions+d%27Art+Surrealista%2C+2010.&Location=Schwarzman+Prints+and+Photographs+Division&ReferenceNumber=b188450129&Site=SASPR&Title=Salvador+Dal%C3%AD+%3A+Les+chants+de+Maldoror%2C+1934" ] }, "sort": [ @@ -9892,7 +9986,7 @@ { "_index": "resources-2024-10-22", "_id": "b18883794", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "134 p. : ill. (some col.) ;" @@ -9931,12 +10025,15 @@ "createdYear": [ 2010 ], - "title": [ - "Le château Brethous : Camblanes-et-Meynac" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Le château Brethous : Camblanes-et-Meynac" + ], "shelfMark": [ "ReCAP 10-23065" ], @@ -9949,21 +10046,18 @@ "creatorLiteral": [ "Dupont, Aurélie." ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Châteaux viticoles de l'Entre-deux-Mers" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Coste, Laurent, 1961-" ], "dateStartYear": [ 2010 ], - "idOclc": [ - "666251824" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -9990,6 +10084,9 @@ "value": "(OCoLC)666251824" } ], + "idOclc": [ + "666251824" + ], "uniformTitle": [ "Châteaux viticoles de l'Entre-deux-Mers." ], @@ -9997,9 +10094,6 @@ "publicationStatement": [ "[Lignan-de-Bordeaux] : Société archéologique et historique du canton de Créon, 2010." ], - "idIsbn": [ - "(pbk.)" - ], "identifier": [ "urn:shelfmark:ReCAP 10-23065", "urn:bnum:18883794", @@ -10008,6 +10102,9 @@ "urn:identifier:(AUXAM)AAL0493710-0001", "urn:identifier:(OCoLC)666251824" ], + "idIsbn": [ + "(pbk.)" + ], "numCheckinCardItems": [ 0 ], @@ -10063,7 +10160,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b18883794" ], "inner_hits": { @@ -10084,88 +10181,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 10-23065", + "urn:barcode:33433090205430" + ], + "physicalLocation": [ + "ReCAP 10-23065" + ], + "shelfMark_sort": "aReCAP 10-023065", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090205430" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 10-23065", - "urn:barcode:33433090205430" + "shelfMark": [ + "ReCAP 10-23065" ], + "uri": "i26247203", "identifierV2": [ { - "value": "ReCAP 10-23065", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 10-23065" }, { - "value": "33433090205430", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090205430" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433090205430" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 10-23065" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 10-23065" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 10-023065", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i26247203" + ] }, "sort": [ null @@ -10179,7 +10276,7 @@ { "_index": "resources-2024-10-22", "_id": "b18890661", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "318 p. : ill., maps ;" @@ -10219,6 +10316,9 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Xivray-et-Marvoisin (Meuse) et ses familles de 1695 à 1933 : documents d'archives, documents privés" ], @@ -10344,7 +10444,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b18890661" ], "inner_hits": { @@ -10365,88 +10465,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 10-23290", + "urn:barcode:33433090203732" + ], + "physicalLocation": [ + "ReCAP 10-23290" + ], + "shelfMark_sort": "aReCAP 10-023290", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090203732" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 10-23290", - "urn:barcode:33433090203732" + "shelfMark": [ + "ReCAP 10-23290" ], + "uri": "i26309432", "identifierV2": [ { - "value": "ReCAP 10-23290", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 10-23290" }, { - "value": "33433090203732", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090203732" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433090203732" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 10-23290" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 10-23290" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 10-023290", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i26309432" + ] }, "sort": [ null @@ -10460,7 +10560,7 @@ { "_index": "resources-2024-10-22", "_id": "b18894005", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "200 p. : ill., maps ;" @@ -10505,6 +10605,9 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "La Révolution française dans le \"pays vallée de la Sarthe\", 1789-1800" ], @@ -10634,7 +10737,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b18894005" ], "inner_hits": { @@ -10655,88 +10758,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 10-24397", + "urn:barcode:33433090192968" + ], + "physicalLocation": [ + "ReCAP 10-24397" + ], + "shelfMark_sort": "aReCAP 10-024397", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090192968" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 10-24397", - "urn:barcode:33433090192968" + "shelfMark": [ + "ReCAP 10-24397" ], + "uri": "i26348705", "identifierV2": [ { - "value": "ReCAP 10-24397", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 10-24397" }, { - "value": "33433090192968", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090192968" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433090192968" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 10-24397" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 10-24397" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 10-024397", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i26348705" + ] }, "sort": [ null @@ -10750,7 +10853,7 @@ { "_index": "resources-2024-10-22", "_id": "b19274772", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "86 p. : ill. ;" @@ -10784,6 +10887,9 @@ "createdYear": [ 2009 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Au-dessus des djebels : aéronefs de l'armée de l'Air en AFN, 1945-1967 : moyens aériens engagés par l'armée de l'Air lors des opérations de pacification en 5ème RA" ], @@ -10904,7 +11010,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19274772" ], "inner_hits": { @@ -10925,88 +11031,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 11-51203", + "urn:barcode:33433090183157" + ], + "physicalLocation": [ + "ReCAP 11-51203" + ], + "shelfMark_sort": "aReCAP 11-051203", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090183157" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 11-51203", - "urn:barcode:33433090183157" + "shelfMark": [ + "ReCAP 11-51203" ], + "uri": "i27468941", "identifierV2": [ { - "value": "ReCAP 11-51203", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 11-51203" }, { - "value": "33433090183157", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090183157" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433090183157" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 11-51203" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 11-51203" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 11-051203", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i27468941" + ] }, "sort": [ null @@ -11020,7 +11126,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626695", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "v. ;" @@ -11060,15 +11166,18 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "ma" + ], "dateEndString": [ "9999" ], - "title": [ - "Mariages et décès franco-belges dans l'Avesnois" - ], "type": [ "nypl:Item" ], + "title": [ + "Mariages et décès franco-belges dans l'Avesnois" + ], "shelfMark": [ "ReCAP 12-24738" ], @@ -11081,12 +11190,12 @@ "creatorLiteral": [ "Dubois, Lucette." ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Histoire en Sambre-Avesnois ; no 65" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Immereschts, Charles.", "Cercle historique et généalogique de Berlaimont." @@ -11094,9 +11203,6 @@ "dateStartYear": [ 2010 ], - "idOclc": [ - "670409914" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -11119,6 +11225,9 @@ "value": "(OCoLC)670409914" } ], + "idOclc": [ + "670409914" + ], "dateEndYear": [ 9999 ], @@ -11126,9 +11235,6 @@ "publicationStatement": [ "Berlaimont : Cercle historique et généalogique de Berlaimont, 2010-" ], - "idIsbn": [ - "(pbk.)" - ], "identifier": [ "urn:shelfmark:ReCAP 12-24738", "urn:bnum:19626695", @@ -11136,6 +11242,9 @@ "urn:oclc:670409914", "urn:identifier:(OCoLC)670409914" ], + "idIsbn": [ + "(pbk.)" + ], "numCheckinCardItems": [ 0 ], @@ -11190,7 +11299,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19626695" ], "inner_hits": { @@ -11211,91 +11320,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:ReCAP 12-24738 v. 1", + "urn:barcode:33433094173238" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "ReCAP 12-24738" ], + "shelfMark_sort": "aReCAP 12-24738 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "ReCAP 12-24738 v. 1" + ], + "uri": "i28867446", + "identifierV2": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "type": "bf:ShelfMark", + "value": "ReCAP 12-24738 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433094173238" } ], "holdingLocation_packed": [ "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433094173238" ], - "identifier": [ - "urn:shelfmark:ReCAP 12-24738 v. 1", - "urn:barcode:33433094173238" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "ReCAP 12-24738 v. 1", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433094173238", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "ReCAP 12-24738" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "ReCAP 12-24738 v. 1" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "aReCAP 12-24738 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i28867446" + ] }, "sort": [ " 1-" @@ -11309,7 +11418,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626711", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "169 p. ;" @@ -11361,6 +11470,9 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Niederroedern : les baptêmes, 1704-1789" ], @@ -11485,7 +11597,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19626711" ], "inner_hits": { @@ -11506,88 +11618,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 12-51511", + "urn:barcode:33433094173394" + ], + "physicalLocation": [ + "ReCAP 12-51511" + ], + "shelfMark_sort": "aReCAP 12-051511", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433094173394" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 12-51511", - "urn:barcode:33433094173394" + "shelfMark": [ + "ReCAP 12-51511" ], + "uri": "i28732651", "identifierV2": [ { - "value": "ReCAP 12-51511", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 12-51511" }, { - "value": "33433094173394", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433094173394" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433094173394" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 12-51511" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 12-51511" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 12-051511", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28732651" + ] }, "sort": [ null @@ -11601,7 +11713,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626731", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "ii, 87 p. : charts ;" @@ -11648,12 +11760,15 @@ "createdYear": [ 2010 ], - "title": [ - "Nomain, Nord : B. M. S., 1683-1694" + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Nomain, Nord : B. M. S., 1683-1694" + ], "shelfMark": [ "ReCAP 12-51523" ], @@ -11666,21 +11781,18 @@ "creatorLiteral": [ "Malnar, Jacky." ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Publication (Centre d'études généalogiques du Douaisis) ; no 209" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Centre d'études généalogiques du Douaisis." ], "dateStartYear": [ 2010 ], - "idOclc": [ - "670409919" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -11703,6 +11815,9 @@ "value": "(OCoLC)670409919" } ], + "idOclc": [ + "670409919" + ], "uniformTitle": [ "Publication (Centre d'études généalogiques du Douaisis) ; no 209." ], @@ -11711,9 +11826,6 @@ "publicationStatement": [ "Douai : Centre d'études généalogiques du Douaisis, [2010]." ], - "idIsbn": [ - "(pbk.)" - ], "identifier": [ "urn:shelfmark:ReCAP 12-51523", "urn:bnum:19626731", @@ -11721,6 +11833,9 @@ "urn:oclc:670409919", "urn:identifier:(OCoLC)670409919" ], + "idIsbn": [ + "(pbk.)" + ], "numCheckinCardItems": [ 0 ], @@ -11761,15 +11876,15 @@ "placeOfPublication": [ "Douai" ], + "titleAlt": [ + "Nomain, Nord : baptêmes, mariages, sépultures, 1683-1694" + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Nomain, Nord : baptêmes, mariages, sépultures, 1683-1694" - ], "dimensions": [ "30 cm." ], @@ -11778,7 +11893,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19626731" ], "inner_hits": { @@ -11799,79 +11914,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:ReCAP 12-51523", + "urn:barcode:33433094173451" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "ReCAP 12-51523" ], + "shelfMark_sort": "aReCAP 12-051523", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433094173451" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 12-51523", - "urn:barcode:33433094173451" + "shelfMark": [ + "ReCAP 12-51523" ], + "uri": "i28732700", "identifierV2": [ { - "value": "ReCAP 12-51523", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 12-51523" }, { - "value": "33433094173451", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433094173451" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "ReCAP 12-51523" + "idBarcode": [ + "33433094173451" ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 12-51523" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "aReCAP 12-051523", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28732700" + ] }, "sort": [ null @@ -11885,7 +12000,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626820", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "231 p. ; " @@ -11911,6 +12026,7 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [], "title": [ "Wingen, les naissances" ], @@ -12017,7 +12133,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19626820" ], "inner_hits": { @@ -12036,7 +12152,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626821", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "172 p. ; " @@ -12062,6 +12178,7 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [], "title": [ "Wingen, les décès" ], @@ -12168,7 +12285,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19626821" ], "inner_hits": { @@ -12187,7 +12304,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626822", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "137 p. ; " @@ -12213,6 +12330,7 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [], "title": [ "Wingen, les naissances" ], @@ -12319,7 +12437,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19626822" ], "inner_hits": { @@ -12338,7 +12456,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626833", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "107 p. ;" @@ -12381,6 +12499,9 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Hoffen : les mariages, 1793-1910" ], @@ -12504,7 +12625,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19626833" ], "inner_hits": { @@ -12525,88 +12646,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 12-51536", + "urn:barcode:33433094175514" + ], + "physicalLocation": [ + "ReCAP 12-51536" + ], + "shelfMark_sort": "aReCAP 12-051536", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433094175514" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 12-51536", - "urn:barcode:33433094175514" + "shelfMark": [ + "ReCAP 12-51536" ], + "uri": "i28732751", "identifierV2": [ { - "value": "ReCAP 12-51536", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 12-51536" }, { - "value": "33433094175514", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433094175514" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433094175514" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 12-51536" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 12-51536" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 12-051536", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28732751" + ] }, "sort": [ null @@ -12620,7 +12741,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626836", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "19, 98 p. ;" @@ -12671,6 +12792,9 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Schoenenbourg : Les sépultures, 1685-1792" ], @@ -12795,7 +12919,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19626836" ], "inner_hits": { @@ -12816,88 +12940,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 12-51548", + "urn:barcode:33433094173683" + ], + "physicalLocation": [ + "ReCAP 12-51548" + ], + "shelfMark_sort": "aReCAP 12-051548", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433094173683" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 12-51548", - "urn:barcode:33433094173683" + "shelfMark": [ + "ReCAP 12-51548" ], + "uri": "i28732754", "identifierV2": [ { - "value": "ReCAP 12-51548", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 12-51548" }, { - "value": "33433094173683", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433094173683" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433094173683" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 12-51548" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 12-51548" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 12-051548", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28732754" + ] }, "sort": [ null @@ -12911,50 +13035,14 @@ { "_index": "resources-2024-10-22", "_id": "b19797207", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "2 volumes : illustrations ;" ], - "parallelDisplayField": [ - { - "fieldName": "publicationStatement", - "index": 0, - "value": "Москва ; Краснодар ; Санкт Петербург : Лань : Планета музыки, 2013." - }, - { - "fieldName": "placeOfPublication", - "index": 0, - "value": "Москва ; Краснодар ; Санкт Петербург" - }, - { - "fieldName": "tableOfContents", - "index": 0, - "value": "Том 1: История: как всё начиналось; Мастера российского джаза -- Том 2: Мастера российского джаза (продолжение); Поколение XXI века: куда идём?; Проблемы и решения." - } - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (pages 537-538).", - "type": "bf:Note" - } - ], "nyplSource": [ "sierra-nypl" ], - "subjectLiteral_exploded": [ - "Jazz", - "Jazz -- Russia (Federation)", - "Jazz -- Russia (Federation) -- History", - "Jazz -- Russia (Federation) -- History -- 20th century", - "Jazz musicians", - "Jazz musicians -- Russia (Federation)", - "Jazz musicians -- Russia (Federation) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], "publisherLiteral": [ "Lanʹ : Planeta muzyki" ], @@ -12967,46 +13055,27 @@ "label": "Russian" } ], - "numItemsTotal": [ - 2 - ], "createdYear": [ 2013 ], + "buildingLocationIds": [ + "rc" + ], "parallelTitle": [ "Российский джаз : в двух томах" ], - "title": [ - "Rossiĭskiĭ dzhaz : v dvukh tomakh" - ], "type": [ "nypl:Item" ], "shelfMark": [ "JMD 14-169" ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "2013" - ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Mir kulʹtury, istorii i filosofii" ], - "contributorLiteral": [ - "Filipʹeva, A.", - "Moshkov, Kirill, 1968-" - ], "dateStartYear": [ 2013 ], - "idOclc": [ - "857364582" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -13066,10 +13135,6 @@ "value": "(OCoLC)857364582" } ], - "uniformTitle": [ - "Seri︠i︡a \"Mir kulʹtury, istorii i filosofii.\"" - ], - "popularity": 2, "parallelUniformTitle": [ "Серия \"Мир культуры, истории и философии.\"" ], @@ -13077,17 +13142,6 @@ "publicationStatement": [ "Moskva ; Krasnodar ; Sankt Peterburg : Lanʹ : Planeta muzyki, 2013." ], - "idIsbn": [ - "9785811414475 (v.1) (Izd-vo Lanʹ)", - "5811414471 (v.1) (Izd-vo Lanʹ)", - "9785919380801 (v. 1) (Izd-vo Planeta Muzyki)", - "5919380802 (v. 1) (Izd-vo Planeta Muzyki)", - "9785811414482 (v. 2) (Izd-vo Lanʹ)", - "581141448X (v. 2) (Izd-vo Lanʹ)", - "", - "9785919380818 (v. 2) (Izd-vo Planeta Muzyki)", - "5919380810 (v. 2) (Izd-vo Planeta Muzyki)" - ], "identifier": [ "urn:shelfmark:JMD 14-169", "urn:bnum:19797207", @@ -13104,10 +13158,105 @@ "urn:oclc:857364582", "urn:identifier:(OCoLC)857364582" ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jazz -- Russia (Federation) -- History -- 20th century.", + "Jazz musicians -- Russia (Federation) -- Biography." + ], + "lccClassification": [ + "ML3509.R8 R677 2013" + ], + "parallelSeriesStatement": [ + "Мир культуры, истории и философии" + ], + "titleAlt": [ + "Russian jazz : ninety years of history" + ], + "tableOfContents": [ + "Tom 1: Istori︠i︡a: kak vsë nachinalosʹ; Mastera rossiĭskogo dzhaza -- Tom 2: Mastera rossiĭskogo dzhaza (prodolzhenie); Pokolenie XXI veka: kuda idëm?; Problemy i resheni︠i︡a." + ], + "parallelDisplayField": [ + { + "fieldName": "publicationStatement", + "index": 0, + "value": "Москва ; Краснодар ; Санкт Петербург : Лань : Планета музыки, 2013." + }, + { + "fieldName": "placeOfPublication", + "index": 0, + "value": "Москва ; Краснодар ; Санкт Петербург" + }, + { + "fieldName": "tableOfContents", + "index": 0, + "value": "Том 1: История: как всё начиналось; Мастера российского джаза -- Том 2: Мастера российского джаза (продолжение); Поколение XXI века: куда идём?; Проблемы и решения." + } + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (pages 537-538).", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Jazz", + "Jazz -- Russia (Federation)", + "Jazz -- Russia (Federation) -- History", + "Jazz -- Russia (Federation) -- History -- 20th century", + "Jazz musicians", + "Jazz musicians -- Russia (Federation)", + "Jazz musicians -- Russia (Federation) -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "numItemsTotal": [ + 2 + ], + "title": [ + "Rossiĭskiĭ dzhaz : v dvukh tomakh" + ], + "numItemVolumesParsed": [ + 2 + ], + "createdString": [ + "2013" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Filipʹeva, A.", + "Moshkov, Kirill, 1968-" + ], + "idOclc": [ + "857364582" + ], + "uniformTitle": [ + "Seri︠i︡a \"Mir kulʹtury, istorii i filosofii.\"" + ], + "popularity": 2, + "idIsbn": [ + "9785811414475 (v.1) (Izd-vo Lanʹ)", + "5811414471 (v.1) (Izd-vo Lanʹ)", + "9785919380801 (v. 1) (Izd-vo Planeta Muzyki)", + "5919380802 (v. 1) (Izd-vo Planeta Muzyki)", + "9785811414482 (v. 2) (Izd-vo Lanʹ)", + "581141448X (v. 2) (Izd-vo Lanʹ)", + "", + "9785919380818 (v. 2) (Izd-vo Planeta Muzyki)", + "5919380810 (v. 2) (Izd-vo Planeta Muzyki)" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ { "id": "resourcetypes:txt", "label": "Text" @@ -13122,30 +13271,14 @@ "dateString": [ "2013" ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jazz -- Russia (Federation) -- History -- 20th century.", - "Jazz musicians -- Russia (Federation) -- Biography." - ], "titleDisplay": [ "Rossiĭskiĭ dzhaz : v dvukh tomakh / pod redak︠t︡sieĭ K. Moshkova i A. Filipʹevoĭ." ], "uri": "b19797207", - "lccClassification": [ - "ML3509.R8 R677 2013" - ], "parallelContributorLiteral": [ "Филипьева, А.", "Мошков, Кирилл, 1968-" ], - "parallelSeriesStatement": [ - "Мир культуры, истории и философии" - ], "parallelTitleDisplay": [ "Российский джаз : в двух томах / под редакцией К. Мошкова и А. Филипьевой." ], @@ -13158,12 +13291,6 @@ "label": "monograph/item" } ], - "titleAlt": [ - "Russian jazz : ninety years of history" - ], - "tableOfContents": [ - "Tom 1: Istori︠i︡a: kak vsë nachinalosʹ; Mastera rossiĭskogo dzhaza -- Tom 2: Mastera rossiĭskogo dzhaza (prodolzhenie); Pokolenie XXI veka: kuda idëm?; Problemy i resheni︠i︡a." - ], "dimensions": [ "21 cm." ], @@ -13180,7 +13307,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19797207" ], "inner_hits": { @@ -13201,100 +13328,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMD 14-169 v. 2", + "urn:barcode:33433111774158" + ], + "physicalLocation": [ + "JMD 14-169" + ], + "shelfMark_sort": "aJMD 14-169 v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JMD 14-169 v. 2" + ], + "uri": "i31438752", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMD 14-169 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433111774158" } ], "holdingLocation_packed": [ "loc:rcpm2||Offsite" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433111774158" ], - "identifier": [ - "urn:shelfmark:JMD 14-169 v. 2", - "urn:barcode:33433111774158" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMD 14-169 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433111774158", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JMD 14-169" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMD 14-169 v. 2" - ], - "shelfMark_sort": "aJMD 14-169 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i31438752" + ] }, "sort": [ " 2-" @@ -13309,100 +13436,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMD 14-169 v. 1", + "urn:barcode:33433111774166" + ], + "physicalLocation": [ + "JMD 14-169" + ], + "shelfMark_sort": "aJMD 14-169 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JMD 14-169 v. 1" + ], + "uri": "i31438751", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMD 14-169 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433111774166" } ], "holdingLocation_packed": [ "loc:rcpm2||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433111774166" ], - "identifier": [ - "urn:shelfmark:JMD 14-169 v. 1", - "urn:barcode:33433111774166" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMD 14-169 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433111774166", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JMD 14-169" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMD 14-169 v. 1" - ], - "shelfMark_sort": "aJMD 14-169 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i31438751" + ] }, "sort": [ " 1-" @@ -13416,7 +13543,7 @@ { "_index": "resources-2024-10-22", "_id": "b20518533", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "248 p. : ill. (some col.), charts (some col.) ;" @@ -13470,6 +13597,9 @@ "createdYear": [ 2013 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "France-Brésil, échanges intellectuels et artistiques : repères historiques et prospectifs" ], @@ -13593,7 +13723,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b20518533" ], "inner_hits": { @@ -13614,88 +13744,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 15-60536", + "urn:barcode:33433112874940" + ], + "physicalLocation": [ + "ReCAP 15-60536" + ], + "shelfMark_sort": "aReCAP 15-060536", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433112874940" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 15-60536", - "urn:barcode:33433112874940" + "shelfMark": [ + "ReCAP 15-60536" ], + "uri": "i32505166", "identifierV2": [ { - "value": "ReCAP 15-60536", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 15-60536" }, { - "value": "33433112874940", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433112874940" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433112874940" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 15-60536" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 15-60536" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 15-060536", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i32505166" + ] }, "sort": [ null @@ -13709,7 +13839,7 @@ { "_index": "resources-2024-10-22", "_id": "b20613060", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "93 pages ;" @@ -13746,6 +13876,7 @@ "createdYear": [ 2013 ], + "buildingLocationIds": [], "title": [ "Evreii din România : [Matineul de duminică, 2 - 17 februarie 2013]" ], @@ -13812,7 +13943,159 @@ } ], "dateString": [ - "2013" + "2013" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jews.", + "Romania." + ], + "titleDisplay": [ + "Evreii din România : [Matineul de duminică, 2 - 17 februarie 2013] / Ileana Buculei." + ], + "uri": "b20613060", + "placeOfPublication": [ + "Bucureşti" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm" + ], + "idIsbn_clean": [ + "" + ] + }, + "sort": [ + 279.10864, + "b20613060" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 0, + "relation": "eq" + }, + "max_score": null, + "hits": [] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b23380112", + "_score": 279.10864, + "_source": { + "extent": [ + "85 pages : illustrations ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tierra Nueva" + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "numItemsTotal": [ + 0 + ], + "createdYear": [ + 2023 + ], + "buildingLocationIds": [], + "title": [ + "Historia de San Joaquín de Omaguas : rescate de un linaje asombroso" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "2023" + ], + "creatorLiteral": [ + "Vílchez Vela, Percy, 1960-" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 2023 + ], + "idOclc": [ + "00019739" + ], + "identifierV2": [ + { + "type": "nypl:Bnumber", + "value": "23380112" + }, + { + "type": "bf:Isbn", + "value": "9786124142765" + }, + { + "type": "bf:Isbn", + "value": "i" + }, + { + "type": "nypl:Oclc", + "value": "00019739" + } + ], + "popularity": 0, + "updatedAt": 1722431001509, + "publicationStatement": [ + "Iquitos, Perú : Tierra Nueva, 2023." + ], + "idIsbn": [ + "9786124142765", + "i" + ], + "identifier": [ + "urn:bnum:23380112", + "urn:isbn:9786124142765", + "urn:isbn:i", + "urn:oclc:00019739" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "2023" ], "mediaType": [ { @@ -13820,16 +14103,12 @@ "label": "unmediated" } ], - "subjectLiteral": [ - "Jews.", - "Romania." - ], "titleDisplay": [ - "Evreii din România : [Matineul de duminică, 2 - 17 februarie 2013] / Ileana Buculei." + "Historia de San Joaquín de Omaguas : rescate de un linaje asombroso / Percy Vílchez Vela." ], - "uri": "b20613060", + "uri": "b23380112", "placeOfPublication": [ - "Bucureşti" + "Iquitos, Perú" ], "issuance": [ { @@ -13838,15 +14117,16 @@ } ], "dimensions": [ - "22 cm" + "18 cm" ], "idIsbn_clean": [ + "9786124142765", "" ] }, "sort": [ - 279.4066, - "b20613060" + 279.10864, + "b23380112" ], "inner_hits": { "items": { @@ -13863,35 +14143,42 @@ }, { "_index": "resources-2024-10-22", - "_id": "b23380112", - "_score": 279.4066, + "_id": "b23454022", + "_score": 279.10864, "_source": { "extent": [ - "85 pages : illustrations ;" + "30, 2 unnumbered pages : illustrations ;" ], "nyplSource": [ "sierra-nypl" ], + "subjectLiteral_exploded": [ + "Tykocin (Poland)", + "Tykocin (Poland) -- History", + "Tykocin (Poland) -- History -- 17th century", + "Tykocin (Poland) -- History -- 17th century -- Historical comic books, stripes, etc" + ], "numItemDatesParsed": [ 0 ], "publisherLiteral": [ - "Tierra Nueva" + "Wydawnictwo Podlaski Młyn" ], "language": [ { - "id": "lang:spa", - "label": "Spanish" + "id": "lang:pol", + "label": "Polish" } ], "numItemsTotal": [ 0 ], + "buildingLocationIds": [], "createdYear": [ - 2023 + 2012 ], "title": [ - "Historia de San Joaquín de Omaguas : rescate de un linaje asombroso" + "Zdobycie Tykocina : 1657" ], "type": [ "nypl:Item" @@ -13900,52 +14187,54 @@ 0 ], "createdString": [ - "2023" - ], - "creatorLiteral": [ - "Vílchez Vela, Percy, 1960-" + "2012" ], "numElectronicResources": [ 0 ], + "contributorLiteral": [ + "Rudawski, Adam", + "Lebiedzińska, Kamila", + "Busłowski, Andrzej" + ], "dateStartYear": [ - 2023 + 2012 ], "idOclc": [ - "00019739" + "lx2024105775" ], "identifierV2": [ { "type": "nypl:Bnumber", - "value": "23380112" + "value": "23454022" }, { "type": "bf:Isbn", - "value": "9786124142765" + "value": "[without ISBN] ;" }, { - "type": "bf:Isbn", - "value": "i" + "type": "nypl:Oclc", + "value": "lx2024105775" }, { - "type": "nypl:Oclc", - "value": "00019739" + "type": "bf:Identifier", + "value": "(PlWaKWL)nr2145725974" } ], "popularity": 0, - "updatedAt": 1722431001509, + "updatedAt": 1730481867767, "publicationStatement": [ - "Iquitos, Perú : Tierra Nueva, 2023." + "Tykocin : Wydawnictwo Podlaski Młyn, 2012.", + "©2012" ], "idIsbn": [ - "9786124142765", - "i" + "[without ISBN] ;" ], "identifier": [ - "urn:bnum:23380112", - "urn:isbn:9786124142765", - "urn:isbn:i", - "urn:oclc:00019739" + "urn:bnum:23454022", + "urn:isbn:[without ISBN] ;", + "urn:oclc:lx2024105775", + "urn:identifier:(PlWaKWL)nr2145725974" ], "numCheckinCardItems": [ 0 @@ -13963,7 +14252,7 @@ } ], "dateString": [ - "2023" + "2012" ], "mediaType": [ { @@ -13971,12 +14260,18 @@ "label": "unmediated" } ], + "subjectLiteral": [ + "Tykocin (Poland) -- History -- 17th century -- Historical comic books, stripes, etc." + ], "titleDisplay": [ - "Historia de San Joaquín de Omaguas : rescate de un linaje asombroso / Percy Vílchez Vela." + "Zdobycie Tykocina : 1657 / scenariusz: Adam Rudawski; rysunki: Kamila Lebiedzińska, Andrzej Busłowski." + ], + "uri": "b23454022", + "lccClassification": [ + "PN6790.P63.4 Z36 2012" ], - "uri": "b23380112", "placeOfPublication": [ - "Iquitos, Perú" + "Tykocin" ], "issuance": [ { @@ -13985,16 +14280,15 @@ } ], "dimensions": [ - "18 cm" + "24 cm." ], "idIsbn_clean": [ - "9786124142765", "" ] }, "sort": [ - 279.4066, - "b23380112" + 279.10864, + "b23454022" ], "inner_hits": { "items": { @@ -14012,7 +14306,7 @@ { "_index": "resources-2024-10-22", "_id": "cb10558328", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "2 volumes ;" @@ -14062,27 +14356,30 @@ "createdYear": [ 2013 ], + "buildingLocationIds": [ + "rc" + ], "parallelTitle": [ "Российский джаз : в двух томах" ], - "title": [ - "Rossiĭskiĭ dzhaz : v dvukh tomakh" - ], "type": [ "nypl:Item" ], + "title": [ + "Rossiĭskiĭ dzhaz : v dvukh tomakh" + ], "numItemVolumesParsed": [ 0 ], "createdString": [ "2013" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Mir kulʹtury, istorii i filosofii" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Filipʹeva, A.", "Moshkov, Kirill, 1968-" @@ -14090,11 +14387,6 @@ "dateStartYear": [ 2013 ], - "idOclc": [ - "ocn857364582", - "857364582", - "SCSB-5718665" - ], "identifierV2": [ { "type": "nypl:Bnumber", @@ -14170,6 +14462,11 @@ "value": "10558328" } ], + "idOclc": [ + "ocn857364582", + "857364582", + "SCSB-5718665" + ], "uniformTitle": [ "Serii︠a︡ \"Mir kulʹtury, istorii i filosofii.\"" ], @@ -14180,17 +14477,6 @@ "publicationStatement": [ "Moskva ; Krasnodar ; Sankt Peterburg : Lanʹ : Planeta muzyki, 2013." ], - "idIsbn": [ - "9785811414475 (v.1) (Izd-vo Lanʹ)", - "5811414471 (v.1) (Izd-vo Lanʹ)", - "9785919380801 (v. 1) (Izd-vo Planeta Muzyki)", - "5919380802 (v. 1) (Izd-vo Planeta Muzyki)", - "9785811414482 (v. 2) (Izd-vo Lanʹ)", - "581141448X (v. 2) (Izd-vo Lanʹ)", - "", - "9785919380818 (v. 2) (Izd-vo Planeta Muzyki)", - "5919380810 (v. 2) (Izd-vo Planeta Muzyki)" - ], "identifier": [ "urn:bnum:10558328", "urn:isbn:9785811414475 (v.1) (Izd-vo Lanʹ)", @@ -14211,6 +14497,17 @@ "urn:identifier:(NNC)10558328", "urn:identifier:10558328" ], + "idIsbn": [ + "9785811414475 (v.1) (Izd-vo Lanʹ)", + "5811414471 (v.1) (Izd-vo Lanʹ)", + "9785919380801 (v. 1) (Izd-vo Planeta Muzyki)", + "5919380802 (v. 1) (Izd-vo Planeta Muzyki)", + "9785811414482 (v. 2) (Izd-vo Lanʹ)", + "581141448X (v. 2) (Izd-vo Lanʹ)", + "", + "9785919380818 (v. 2) (Izd-vo Planeta Muzyki)", + "5919380810 (v. 2) (Izd-vo Planeta Muzyki)" + ], "numCheckinCardItems": [ 0 ], @@ -14281,7 +14578,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "cb10558328" ], "inner_hits": { @@ -14302,82 +14599,82 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0002", + "label": "Columbia University Libraries" } ], + "identifier": [ + "urn:shelfmark:ML3509.R8 R677 2013g t.2", + "urn:barcode:CU23199733" + ], + "physicalLocation": [ + "ML3509.R8 R677 2013g" + ], + "shelfMark_sort": "aML3509.R8 R677 2013g t.000002", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "enumerationChronology": [ - "t.2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "formatLiteral": [ - "Text" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "CU23199733" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ML3509.R8 R677 2013g t.2", - "urn:barcode:CU23199733" + "shelfMark": [ + "ML3509.R8 R677 2013g t.2" ], + "uri": "ci8385547", "identifierV2": [ { - "value": "ML3509.R8 R677 2013g t.2", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ML3509.R8 R677 2013g t.2" }, { - "value": "CU23199733", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "CU23199733" } ], - "owner": [ - { - "id": "orgs:0002", - "label": "Columbia University Libraries" - } + "enumerationChronology": [ + "t.2" + ], + "idBarcode": [ + "CU23199733" ], "owner_packed": [ "orgs:0002||Columbia University Libraries" ], - "physicalLocation": [ - "ML3509.R8 R677 2013g" - ], - "recapCustomerCode": [ - "CU" - ], "requestable": [ true ], - "shelfMark": [ - "ML3509.R8 R677 2013g t.2" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "CU" ], - "shelfMark_sort": "aML3509.R8 R677 2013g t.000002", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "ci8385547" + ] }, "sort": [ null @@ -14392,82 +14689,82 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0002", + "label": "Columbia University Libraries" } ], + "identifier": [ + "urn:shelfmark:ML3509.R8 R677 2013g t.1", + "urn:barcode:CU23199741" + ], + "physicalLocation": [ + "ML3509.R8 R677 2013g" + ], + "shelfMark_sort": "aML3509.R8 R677 2013g t.000001", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "enumerationChronology": [ - "t.1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "formatLiteral": [ - "Text" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "CU23199741" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ML3509.R8 R677 2013g t.1", - "urn:barcode:CU23199741" + "shelfMark": [ + "ML3509.R8 R677 2013g t.1" ], + "uri": "ci8385546", "identifierV2": [ { - "value": "ML3509.R8 R677 2013g t.1", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ML3509.R8 R677 2013g t.1" }, { - "value": "CU23199741", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "CU23199741" } ], - "owner": [ - { - "id": "orgs:0002", - "label": "Columbia University Libraries" - } + "enumerationChronology": [ + "t.1" + ], + "idBarcode": [ + "CU23199741" ], "owner_packed": [ "orgs:0002||Columbia University Libraries" ], - "physicalLocation": [ - "ML3509.R8 R677 2013g" + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" ], "recapCustomerCode": [ "CU" ], - "requestable": [ - true - ], - "shelfMark": [ - "ML3509.R8 R677 2013g t.1" - ], - "shelfMark_sort": "aML3509.R8 R677 2013g t.000001", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "ci8385546" + ] }, "sort": [ null @@ -14481,7 +14778,7 @@ { "_index": "resources-2024-10-22", "_id": "cb131516", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "xii, 71 p. ;" @@ -14611,7 +14908,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "cb131516" ], "inner_hits": { @@ -14704,7 +15001,7 @@ { "_index": "resources-2024-10-22", "_id": "cb469529", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "48 p. : ill., maps (some col.) ;" @@ -14758,247 +15055,7 @@ "urn:isbn:(pa.)" ], "idIsbn": [ - "(pa.)" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "City planning -- Ontario -- Toronto." - ], - "titleDisplay": [ - "Plan for Yorkville : draft proposals / presented for the public discussion by the City of Toronto Planning Board." - ], - "uri": "cb469529", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Toronto :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - 279.4066, - "cb469529" - ], - "inner_hits": { - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-10-22", - "_id": "cb469529", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:0002", - "label": "Columbia University Libraries" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:AR52190137" - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "ci713317", - "shelfMark": [ - "AA9130 T63 T6356" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "AA9130 T63 T6356" - }, - { - "type": "bf:Barcode", - "value": "AR52190137" - } - ], - "idBarcode": [ - "AR52190137" - ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-10-22", - "_id": "cb70235", - "_score": 279.4066, - "_source": { - "extent": [ - "312 p. ;" - ], - "nyplSource": [ - "recap-cul" - ], - "publisherLiteral": [ - "American Novelists' Cooperative Publications," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1977 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Rabbi : a tale of the waning year / Stanley Sultan." - ], - "creatorLiteral": [ - "Sultan, Stanley." - ], - "createdString": [ - "1977" - ], - "idLccn": [ - " 77010052 " - ], - "dateStartYear": [ - 1977 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "70235" - }, - { - "type": "bf:Isbn", - "value": "(pbk.)" - }, - { - "type": "bf:Lccn", - "value": " 77010052 " - }, - { - "type": "nypl:Oclc", - "value": "3168797" - }, - { - "type": "nypl:Oclc", - "value": "ocm03168797" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)3168797" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm03168797" - }, - { - "type": "bf:Identifier", - "value": "(CStRLIN)NYCG82-B13057" - }, - { - "type": "bf:Identifier", - "value": "(NNC)70235" - } - ], - "idOclc": [ - "3168797", - "ocm03168797" - ], - "holdings": [], - "updatedAt": 1639675654859, - "publicationStatement": [ - "West Whately, Mass. : American Novelists' Cooperative Publications, c1977." - ], - "identifier": [ - "urn:bnum:70235", - "urn:isbn:(pbk.)", - "urn:lccn: 77010052 ", - "urn:oclc:3168797", - "urn:oclc:ocm03168797", - "urn:undefined:(OCoLC)3168797", - "urn:undefined:(OCoLC)ocm03168797", - "urn:undefined:(CStRLIN)NYCG82-B13057", - "urn:undefined:(NNC)70235" - ], - "idIsbn": [ - "(pbk.)" + "(pa.)" ], "materialType": [ { @@ -15013,7 +15070,7 @@ } ], "dateString": [ - "1977" + "1969" ], "mediaType": [ { @@ -15021,13 +15078,13 @@ "label": "unmediated" } ], - "titleDisplay": [ - "Rabbi : a tale of the waning year / Stanley Sultan." + "subjectLiteral": [ + "City planning -- Ontario -- Toronto." ], - "uri": "cb70235", - "lccClassification": [ - "PZ4.S9532 Rab PS3569.U3597" + "titleDisplay": [ + "Plan for Yorkville : draft proposals / presented for the public discussion by the City of Toronto Planning Board." ], + "uri": "cb469529", "numItems": [ 1 ], @@ -15035,7 +15092,7 @@ 1 ], "placeOfPublication": [ - "West Whately, Mass. :" + "Toronto :" ], "issuance": [ { @@ -15044,12 +15101,12 @@ } ], "dimensions": [ - "23 cm." + "28 cm." ] }, "sort": [ - 279.4066, - "cb70235" + 279.10864, + "cb469529" ], "inner_hits": { "items": { @@ -15062,76 +15119,72 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "cb70235", + "_id": "cb469529", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "uri": "ci106279", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:AR52190137" ], "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "ci713317", "shelfMark": [ - "PS3569.U3597 R3" + "AA9130 T63 T6356" ], "identifierV2": [ { - "value": "PS3569.U3597 R3", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "AA9130 T63 T6356" }, { "type": "bf:Barcode", - "value": "CU54669421" + "value": "AR52190137" } ], - "physicalLocation": [ - "PS3569.U3597 R3" - ], - "identifier": [ - "urn:barcode:CU54669421" - ], "idBarcode": [ - "CU54669421" + "AR52190137" + ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aPS3569.U3597 R000003" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -15144,174 +15197,108 @@ }, { "_index": "resources-2024-10-22", - "_id": "pb99102451453506421", - "_score": 279.4066, + "_id": "cb70235", + "_score": 279.10864, "_source": { "extent": [ - "99 pages : many color illustrations ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes biography and list of works (pages 95-97)", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes biography and list of works (pages 95-97).", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Text in English and Swedish.", - "type": "bf:Note" - } + "312 p. ;" ], "nyplSource": [ - "recap-pul" - ], - "subjectLiteral_exploded": [ - "Wåhlstrand, Gunnel, 1974-", - "Artists", - "Artists -- Sweden", - "Artists -- Sweden -- Exhibitions", - "Artists -- Sweden -- Biography", - "Ink painting", - "Ink painting -- Sweden", - "Ink painting -- Sweden -- Exhibitions", - "Painting, Swedish", - "Painting, Swedish -- 21st century", - "Painting, Swedish -- 21st century -- Exhibitions" - ], - "numItemDatesParsed": [ - 0 + "recap-cul" ], "publisherLiteral": [ - "Art and Theory" - ], - "description": [ - "Swedish artist Gunnel Wåhlstrand (b. 1974) creates extraordinary large-scale ink wash paintings featuring monumental landscapes, compelling portraits and serene interiors with intriguing compositions. The point of departure for Wåhlstrand's work was a box of family photographs, the only connection that she had to her father while growing up. To fill the silence surrounding his life and disappearance, she began to use these photographs: enlarging the image, delving into every detail and using her imagination to complete any information that is lacking or obscured. Each work takes months to complete, as the ink washes are applied in successive layers, gradually filling the white paper through a process that the artist likens to a slowly developing photograph. This book assembles all of the artist's works, including an interview with the artist and a text by Lars Norén." + "American Novelists' Cooperative Publications," ], "language": [ { - "id": "lang:mul", - "label": "Multiple languages" + "id": "lang:eng", + "label": "English" } ], - "numItemsTotal": [ - 1 - ], "createdYear": [ - 2017 + 1977 ], - "title": [ - "Gunnel Wåhlstrand" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], - "numItemVolumesParsed": [ - 0 + "title": [ + "Rabbi : a tale of the waning year / Stanley Sultan." + ], + "creatorLiteral": [ + "Sultan, Stanley." ], "createdString": [ - "2017" + "1977" ], "idLccn": [ - "2017367481" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Magasin 3 Stockholm konsthalls utställningskatalog ; no. 45" - ], - "contributorLiteral": [ - "Klintenberg Gedda, Ellen, 1989-", - "Lindblad, Jennifer", - "Neuman, David." + " 77010052 " ], "dateStartYear": [ - 2017 - ], - "idOclc": [ - "ocn988900729", - "SCSB-8795832" + 1977 ], "identifierV2": [ { "type": "nypl:Bnumber", - "value": "99102451453506421" - }, - { - "type": "bf:Isbn", - "value": "C (book trade edition : cl.)" + "value": "70235" }, { "type": "bf:Isbn", - "value": "9789188031440" + "value": "(pbk.)" }, { - "type": "bf:Isbn", - "value": "9188031446" + "type": "bf:Lccn", + "value": " 77010052 " }, { "type": "nypl:Oclc", - "value": "ocn988900729" + "value": "3168797" }, { "type": "nypl:Oclc", - "value": "SCSB-8795832" - }, - { - "type": "bf:Lccn", - "value": "2017367481" - }, - { - "type": "bf:Identifier", - "value": "(NL-AmEBA)NTS250337" + "value": "ocm03168797" }, { "type": "bf:Identifier", - "value": "(NjP)10245145-princetondb" + "value": "(OCoLC)3168797" }, { "type": "bf:Identifier", - "value": "(OCoLC)ocn988900729" + "value": "(OCoLC)ocm03168797" }, { "type": "bf:Identifier", - "value": "(OCoLC)981545584 (OCoLC)981867608" + "value": "(CStRLIN)NYCG82-B13057" }, { "type": "bf:Identifier", - "value": "(NjP)Voyager10245145" + "value": "(NNC)70235" } ], - "updatedAt": 1715301569503, - "publicationStatement": [ - "Stockholm : Art and Theory, [2017]" + "idOclc": [ + "3168797", + "ocm03168797" ], - "idIsbn": [ - "C (book trade edition : cl.)", - "9789188031440", - "9188031446" + "holdings": [], + "updatedAt": 1639675654859, + "publicationStatement": [ + "West Whately, Mass. : American Novelists' Cooperative Publications, c1977." ], "identifier": [ - "urn:bnum:99102451453506421", - "urn:isbn:C (book trade edition : cl.)", - "urn:isbn:9789188031440", - "urn:isbn:9188031446", - "urn:oclc:ocn988900729", - "urn:oclc:SCSB-8795832", - "urn:lccn:2017367481", - "urn:identifier:(NL-AmEBA)NTS250337", - "urn:identifier:(NjP)10245145-princetondb", - "urn:identifier:(OCoLC)ocn988900729", - "urn:identifier:(OCoLC)981545584 (OCoLC)981867608", - "urn:identifier:(NjP)Voyager10245145" + "urn:bnum:70235", + "urn:isbn:(pbk.)", + "urn:lccn: 77010052 ", + "urn:oclc:3168797", + "urn:oclc:ocm03168797", + "urn:undefined:(OCoLC)3168797", + "urn:undefined:(OCoLC)ocm03168797", + "urn:undefined:(CStRLIN)NYCG82-B13057", + "urn:undefined:(NNC)70235" ], - "numCheckinCardItems": [ - 0 + "idIsbn": [ + "(pbk.)" ], "materialType": [ { @@ -15326,30 +15313,29 @@ } ], "dateString": [ - "2017" + "1977" ], "mediaType": [ { - "id": "mediatypes:undefined", + "id": "mediatypes:n", "label": "unmediated" } ], - "subjectLiteral": [ - "Wåhlstrand, Gunnel, 1974-", - "Artists -- Sweden -- Exhibitions.", - "Artists -- Sweden -- Biography.", - "Ink painting -- Sweden -- Exhibitions.", - "Painting, Swedish -- 21st century -- Exhibitions." - ], "titleDisplay": [ - "Gunnel Wåhlstrand / editors: Ellen Klintenberg Gedda, Jennifer Lindblad ; texts: David Neuman [and 3 others] ; translation: Karin Altenberg, Robin Robertson, Suzanne Cheadle Martin." + "Rabbi : a tale of the waning year / Stanley Sultan." ], - "uri": "pb99102451453506421", + "uri": "cb70235", "lccClassification": [ - "N7088.6 .A45 2009" + "PZ4.S9532 Rab PS3569.U3597" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 ], "placeOfPublication": [ - "Stockholm" + "West Whately, Mass. :" ], "issuance": [ { @@ -15358,17 +15344,12 @@ } ], "dimensions": [ - "37 cm." - ], - "idIsbn_clean": [ - "", - "9789188031440", - "9188031446" + "23 cm." ] }, "sort": [ - 279.4066, - "pb99102451453506421" + 279.10864, + "cb70235" ], "inner_hits": { "items": { @@ -15381,86 +15362,76 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "pb99102451453506421", + "_id": "cb70235", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ + "owner": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "orgs:0002", + "label": "Columbia University Libraries" } ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:CU54669421" ], + "physicalLocation": [ + "PS3569.U3597 R3" + ], + "shelfMark_sort": "aPS3569.U3597 R000003", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } ], - "idBarcode": [ - "32101101205050" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:N7088.6 .A45 2009q Oversize", - "urn:barcode:32101101205050" + "uri": "ci106279", + "shelfMark": [ + "PS3569.U3597 R3" ], "identifierV2": [ { - "value": "N7088.6 .A45 2009q Oversize", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PS3569.U3597 R3" }, { - "value": "32101101205050", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "CU54669421" } ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } + "idBarcode": [ + "CU54669421" ], "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "physicalLocation": [ - "N7088.6 .A45 2009q Oversize" - ], - "recapCustomerCode": [ - "PJ" + "orgs:0002||Columbia University Libraries" ], "requestable": [ true ], - "shelfMark": [ - "N7088.6 .A45 2009q Oversize" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } ], - "shelfMark_sort": "aN7088.6 .A45 2009q Oversize", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23627289630006421" + ] }, "sort": [ null diff --git a/test/fixtures/query-20eaf260256f67731232e18f3ed913ba.json b/test/fixtures/query-20eaf260256f67731232e18f3ed913ba.json index 77a31363..22dc713e 100644 --- a/test/fixtures/query-20eaf260256f67731232e18f3ed913ba.json +++ b/test/fixtures/query-20eaf260256f67731232e18f3ed913ba.json @@ -1,5 +1,5 @@ { - "took": 43, + "took": 32, "timed_out": false, "_shards": { "total": 2, @@ -17,7 +17,7 @@ { "_index": "resources-2024-10-22", "_id": "cb1808514", - "_score": 540.224, + "_score": 539.6899, "_source": { "extent": [ "1 score (3 unnumbered pages, 12 pages) ;" @@ -65,6 +65,9 @@ "createdYear": [ 1984 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -186,7 +189,7 @@ ] }, "sort": [ - 540.224, + 539.6899, "cb1808514" ], "inner_hits": { @@ -207,72 +210,72 @@ }, "_score": null, "_source": { - "uri": "ci2278358", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:MR61509485" ], + "physicalLocation": [ + "61 B458 M9" + ], + "shelfMark_sort": "a61 B458 M000009", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "ci2278358", "shelfMark": [ "61 B458 M9" ], "identifierV2": [ { - "value": "61 B458 M9", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "61 B458 M9" }, { "type": "bf:Barcode", "value": "MR61509485" } ], - "physicalLocation": [ - "61 B458 M9" - ], - "recapCustomerCode": [ - "MR" - ], - "identifier": [ - "urn:barcode:MR61509485" - ], "idBarcode": [ "MR61509485" ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "shelfMark_sort": "a61 B458 M000009" + "recapCustomerCode": [ + "MR" + ] }, "sort": [ null @@ -286,7 +289,7 @@ { "_index": "resources-2024-10-22", "_id": "b10981311", - "_score": 517.82947, + "_score": 518.5518, "_source": { "extent": [ "1 miniature score (12 p.) ;" @@ -341,6 +344,9 @@ "dateEndString": [ "1980" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "A musical toast" ], @@ -463,7 +469,7 @@ ] }, "sort": [ - 517.82947, + 518.5518, "b10981311" ], "inner_hits": { @@ -484,88 +490,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:57", - "label": "printed music limited circ MaRLI" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JNF 87-27", + "urn:barcode:33433047232982" + ], + "physicalLocation": [ + "JNF 87-27" + ], + "shelfMark_sort": "aJNF 87-000027", "catalogItemType_packed": [ "catalogItemType:57||printed music limited circ MaRLI" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433047232982" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JNF 87-27", - "urn:barcode:33433047232982" + "shelfMark": [ + "JNF 87-27" ], + "uri": "i13956002", "identifierV2": [ { - "value": "JNF 87-27", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JNF 87-27" }, { - "value": "33433047232982", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433047232982" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433047232982" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JNF 87-27" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JNF 87-27" + "catalogItemType": [ + { + "id": "catalogItemType:57", + "label": "printed music limited circ MaRLI" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJNF 87-000027", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13956002" + ] }, "sort": [ null @@ -579,7 +585,7 @@ { "_index": "resources-2024-10-22", "_id": "b11294632", - "_score": 514.90173, + "_score": 516.61816, "_source": { "extent": [ "xxi, 273 p. ;" @@ -615,6 +621,9 @@ "dateEndString": [ "1940" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Angels on toast" ], @@ -748,9 +757,12 @@ ] }, "sort": [ - 514.90173, + 516.61816, "b11294632" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -769,79 +781,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:JFD 90-6303", + "urn:barcode:33433040606604" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "JFD 90-6303" ], + "shelfMark_sort": "aJFD 90-006303", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433040606604" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFD 90-6303", - "urn:barcode:33433040606604" + "shelfMark": [ + "JFD 90-6303" ], + "uri": "i13160245", "identifierV2": [ { - "value": "JFD 90-6303", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFD 90-6303" }, { - "value": "33433040606604", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433040606604" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "JFD 90-6303" + "idBarcode": [ + "33433040606604" ], "requestable": [ true ], - "shelfMark": [ - "JFD 90-6303" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "aJFD 90-006303", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13160245" + ] }, "sort": [ null @@ -855,7 +867,7 @@ { "_index": "resources-2024-10-22", "_id": "b13111567", - "_score": 464.5654, + "_score": 465.16248, "_source": { "extent": [ "v." @@ -884,6 +896,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Verse and toast. Series 1-" ], @@ -1002,7 +1017,7 @@ ] }, "sort": [ - 464.5654, + 465.16248, "b13111567" ], "inner_hits": { @@ -1023,91 +1038,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:32", - "label": "google project, book" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:NBI (Rowe, W. H. Verse and toast) ser. 2", + "urn:barcode:33433066644109" + ], + "physicalLocation": [ + "NBI (Rowe, W. H. Verse and toast)" + ], + "shelfMark_sort": "aNBI (Rowe, W. H. Verse and toast) ser. 000002", "catalogItemType_packed": [ "catalogItemType:32||google project, book" ], - "enumerationChronology": [ - "ser. 2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "formatLiteral": [ - "Text" + "status_packed": [ + "status:a||Available" ], - "holdingLocation": [ + "type": [ + "bf:Item" + ], + "shelfMark": [ + "NBI (Rowe, W. H. Verse and toast) ser. 2" + ], + "uri": "i16815166", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "NBI (Rowe, W. H. Verse and toast) ser. 2" + }, + { + "type": "bf:Barcode", + "value": "33433066644109" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "ser. 2" + ], "idBarcode": [ "33433066644109" ], - "identifier": [ - "urn:shelfmark:NBI (Rowe, W. H. Verse and toast) ser. 2", - "urn:barcode:33433066644109" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "NBI (Rowe, W. H. Verse and toast) ser. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433066644109", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:32", + "label": "google project, book" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "NBI (Rowe, W. H. Verse and toast)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "NBI (Rowe, W. H. Verse and toast) ser. 2" - ], - "shelfMark_sort": "aNBI (Rowe, W. H. Verse and toast) ser. 000002", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16815166" + ] }, "sort": [ null @@ -1122,91 +1137,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:32", - "label": "google project, book" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1", + "urn:barcode:33433066644091" + ], + "physicalLocation": [ + "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2" + ], + "shelfMark_sort": "aNBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 000001", "catalogItemType_packed": [ "catalogItemType:32||google project, book" ], - "enumerationChronology": [ - "ser. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "formatLiteral": [ - "Text" + "status_packed": [ + "status:a||Available" ], - "holdingLocation": [ + "type": [ + "bf:Item" + ], + "shelfMark": [ + "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1" + ], + "uri": "i16257903", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1" + }, + { + "type": "bf:Barcode", + "value": "33433066644091" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "ser. 1" + ], "idBarcode": [ "33433066644091" ], - "identifier": [ - "urn:shelfmark:NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1", - "urn:barcode:33433066644091" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433066644091", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:32", + "label": "google project, book" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1" - ], - "shelfMark_sort": "aNBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 000001", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16257903" + ] }, "sort": [ null @@ -1220,7 +1235,7 @@ { "_index": "resources-2024-10-22", "_id": "b10861042", - "_score": 390.77145, + "_score": 391.19202, "_source": { "extent": [ "24 p. : ill., ports. ;" @@ -1266,24 +1281,24 @@ "numItemsTotal": [ 2 ], - "createdYear": [ - 1984 - ], "buildingLocationIds": [ "ma" ], + "createdYear": [ + 1984 + ], "title": [ "A toast to freedom New York celebrates Evacuation Day." ], "type": [ "nypl:Item" ], - "shelfMark": [ - "*ZI-437 no. 20" - ], "numItemVolumesParsed": [ 2 ], + "shelfMark": [ + "*ZI-437 no. 20" + ], "createdString": [ "1984" ], @@ -1318,8 +1333,8 @@ "value": "(WaOLN)nyp0868084" } ], - "popularity": 2, - "updatedAt": 1729525029643, + "popularity": 3, + "updatedAt": 1729950071074, "publicationStatement": [ "New York : Fraunces Tavern Museum, 1984." ], @@ -1375,7 +1390,7 @@ ] }, "sort": [ - 390.77145, + 391.19202, "b10861042" ], "matched_queries": [ @@ -1465,7 +1480,7 @@ "*ZI-437" ], "requestable": [ - false + true ], "shelfMark": [ "*ZI-437 r. 2" @@ -1473,23 +1488,23 @@ "shelfMark_sort": "a*ZI-437 r. 000002", "status": [ { - "id": "status:oh", - "label": "On Holdshelf" + "id": "status:a", + "label": "Available" } ], "status_packed": [ - "status:oh||On Holdshelf" + "status:a||Available" ], "type": [ "bf:Item" ], + "uri": "i31168756", "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i31168756" + ] }, "sort": [ " 2-" @@ -1588,13 +1603,13 @@ "type": [ "bf:Item" ], + "uri": "i24076491", "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i24076491" + ] }, "sort": [ " 1-" @@ -1608,7 +1623,7 @@ { "_index": "resources-2024-10-22", "_id": "b18106748", - "_score": 390.49448, + "_score": 390.6275, "_source": { "extent": [ "24 p. : ill. ;" @@ -1663,6 +1678,9 @@ "createdYear": [ 1984 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "A Toast to freedom : New York celebrates Evacuation Day." ], @@ -1769,9 +1787,12 @@ ] }, "sort": [ - 390.49448, + 390.6275, "b18106748" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -1790,14 +1811,57 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:shelfmark:NYGB N.Y. L M314.43 F73", + "urn:barcode:33433086370503" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "NYGB N.Y. L M314.43 F73" + ], + "shelfMark_sort": "aNYGB N.Y. L M314.43 F000073", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], "accessMessage": [ { "id": "accessMessage:1", "label": "Use in library" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "NYGB N.Y. L M314.43 F73" + ], + "uri": "i24199542", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "NYGB N.Y. L M314.43 F73" + }, + { + "type": "bf:Barcode", + "value": "33433086370503" + } + ], + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" + ], + "idBarcode": [ + "33433086370503" + ], + "requestable": [ + true ], "catalogItemType": [ { @@ -1805,9 +1869,6 @@ "label": "book non-circ" } ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], "formatLiteral": [ "Text" ], @@ -1817,52 +1878,12 @@ "label": "Schwarzman Building M2 - Milstein Division Room 121" } ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" - ], - "idBarcode": [ - "33433086370503" - ], - "identifier": [ - "urn:shelfmark:NYGB N.Y. L M314.43 F73", - "urn:barcode:33433086370503" - ], - "identifierV2": [ - { - "value": "NYGB N.Y. L M314.43 F73", - "type": "bf:ShelfMark" - }, - { - "value": "33433086370503", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NYGB N.Y. L M314.43 F73" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NYGB N.Y. L M314.43 F73" - ], - "shelfMark_sort": "aNYGB N.Y. L M314.43 F000073", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i24199542" + ] }, "sort": [ null @@ -1876,7 +1897,7 @@ { "_index": "resources-2024-10-22", "_id": "cb1677200", - "_score": 279.39688, + "_score": 279.93497, "_source": { "extent": [ "193, vi pages ;" @@ -1910,6 +1931,9 @@ "createdYear": [ 1994 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -2037,7 +2061,7 @@ ] }, "sort": [ - 279.39688, + 279.93497, "cb1677200" ], "inner_hits": { @@ -2058,72 +2082,72 @@ }, "_score": null, "_source": { - "uri": "ci2131706", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:CU63297698" + ], + "physicalLocation": [ + "PN6347.P6 T63 1994" ], + "shelfMark_sort": "aPN6347.P6 T63 001994", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "ci2131706", "shelfMark": [ "PN6347.P6 T63 1994" ], "identifierV2": [ { - "value": "PN6347.P6 T63 1994", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PN6347.P6 T63 1994" }, { "type": "bf:Barcode", "value": "CU63297698" } ], - "physicalLocation": [ - "PN6347.P6 T63 1994" - ], - "recapCustomerCode": [ - "CU" - ], - "identifier": [ - "urn:barcode:CU63297698" - ], "idBarcode": [ "CU63297698" ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "shelfMark_sort": "aPN6347.P6 T63 001994" + "recapCustomerCode": [ + "CU" + ] }, "sort": [ null @@ -2137,7 +2161,7 @@ { "_index": "resources-2024-10-22", "_id": "hb990002994230203941", - "_score": 223.96268, + "_score": 223.73575, "_source": { "extent": [ "xi, 105 p., [1] folded leaf of plates : ill. ;" @@ -2190,6 +2214,9 @@ "createdYear": [ 1985 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -2340,7 +2367,7 @@ ] }, "sort": [ - 223.96268, + 223.73575, "hb990002994230203941" ], "inner_hits": { @@ -2361,78 +2388,78 @@ }, "_score": null, "_source": { - "uri": "hi231754796330003941", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0004", "label": "Harvard Library" } ], - "owner_packed": [ - "orgs:0004||Harvard Library" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:32044042656827" + ], + "physicalLocation": [ + "N.A.ARC. W 565 t" ], + "shelfMark_sort": "aN.A.ARC. W 565 t", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "hi231754796330003941", "shelfMark": [ "N.A.ARC. W 565 t" ], "identifierV2": [ { - "value": "N.A.ARC. W 565 t", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "N.A.ARC. W 565 t" }, { "type": "bf:Barcode", "value": "32044042656827" } ], - "physicalLocation": [ - "N.A.ARC. W 565 t" - ], - "recapCustomerCode": [ - "TZ" - ], - "identifier": [ - "urn:barcode:32044042656827" - ], "idBarcode": [ "32044042656827" ], + "owner_packed": [ + "orgs:0004||Harvard Library" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "type": [ - "bf:Item" + "recapCustomerCode": [ + "TZ" ], "formatLiteral": [ "Text" - ], - "shelfMark_sort": "aN.A.ARC. W 565 t" + ] }, "sort": [ null @@ -2446,7 +2473,7 @@ { "_index": "resources-2024-10-22", "_id": "b17948355", - "_score": 17.726557, + "_score": 18.348957, "_source": { "extent": [ "1 videodisc (130 min.) : sound, color ;" @@ -2539,15 +2566,18 @@ "createdYear": [ 2003 ], + "buildingLocationIds": [ + "pa" + ], "dateEndString": [ "1975" ], - "title": [ - "In celebration" - ], "type": [ "nypl:Item" ], + "title": [ + "In celebration" + ], "shelfMark": [ "NCOX 2003" ], @@ -2560,12 +2590,12 @@ "idLccn": [ "738329029029" ], - "numElectronicResources": [ - 1 - ], "seriesStatement": [ "American film theatre collection ; 2" ], + "numElectronicResources": [ + 1 + ], "contributorLiteral": [ "Landau, Ely", "Storey, David, 1933-2017.", @@ -2584,9 +2614,6 @@ "dateStartYear": [ 2003 ], - "idOclc": [ - "52778462" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -2617,6 +2644,9 @@ "value": "(OCoLC)178797157 (OCoLC)671677241 (OCoLC)964418821 (OCoLC)980803395 (OCoLC)1006448934 (OCoLC)1020435485 (OCoLC)1037244606 (OCoLC)1043512195 (OCoLC)1050157347 (OCoLC)1059484844 (OCoLC)1066125835 (OCoLC)1104896887" } ], + "idOclc": [ + "52778462" + ], "uniformTitle": [ "American film theatre. Collection 2." ], @@ -2627,12 +2657,6 @@ "publicationStatement": [ "New York, NY : Kino on Video, [2003]" ], - "genreForm": [ - "Feature films.", - "Biographical films.", - "Drama.", - "Film adaptations." - ], "identifier": [ "urn:shelfmark:NCOX 2003", "urn:bnum:17948355", @@ -2642,6 +2666,12 @@ "urn:identifier:(OCoLC)52778462", "urn:identifier:(OCoLC)178797157 (OCoLC)671677241 (OCoLC)964418821 (OCoLC)980803395 (OCoLC)1006448934 (OCoLC)1020435485 (OCoLC)1037244606 (OCoLC)1043512195 (OCoLC)1050157347 (OCoLC)1059484844 (OCoLC)1066125835 (OCoLC)1104896887" ], + "genreForm": [ + "Feature films.", + "Biographical films.", + "Drama.", + "Film adaptations." + ], "numCheckinCardItems": [ 0 ], @@ -2698,15 +2728,15 @@ "placeOfPublication": [ "New York, NY" ], + "titleAlt": [ + "David Storey's In celebration" + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "David Storey's In celebration" - ], "tableOfContents": [ "\"Hello Dad!\" \"Hello Mom!\" \"How does it feel to be home?\" Human hygiene \"Not my cup of tea\" Memories The truth A toast \"Family analysis\" \"What's going on?\" Andrew's vengeance \"We all have our problems\" Choices." ], @@ -2715,9 +2745,12 @@ ] }, "sort": [ - 17.726557, + 18.348957, "b17948355" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -2736,78 +2769,78 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], "accessMessage_packed": [ "accessMessage:4||Restricted use" ], - "catalogItemType": [ - { - "id": "catalogItemType:24", - "label": "archival video recording" - } + "identifier": [ + "urn:shelfmark:NCOX 2003", + "urn:barcode:33433063602100" + ], + "physicalLocation": [ + "NCOX 2003" ], + "shelfMark_sort": "aNCOX 002003", "catalogItemType_packed": [ "catalogItemType:24||archival video recording" ], - "formatLiteral": [ - "Moving image" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:paf28", - "label": "Performing Arts Research Collections - TOFT" + "id": "accessMessage:4", + "label": "Restricted use" } ], - "holdingLocation_packed": [ - "loc:paf28||Performing Arts Research Collections - TOFT" + "status_packed": [ + "status:o||Use in library" ], - "idBarcode": [ - "33433063602100" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=NCOX+2003&Date=2003&Form=30&Genre=archival+video+recording&ItemInfo1=Restricted+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db17948355&ItemISxN=i315887023&ItemNumber=33433063602100&ItemPlace=New+York%2C+NY&ItemPublisher=Kino+on+Video%2C+%5B2003%5D&Location=Performing+Arts+Theatre+on+Film+and+Tape+Archive&ReferenceNumber=b179483559&Site=LPATF&Title=In+celebration&Transaction.CustomFields.Custom651=England+Yorkshire.+fast+%28OCoLC%29fst01213252" ], - "identifier": [ - "urn:shelfmark:NCOX 2003", - "urn:barcode:33433063602100" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "NCOX 2003" ], + "uri": "i31588702", "identifierV2": [ { - "value": "NCOX 2003", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "NCOX 2003" }, { - "value": "33433063602100", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433063602100" } ], - "physicalLocation": [ - "NCOX 2003" + "holdingLocation_packed": [ + "loc:paf28||Performing Arts Research Collections - TOFT" + ], + "idBarcode": [ + "33433063602100" ], "requestable": [ false ], - "shelfMark": [ - "NCOX 2003" + "catalogItemType": [ + { + "id": "catalogItemType:24", + "label": "archival video recording" + } + ], + "formatLiteral": [ + "Moving image" + ], + "holdingLocation": [ + { + "id": "loc:paf28", + "label": "Performing Arts Research Collections - TOFT" + } ], - "shelfMark_sort": "aNCOX 002003", "status": [ { "id": "status:o", "label": "Use in library" } - ], - "status_packed": [ - "status:o||Use in library" - ], - "type": [ - "bf:Item" - ], - "uri": "i31588702", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=NCOX+2003&Date=2003&Form=30&Genre=archival+video+recording&ItemInfo1=Restricted+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db17948355&ItemISxN=i315887023&ItemNumber=33433063602100&ItemPlace=New+York%2C+NY&ItemPublisher=Kino+on+Video%2C+%5B2003%5D&Location=Performing+Arts+Theatre+on+Film+and+Tape+Archive&ReferenceNumber=b179483559&Site=LPATF&Title=In+celebration&Transaction.CustomFields.Custom651=England+Yorkshire.+fast+%28OCoLC%29fst01213252" ] }, "sort": [ @@ -2821,26 +2854,26 @@ }, { "_index": "resources-2024-10-22", - "_id": "b21889069", - "_score": 15.894208, + "_id": "b15557108", + "_score": 16.489046, "_source": { "extent": [ - "1 online resource (1 sound file)." + "1 sound disc (64:00) : digital ;" ], "note": [ { "noteType": "Note", - "label": "Libretto by Henri Meilhac and Ludovic Halévy, based on the short story by Prosper Mérimée.", + "label": "Program notes by Peter Dempsey inserted in container.", "type": "bf:Note" }, { "noteType": "Note", - "label": "Previously released material.", + "label": "All selections previously released.", "type": "bf:Note" }, { - "noteType": "Event", - "label": "Recorded 1963.", + "noteType": "System Details", + "label": "Compact disc.", "type": "bf:Note" } ], @@ -2848,420 +2881,97 @@ "sierra-nypl" ], "subjectLiteral_exploded": [ - "Operas", - "Operas -- Excerpts" + "Musicals", + "Musicals -- Excerpts", + "Popular music", + "Popular music -- 1931-1940" ], "numItemDatesParsed": [ 0 ], "publisherLiteral": [ - "RCA Victor Gold Seal", - "Distributed by BMG Music" + "Naxos Nostalgia" ], "language": [ { - "id": "lang:fre", - "label": "French" + "id": "lang:eng", + "label": "English" } ], "numItemsTotal": [ - 0 + 2 ], "createdYear": [ - 1990 + 2001 ], "dateEndString": [ - "1963" + "1932" + ], + "buildingLocationIds": [ + "pa" ], "title": [ - "Carmen : highlights" + "Mad dogs and Englishmen the complete recordings, vol. 2 : 1932-1936" ], "type": [ "nypl:Item" ], + "shelfMark": [ + "*LDC 28494 (F)" + ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1990" + "2001" ], "creatorLiteral": [ - "Bizet, Georges, 1838-1875." + "Coward, Noël, 1899-1973." ], "idLccn": [ - "USBC16300177", - "USBC16300178", - "USBC16300179", - "USBC16300180", - "USBC16300181", - "USBC16300182", - "USBC16300183", - "USBC16300184", - "USBC16300185", - "USBC16300186", - "USBC16300187", - "USBC16300188", - "USBC16300189", - "USBC16300190", - "USBC16300191", - "USBC16300192", - "USBC16300193", - "USBC16300194", - "USBC16300195" + "636943255926" ], "numElectronicResources": [ - 1 - ], - "seriesStatement": [ - "Opera series" - ], - "contributorLiteral": [ - "Meilhac, Henri, 1831-1897.", - "Halévy, Ludovic, 1834-1908.", - "Price, Leontyne", - "Freni, Mirella, 1935-2020.", - "Corelli, Franco", - "Merrill, Robert, 1917-2004.", - "Karajan, Herbert von", - "Mérimée, Prosper, 1803-1870.", - "Konzertvereinigung Wiener Staatsopernchor", - "Wiener Philharmoniker" - ], - "addedAuthorTitle": [ - "Carmen." + 0 ], "dateStartYear": [ - 1990 + 2001 ], "idOclc": [ - "906156941" + "48993177" ], "identifierV2": [ { - "type": "nypl:Bnumber", - "value": "21889069" - }, - { - "type": "nypl:Oclc", - "value": "906156941" - }, - { - "type": "bf:Lccn", - "value": "USBC16300177" - }, - { - "type": "bf:Lccn", - "value": "USBC16300178" - }, - { - "type": "bf:Lccn", - "value": "USBC16300179" - }, - { - "type": "bf:Lccn", - "value": "USBC16300180" - }, - { - "type": "bf:Lccn", - "value": "USBC16300181" - }, - { - "type": "bf:Lccn", - "value": "USBC16300182" - }, - { - "type": "bf:Lccn", - "value": "USBC16300183" - }, - { - "type": "bf:Lccn", - "value": "USBC16300184" - }, - { - "type": "bf:Lccn", - "value": "USBC16300185" - }, - { - "type": "bf:Lccn", - "value": "USBC16300186" - }, - { - "type": "bf:Lccn", - "value": "USBC16300187" - }, - { - "type": "bf:Lccn", - "value": "USBC16300188" - }, - { - "type": "bf:Lccn", - "value": "USBC16300189" - }, - { - "type": "bf:Lccn", - "value": "USBC16300190" - }, - { - "type": "bf:Lccn", - "value": "USBC16300191" - }, - { - "type": "bf:Lccn", - "value": "USBC16300192" + "type": "bf:ShelfMark", + "value": "*LDC 28494 (F)" }, { - "type": "bf:Lccn", - "value": "USBC16300193" + "type": "nypl:Bnumber", + "value": "15557108" }, { - "type": "bf:Lccn", - "value": "USBC16300194" + "type": "nypl:Oclc", + "value": "48993177" }, { "type": "bf:Lccn", - "value": "USBC16300195" + "value": "636943255926" }, { "type": "bf:Identifier", - "value": "090266019021 RCA Records" + "value": "8.120559 Naxos Nostalgia" }, { "type": "bf:Identifier", - "value": "(OCoLC)906156941" + "value": "(WaOLN)M170000377" } ], - "uniformTitle": [ - "Carmen. Selections", - "Opera series." - ], - "popularity": 0, "dateEndYear": [ - 1963 + 1932 ], - "updatedAt": 1729183383241, + "updatedAt": 1712866798575, "publicationStatement": [ - "New York, NY : RCA Victor Gold Seal, [1990]", - "Distributed by BMG Music", - "℗1990" - ], - "genreForm": [ - "Streaming audio." - ], - "identifier": [ - "urn:bnum:21889069", - "urn:oclc:906156941", - "urn:lccn:USBC16300177", - "urn:lccn:USBC16300178", - "urn:lccn:USBC16300179", - "urn:lccn:USBC16300180", - "urn:lccn:USBC16300181", - "urn:lccn:USBC16300182", - "urn:lccn:USBC16300183", - "urn:lccn:USBC16300184", - "urn:lccn:USBC16300185", - "urn:lccn:USBC16300186", - "urn:lccn:USBC16300187", - "urn:lccn:USBC16300188", - "urn:lccn:USBC16300189", - "urn:lccn:USBC16300190", - "urn:lccn:USBC16300191", - "urn:lccn:USBC16300192", - "urn:lccn:USBC16300193", - "urn:lccn:USBC16300194", - "urn:lccn:USBC16300195", - "urn:identifier:090266019021 RCA Records", - "urn:identifier:(OCoLC)906156941" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1990" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Operas -- Excerpts." - ], - "titleDisplay": [ - "Carmen : highlights / Bizet." - ], - "uri": "b21889069", - "lccClassification": [ - "M1505.B58 C37 1990" - ], - "electronicResources": [ - { - "label": "Access Naxos Music Library", - "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=090266019021" - } - ], - "placeOfPublication": [ - "New York, NY" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "titleAlt": [ - "Carmen." - ], - "tableOfContents": [ - "Overture -- Dans l'air, nous suivons des yeux (Chorus of cigarette girls) -- La voilà, la voilà -- L'amour est un oiseau rebelle (Habanera) -- Près des remparts de Séville -- Act II Entr'acte -- Tringles des sistres tintaient (Gypsy song) -- Messieurs, pastia me dit -- Vivat! vvivat le Toréreo! -- Votre toast (Toreador song) -- Nous avons en tête une affaire (Quintet) -- Lalalala -- Attends un pueu, Carmen -- Fleur que tu m'avais jetée (Flowere song) -- Mêlons! Coupons! (Card scene) -- Je dis que rien ne m'épouvante (Micaela's air) -- Act IV Entr'acte -- C'est toi -- C'est moi! -- Où va-tu? -- Laisse-moi!" - ] - }, - "sort": [ - 15.894208, - "b21889069" - ], - "inner_hits": { - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-10-22", - "_id": "b15557108", - "_score": 15.848526, - "_source": { - "extent": [ - "1 sound disc (64:00) : digital ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Program notes by Peter Dempsey inserted in container.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "All selections previously released.", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "Compact disc.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Musicals", - "Musicals -- Excerpts", - "Popular music", - "Popular music -- 1931-1940" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Naxos Nostalgia" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 2 - ], - "createdYear": [ - 2001 - ], - "dateEndString": [ - "1932" - ], - "title": [ - "Mad dogs and Englishmen the complete recordings, vol. 2 : 1932-1936" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*LDC 28494 (F)" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2001" - ], - "creatorLiteral": [ - "Coward, Noël, 1899-1973." - ], - "idLccn": [ - "636943255926" - ], - "numElectronicResources": [ - 0 - ], - "dateStartYear": [ - 2001 - ], - "idOclc": [ - "48993177" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*LDC 28494 (F)" - }, - { - "type": "nypl:Bnumber", - "value": "15557108" - }, - { - "type": "nypl:Oclc", - "value": "48993177" - }, - { - "type": "bf:Lccn", - "value": "636943255926" - }, - { - "type": "bf:Identifier", - "value": "8.120559 Naxos Nostalgia" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)M170000377" - } - ], - "dateEndYear": [ - 1932 - ], - "updatedAt": 1712866798575, - "publicationStatement": [ - "[S.l.] : Naxos Nostalgia, p2001." + "[S.l.] : Naxos Nostalgia, p2001." ], "identifier": [ "urn:shelfmark:*LDC 28494 (F)", @@ -3324,9 +3034,12 @@ ] }, "sort": [ - 15.848526, + 16.489046, "b15557108" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -3345,76 +3058,76 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "identifier": [ + "urn:shelfmark:*LDC 28494 (F) [Notes]", + "urn:barcode:33433015996212" ], + "physicalLocation": [ + "*LDC 28494 (F) [Notes]" + ], + "shelfMark_sort": "a*LDC 28494 (F) [Notes]", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Audio" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:pah32", - "label": "Performing Arts Research Collections - Recorded Sound" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:pah32||Performing Arts Research Collections - Recorded Sound" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015996212" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*LDC 28494 (F) [Notes]", - "urn:barcode:33433015996212" + "shelfMark": [ + "*LDC 28494 (F) [Notes]" ], + "uri": "i12455194", "identifierV2": [ { - "value": "*LDC 28494 (F) [Notes]", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*LDC 28494 (F) [Notes]" }, { - "value": "33433015996212", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015996212" } ], - "physicalLocation": [ - "*LDC 28494 (F) [Notes]" + "holdingLocation_packed": [ + "loc:pah32||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433015996212" ], "requestable": [ false ], - "shelfMark": [ - "*LDC 28494 (F) [Notes]" - ], - "shelfMark_sort": "a*LDC 28494 (F) [Notes]", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:2", + "label": "book non-circ" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Audio" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:pah32", + "label": "Performing Arts Research Collections - Recorded Sound" + } ], - "uri": "i12455194" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -3429,31 +3142,47 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:shelfmark:*LDC 28494 (F) [CD]", + "urn:barcode:33433015996220" + ], + "physicalLocation": [ + "*LDC 28494 (F) [CD]" + ], + "shelfMark_sort": "a*LDC 28494 (F) [CD]", + "catalogItemType_packed": [ + "catalogItemType:12||musical sound recording" + ], "accessMessage": [ { "id": "accessMessage:1", "label": "Use in library" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status_packed": [ + "status:a||Available" ], - "catalogItemType": [ - { - "id": "catalogItemType:12", - "label": "musical sound recording" - } + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Coward%2C+No%C3%ABl%2C+1899-1973.&CallNumber=*LDC+28494+%28F%29+%5BCD%5D&Date=2001&Form=30&Genre=musical+sound+recording&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db15557108&ItemISxN=i124551932&ItemNumber=33433015996220&ItemPlace=%5BS.l.%5D&ItemPublisher=Naxos+Nostalgia%2C+p2001.&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b155571084&Site=LPAMRAMI&Title=Mad+dogs+and+Englishmen+the+complete+recordings%2C+vol.+2+%3A+1932-1936" ], - "catalogItemType_packed": [ - "catalogItemType:12||musical sound recording" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Audio" + "shelfMark": [ + "*LDC 28494 (F) [CD]" ], - "holdingLocation": [ + "uri": "i12455193", + "identifierV2": [ { - "id": "loc:pah22", - "label": "Performing Arts Research Collections - Recorded Sound" + "type": "bf:ShelfMark", + "value": "*LDC 28494 (F) [CD]" + }, + { + "type": "bf:Barcode", + "value": "33433015996220" } ], "holdingLocation_packed": [ @@ -3462,45 +3191,29 @@ "idBarcode": [ "33433015996220" ], - "identifier": [ - "urn:shelfmark:*LDC 28494 (F) [CD]", - "urn:barcode:33433015996220" + "requestable": [ + false ], - "identifierV2": [ - { - "value": "*LDC 28494 (F) [CD]", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433015996220", - "type": "bf:Barcode" + "id": "catalogItemType:12", + "label": "musical sound recording" } ], - "physicalLocation": [ - "*LDC 28494 (F) [CD]" - ], - "requestable": [ - false + "formatLiteral": [ + "Audio" ], - "shelfMark": [ - "*LDC 28494 (F) [CD]" + "holdingLocation": [ + { + "id": "loc:pah22", + "label": "Performing Arts Research Collections - Recorded Sound" + } ], - "shelfMark_sort": "a*LDC 28494 (F) [CD]", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12455193", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Coward%2C+No%C3%ABl%2C+1899-1973.&CallNumber=*LDC+28494+%28F%29+%5BCD%5D&Date=2001&Form=30&Genre=musical+sound+recording&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db15557108&ItemISxN=i124551932&ItemNumber=33433015996220&ItemPlace=%5BS.l.%5D&ItemPublisher=Naxos+Nostalgia%2C+p2001.&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b155571084&Site=LPAMRAMI&Title=Mad+dogs+and+Englishmen+the+complete+recordings%2C+vol.+2+%3A+1932-1936" ] }, "sort": [ @@ -3512,14 +3225,344 @@ } } }, + { + "_index": "resources-2024-10-22", + "_id": "b21889069", + "_score": 15.464486, + "_source": { + "extent": [ + "1 online resource (1 sound file)." + ], + "note": [ + { + "noteType": "Note", + "label": "Libretto by Henri Meilhac and Ludovic Halévy, based on the short story by Prosper Mérimée.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Previously released material.", + "type": "bf:Note" + }, + { + "noteType": "Event", + "label": "Recorded 1963.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Operas", + "Operas -- Excerpts" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "RCA Victor Gold Seal", + "Distributed by BMG Music" + ], + "language": [ + { + "id": "lang:fre", + "label": "French" + } + ], + "numItemsTotal": [ + 0 + ], + "createdYear": [ + 1990 + ], + "buildingLocationIds": [], + "dateEndString": [ + "1963" + ], + "type": [ + "nypl:Item" + ], + "title": [ + "Carmen : highlights" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1990" + ], + "creatorLiteral": [ + "Bizet, Georges, 1838-1875." + ], + "idLccn": [ + "USBC16300177", + "USBC16300178", + "USBC16300179", + "USBC16300180", + "USBC16300181", + "USBC16300182", + "USBC16300183", + "USBC16300184", + "USBC16300185", + "USBC16300186", + "USBC16300187", + "USBC16300188", + "USBC16300189", + "USBC16300190", + "USBC16300191", + "USBC16300192", + "USBC16300193", + "USBC16300194", + "USBC16300195" + ], + "seriesStatement": [ + "Opera series" + ], + "numElectronicResources": [ + 1 + ], + "contributorLiteral": [ + "Meilhac, Henri, 1831-1897.", + "Halévy, Ludovic, 1834-1908.", + "Price, Leontyne", + "Freni, Mirella, 1935-2020.", + "Corelli, Franco", + "Merrill, Robert, 1917-2004.", + "Karajan, Herbert von", + "Mérimée, Prosper, 1803-1870.", + "Konzertvereinigung Wiener Staatsopernchor", + "Wiener Philharmoniker" + ], + "addedAuthorTitle": [ + "Carmen." + ], + "dateStartYear": [ + 1990 + ], + "identifierV2": [ + { + "type": "nypl:Bnumber", + "value": "21889069" + }, + { + "type": "nypl:Oclc", + "value": "906156941" + }, + { + "type": "bf:Lccn", + "value": "USBC16300177" + }, + { + "type": "bf:Lccn", + "value": "USBC16300178" + }, + { + "type": "bf:Lccn", + "value": "USBC16300179" + }, + { + "type": "bf:Lccn", + "value": "USBC16300180" + }, + { + "type": "bf:Lccn", + "value": "USBC16300181" + }, + { + "type": "bf:Lccn", + "value": "USBC16300182" + }, + { + "type": "bf:Lccn", + "value": "USBC16300183" + }, + { + "type": "bf:Lccn", + "value": "USBC16300184" + }, + { + "type": "bf:Lccn", + "value": "USBC16300185" + }, + { + "type": "bf:Lccn", + "value": "USBC16300186" + }, + { + "type": "bf:Lccn", + "value": "USBC16300187" + }, + { + "type": "bf:Lccn", + "value": "USBC16300188" + }, + { + "type": "bf:Lccn", + "value": "USBC16300189" + }, + { + "type": "bf:Lccn", + "value": "USBC16300190" + }, + { + "type": "bf:Lccn", + "value": "USBC16300191" + }, + { + "type": "bf:Lccn", + "value": "USBC16300192" + }, + { + "type": "bf:Lccn", + "value": "USBC16300193" + }, + { + "type": "bf:Lccn", + "value": "USBC16300194" + }, + { + "type": "bf:Lccn", + "value": "USBC16300195" + }, + { + "type": "bf:Identifier", + "value": "090266019021 RCA Records" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)906156941" + } + ], + "idOclc": [ + "906156941" + ], + "uniformTitle": [ + "Carmen. Selections", + "Opera series." + ], + "popularity": 0, + "dateEndYear": [ + 1963 + ], + "updatedAt": 1729183383241, + "publicationStatement": [ + "New York, NY : RCA Victor Gold Seal, [1990]", + "Distributed by BMG Music", + "℗1990" + ], + "identifier": [ + "urn:bnum:21889069", + "urn:oclc:906156941", + "urn:lccn:USBC16300177", + "urn:lccn:USBC16300178", + "urn:lccn:USBC16300179", + "urn:lccn:USBC16300180", + "urn:lccn:USBC16300181", + "urn:lccn:USBC16300182", + "urn:lccn:USBC16300183", + "urn:lccn:USBC16300184", + "urn:lccn:USBC16300185", + "urn:lccn:USBC16300186", + "urn:lccn:USBC16300187", + "urn:lccn:USBC16300188", + "urn:lccn:USBC16300189", + "urn:lccn:USBC16300190", + "urn:lccn:USBC16300191", + "urn:lccn:USBC16300192", + "urn:lccn:USBC16300193", + "urn:lccn:USBC16300194", + "urn:lccn:USBC16300195", + "urn:identifier:090266019021 RCA Records", + "urn:identifier:(OCoLC)906156941" + ], + "genreForm": [ + "Streaming audio." + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:aud", + "label": "Audio" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1990" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Operas -- Excerpts." + ], + "titleDisplay": [ + "Carmen : highlights / Bizet." + ], + "uri": "b21889069", + "lccClassification": [ + "M1505.B58 C37 1990" + ], + "electronicResources": [ + { + "label": "Access Naxos Music Library", + "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=090266019021" + } + ], + "placeOfPublication": [ + "New York, NY" + ], + "titleAlt": [ + "Carmen." + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Overture -- Dans l'air, nous suivons des yeux (Chorus of cigarette girls) -- La voilà, la voilà -- L'amour est un oiseau rebelle (Habanera) -- Près des remparts de Séville -- Act II Entr'acte -- Tringles des sistres tintaient (Gypsy song) -- Messieurs, pastia me dit -- Vivat! vvivat le Toréreo! -- Votre toast (Toreador song) -- Nous avons en tête une affaire (Quintet) -- Lalalala -- Attends un pueu, Carmen -- Fleur que tu m'avais jetée (Flowere song) -- Mêlons! Coupons! (Card scene) -- Je dis que rien ne m'épouvante (Micaela's air) -- Act IV Entr'acte -- C'est toi -- C'est moi! -- Où va-tu? -- Laisse-moi!" + ] + }, + "sort": [ + 15.464486, + "b21889069" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 0, + "relation": "eq" + }, + "max_score": null, + "hits": [] + } + } + } + }, { "_index": "resources-2024-10-22", "_id": "b16645835", - "_score": 15.429653, + "_score": 15.006733, "_source": { "extent": [ "1 sound cassette : analog, stereo." ], + "partOf": [ + "New York Shakespeare Festival recordings collection." + ], "note": [ { "noteType": "Note", @@ -3562,9 +3605,6 @@ "type": "bf:Note" } ], - "partOf": [ - "New York Shakespeare Festival recordings collection." - ], "nyplSource": [ "sierra-nypl" ], @@ -3590,15 +3630,16 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [], "dateEndString": [ "1989" ], - "title": [ - "J. Papp at Columbia University [speech and performance]" - ], "type": [ "nypl:Item" ], + "title": [ + "J. Papp at Columbia University [speech and performance]" + ], "shelfMark": [ "*LTC 10267" ], @@ -3632,9 +3673,6 @@ "dateStartYear": [ 1980 ], - "idOclc": [ - "166556166" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -3657,6 +3695,9 @@ "value": "(WaOLN)M310000283" } ], + "idOclc": [ + "166556166" + ], "popularity": 0, "dateEndYear": [ 1989 @@ -3705,22 +3746,22 @@ "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", + "titleAlt": [ + "Joseph Papp at Columbia", + "New York Shakespeare Festival recordings collection." + ], "issuance": [ { "id": "urn:biblevel:d", "label": "subunit" } ], - "titleAlt": [ - "Joseph Papp at Columbia", - "New York Shakespeare Festival recordings collection." - ], "tableOfContents": [ "What do you want with money? ; Hallelujah, I'm a bum again / Rodgers, Hart -- I found a million dollar baby (In a five-and ten cent store) / Warren, Dixon & Rose -- Brother, can you spare a dime? / Gorney, Harburg -- Hallelujah, I'm a bum again (reprise)" ] }, "sort": [ - 15.429653, + 15.006733, "b16645835" ], "inner_hits": { @@ -3739,7 +3780,7 @@ { "_index": "resources-2024-10-22", "_id": "b21977011", - "_score": 14.047096, + "_score": 13.704059, "_source": { "extent": [ "3 audio discs : digital, CD audio, stereo ;" @@ -3805,15 +3846,16 @@ "createdYear": [ 2018 ], + "buildingLocationIds": [], "dateEndString": [ "1966" ], - "title": [ - "Voices of Mississippi : artists and musicians documented by William Ferris." - ], "type": [ "nypl:Item" ], + "title": [ + "Voices of Mississippi : artists and musicians documented by William Ferris." + ], "shelfMark": [ "*LZZ 21-3522" ], @@ -3838,9 +3880,6 @@ "dateStartYear": [ 2018 ], - "idOclc": [ - "1035954626" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -3867,6 +3906,9 @@ "value": "(OCoLC)1035954626" } ], + "idOclc": [ + "1035954626" + ], "dateEndYear": [ 1966 ], @@ -3875,6 +3917,14 @@ "[Atlanta, Georgia] : Dust-to-Digital, 2018.", "℗2018" ], + "identifier": [ + "urn:shelfmark:*LZZ 21-3522", + "urn:bnum:21977011", + "urn:oclc:1035954626", + "urn:lccn:880226005320", + "urn:identifier:DTD-53 Dust-to-Digital", + "urn:identifier:(OCoLC)1035954626" + ], "genreForm": [ "Blues (Music)", "Documentary films.", @@ -3884,14 +3934,6 @@ "Short films.", "Field recordings." ], - "identifier": [ - "urn:shelfmark:*LZZ 21-3522", - "urn:bnum:21977011", - "urn:oclc:1035954626", - "urn:lccn:880226005320", - "urn:identifier:DTD-53 Dust-to-Digital", - "urn:identifier:(OCoLC)1035954626" - ], "numCheckinCardItems": [ 0 ], @@ -3937,15 +3979,15 @@ "placeOfPublication": [ "[Atlanta, Georgia]" ], + "titleAlt": [ + "Artists and musicians documented by William Ferris" + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Artists and musicians documented by William Ferris" - ], "tableOfContents": [ "[Disc 1]. Blues. 44 blues / (James \"Son Ford\" Thomas) -- I feel so good / (Lovey Williams) -- Stackalee and Billy Lyons / (Wallace \"Pine-Top\" Johnson & Maudie Shirley with Jasper Love) -- Lil' Liza Jane / (Scott Dunbar) -- Big fat mama / (Mississippi Fred McDowell) -- Bottle blowing / (Louis Dotson) -- Bring me my shotgun / (Sonny Boy Watson) -- Eyesight to the blind / (Sam Myers) -- Cairo / (James \"Son Ford\" Thomas) -- Jaybird / (Scott Dunbar) -- Cotton eyed Joe / (Tom Dumas) -- Coal black mare / (Lovey Williams) -- I dreamed I went to the U.N. / (Unidentified musician with Mississippi Fred McDowell) -- Darling if you must leave / (Walter Lee Hood) -- I got a letter from Hot Springs / (Mississippi Fred McDowell) -- Baby loves to boogie / (Wallace \"Pine-Top\" Johnson & Maudie Shirley with Jasper Love) -- Nothing / (Wash Heron & \"Big\" Jack Johnson) -- Dust my broom / (James \"Son Ford\" Thomas) -- The Memphis mail / (Scott Dunbar) -- Have you seen my baby / (Sonny Boy Watson) -- Instrumental guitar piece in A / (James Hughes) -- Train I ride / (Lovey Williams) -- Little red rooster / (Unidentified musician with Mississippi Fred McDowell) -- Darlin' why you treat me so? / (Leland musician) -- Water boy drowned in the Mobile Bay / (Inmates at Parchman Farm) -- I ain't gonna live it no more / (George Lee \"Sun Bud\" Spears) -- I cannot stay here baby / (James \"Son Ford\" Thomas with Sonny Boy Watson).", "[Disc 2]. Gospel. Lord, I'm in Your hand / (Mary & Amanda Gordon) -- You don't know like I know / (the Southland Hummingbirds) -- I'm standing in the safety zone / (Lovey Williams) -- Children, go where I send thee / (Reverend Smith and family) -- What could I do? / (Liddle Hines) -- So glad I got good religion / (Providence Missionary Baptist Church) -- I know the Lord will make a way : (Yes He will) / (Church of God in Christ) -- Home on high / (Walter Lee Hood and Parchman inmates) -- We're so glad to be here / (Fannie Bell Chapman) -- My mother's on that train / (Mary Alice & Alan McGowan) -- You don't knock, you just walk on in / (Reverend Ott & Family) -- They tell me of an uncloudy day / (Walter Lee Hood) -- Thanks for Bill Ferris ; Over yonder where the sun will never shine / (Rose Hill Church) -- I've been born again / (the Southland Hummingbirds) -- The Lord will make a way somehow / (Lovey Williams & family) -- How did you feel when you come out of the wilderness / (Providence Missionary Baptist Church) -- I don't have to worry about where I spend eternity / (Church of God in Christ) -- He's my rock, my sword, and shield / (Fannie Bell Chapman & family) -- Thank you Jesus / (Walter Lee Hood & Parchman inmates) -- Cross of Calvary / (Mary & Amanda Gordon) -- My grave's gonna be decorated on that day / (Church of God in Christ) -- There are days / (the Southland Hummingbirds) -- You can't hide, sinner / (Church of God in Christ) -- Lord, remember me / (Reverend Isaac Thomas & Rose Hill Church) -- Glory, glory : (Lay my burden down) / (Church of God in Christ).", @@ -3957,7 +3999,7 @@ ] }, "sort": [ - 14.047096, + 13.704059, "b21977011" ], "inner_hits": { @@ -3978,69 +4020,69 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], "accessMessage_packed": [ "accessMessage:u||Supervised use" ], - "catalogItemType": [ - { - "id": "catalogItemType:12", - "label": "musical sound recording" - } + "identifier": [ + "urn:shelfmark:*LZZ 21-3522", + "urn:barcode:33433125489173" + ], + "physicalLocation": [ + "*LZZ 21-3522" ], + "shelfMark_sort": "a*LZZ 21-003522", "catalogItemType_packed": [ "catalogItemType:12||musical sound recording" ], - "formatLiteral": [ - "Audio" + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } ], - "idBarcode": [ - "33433125489173" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:*LZZ 21-3522", - "urn:barcode:33433125489173" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*LZZ+21-3522&Date=2018&Form=30&Genre=musical+sound+recording&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db21977011&ItemISxN=i387460792&ItemNumber=33433125489173&ItemPlace=%5BAtlanta%2C+Georgia%5D&ItemPublisher=%E2%84%972018&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b219770116&Site=LPAMRAMI&Title=Voices+of+Mississippi+%3A+artists+and+musicians+documented+by+William+Ferris.&Transaction.CustomFields.Custom651=Mississippi.+fast+%28OCoLC%29fst01207034" + ], + "type": [ + "bf:Item" ], + "shelfMark": [ + "*LZZ 21-3522" + ], + "uri": "i38746079", "identifierV2": [ { - "value": "*LZZ 21-3522", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*LZZ 21-3522" }, { - "value": "33433125489173", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433125489173" } ], - "physicalLocation": [ - "*LZZ 21-3522" + "idBarcode": [ + "33433125489173" ], "requestable": [ false ], - "shelfMark": [ - "*LZZ 21-3522" + "catalogItemType": [ + { + "id": "catalogItemType:12", + "label": "musical sound recording" + } + ], + "formatLiteral": [ + "Audio" ], - "shelfMark_sort": "a*LZZ 21-003522", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i38746079", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*LZZ+21-3522&Date=2018&Form=30&Genre=musical+sound+recording&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db21977011&ItemISxN=i387460792&ItemNumber=33433125489173&ItemPlace=%5BAtlanta%2C+Georgia%5D&ItemPublisher=%E2%84%972018&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b219770116&Site=LPAMRAMI&Title=Voices+of+Mississippi+%3A+artists+and+musicians+documented+by+William+Ferris.&Transaction.CustomFields.Custom651=Mississippi.+fast+%28OCoLC%29fst01207034" ] }, "sort": [ @@ -4055,7 +4097,7 @@ { "_index": "resources-2024-10-22", "_id": "b15316446", - "_score": 13.776019, + "_score": 13.300983, "_source": { "extent": [ "v. ; 24 cm." @@ -4088,6 +4130,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Omnibus." ], @@ -4201,7 +4246,7 @@ ] }, "sort": [ - 13.776019, + 13.300983, "b15316446" ], "inner_hits": { @@ -4222,100 +4267,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:L-11 536 v. 5", + "urn:barcode:33433002566952" + ], + "physicalLocation": [ + "L-11 536" + ], + "shelfMark_sort": "aL-11 536 v. 000005", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 5" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 5-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "L-11 536 v. 5" ], - "holdingLocation": [ + "uri": "i12377117", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "L-11 536 v. 5" + }, + { + "type": "bf:Barcode", + "value": "33433002566952" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 5" + ], "idBarcode": [ "33433002566952" ], - "identifier": [ - "urn:shelfmark:L-11 536 v. 5", - "urn:barcode:33433002566952" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "L-11 536 v. 5", - "type": "bf:ShelfMark" - }, - { - "value": "33433002566952", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "L-11 536" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "L-11 536 v. 5" - ], - "shelfMark_sort": "aL-11 536 v. 000005", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 5, "lte": 5 } - ], - "uri": "i12377117" + ] }, "sort": [ " 5-" @@ -4329,7 +4374,7 @@ { "_index": "resources-2024-10-22", "_id": "b21890516", - "_score": 13.205509, + "_score": 12.791729, "_source": { "extent": [ "1 online resource (1 sound file)" @@ -4378,15 +4423,16 @@ "createdYear": [ 2007 ], + "buildingLocationIds": [], "dateEndString": [ "1949" ], - "title": [ - "The essential Mario Lanza." - ], "type": [ "nypl:Item" ], + "title": [ + "The essential Mario Lanza." + ], "numItemVolumesParsed": [ 0 ], @@ -4450,9 +4496,6 @@ "dateStartYear": [ 2007 ], - "idOclc": [ - "906201830" - ], "identifierV2": [ { "type": "nypl:Bnumber", @@ -4655,6 +4698,9 @@ "value": "(OCoLC)906201830" } ], + "idOclc": [ + "906201830" + ], "dateEndYear": [ 1949 ], @@ -4663,9 +4709,6 @@ "[New York] : RCA Red Seal, [2007]", "℗2007" ], - "genreForm": [ - "Streaming audio." - ], "identifier": [ "urn:bnum:21890516", "urn:oclc:906201830", @@ -4718,6 +4761,9 @@ "urn:identifier:886970740920 RCA Records", "urn:identifier:(OCoLC)906201830" ], + "genreForm": [ + "Streaming audio." + ], "numCheckinCardItems": [ 0 ], @@ -4776,7 +4822,7 @@ ] }, "sort": [ - 13.205509, + 12.791729, "b21890516" ], "inner_hits": { @@ -4794,8 +4840,8 @@ }, { "_index": "resources-2024-10-22", - "_id": "b21903183", - "_score": 10.228359, + "_id": "b21903200", + "_score": 9.845151, "_source": { "extent": [ "1 online resource (1 sound file)" @@ -4827,9 +4873,6 @@ "numItemDatesParsed": [ 0 ], - "publisherLiteral": [ - "EMI Classics" - ], "language": [ { "id": "lang:mul", @@ -4845,6 +4888,7 @@ "dateEndString": [ "1955" ], + "buildingLocationIds": [], "title": [ "100 best opera classics." ], @@ -4930,24 +4974,17 @@ "GBAYC8600643", "GBAYC0201426", "GBAYC9001060", - "GBAYC9701139", - "GBAYC8301047", - "GBAYC9602783", - "GBAYC9701686", - "GBAYC8000072", - "GBAYC8801134", - "GBAYC8901353", - "GBAYC9005484", - "GBAYC9900737", - "DEC629200551", - "GBAYC0201886", - "GBAYC8603110", - "GBAYC9502659", - "FRZ110200604", - "GBAYC9704313", - "FRZ118901772", - "GBAYC0300835", "GBAYC8600596", + "GBAYC0300835", + "FRZ118901772", + "GBAYC9704313", + "FRZ110200604", + "GBAYC9502659", + "GBAYC8603110", + "GBAYC0201886", + "DEC629200551", + "GBAYC9900737", + "GBAYC9005484", "FRZ118900350", "FRZ115707569", "FRZ116806347", @@ -4956,7 +4993,14 @@ "GBAYC0301920", "GBAYC9103774", "GBAYC8800934", - "GBAYC8501246" + "GBAYC8501246", + "GBAYC8901353", + "GBAYC8801134", + "GBAYC8000072", + "GBAYC9701686", + "GBAYC9602783", + "GBAYC8301047", + "GBAYC9701139" ], "numElectronicResources": [ 1 @@ -4968,16 +5012,16 @@ 2006 ], "idOclc": [ - "877956368" + "878384789" ], "identifierV2": [ { "type": "nypl:Bnumber", - "value": "21903183" + "value": "21903200" }, { "type": "nypl:Oclc", - "value": "877956368" + "value": "878384789" }, { "type": "bf:Lccn", @@ -5269,134 +5313,131 @@ }, { "type": "bf:Lccn", - "value": "GBAYC9701139" + "value": "GBAYC8600596" }, { "type": "bf:Lccn", - "value": "GBAYC8301047" + "value": "GBAYC0300835" }, { "type": "bf:Lccn", - "value": "GBAYC9602783" + "value": "FRZ118901772" }, { "type": "bf:Lccn", - "value": "GBAYC9701686" + "value": "GBAYC9704313" }, { "type": "bf:Lccn", - "value": "GBAYC8000072" + "value": "FRZ110200604" }, { "type": "bf:Lccn", - "value": "GBAYC8801134" + "value": "GBAYC9502659" }, { "type": "bf:Lccn", - "value": "GBAYC8901353" + "value": "GBAYC8603110" }, { "type": "bf:Lccn", - "value": "GBAYC9005484" + "value": "GBAYC0201886" }, { "type": "bf:Lccn", - "value": "GBAYC9900737" + "value": "DEC629200551" }, { "type": "bf:Lccn", - "value": "DEC629200551" + "value": "GBAYC9900737" }, { "type": "bf:Lccn", - "value": "GBAYC0201886" + "value": "GBAYC9005484" }, { "type": "bf:Lccn", - "value": "GBAYC8603110" + "value": "FRZ118900350" }, { "type": "bf:Lccn", - "value": "GBAYC9502659" + "value": "FRZ115707569" }, { "type": "bf:Lccn", - "value": "FRZ110200604" + "value": "FRZ116806347" }, { "type": "bf:Lccn", - "value": "GBAYC9704313" + "value": "FRZ118703093" }, { "type": "bf:Lccn", - "value": "FRZ118901772" + "value": "FRZ116105851" }, { "type": "bf:Lccn", - "value": "GBAYC0300835" + "value": "GBAYC0301920" }, { "type": "bf:Lccn", - "value": "GBAYC8600596" + "value": "GBAYC9103774" }, { "type": "bf:Lccn", - "value": "FRZ118900350" + "value": "GBAYC8800934" }, { "type": "bf:Lccn", - "value": "FRZ115707569" + "value": "GBAYC8501246" }, { "type": "bf:Lccn", - "value": "FRZ116806347" + "value": "GBAYC8901353" }, { "type": "bf:Lccn", - "value": "FRZ118703093" + "value": "GBAYC8801134" }, { "type": "bf:Lccn", - "value": "FRZ116105851" + "value": "GBAYC8000072" }, { "type": "bf:Lccn", - "value": "GBAYC0301920" + "value": "GBAYC9701686" }, { "type": "bf:Lccn", - "value": "GBAYC9103774" + "value": "GBAYC9602783" }, { "type": "bf:Lccn", - "value": "GBAYC8800934" + "value": "GBAYC8301047" }, { "type": "bf:Lccn", - "value": "GBAYC8501246" + "value": "GBAYC9701139" }, { "type": "bf:Identifier", - "value": "0094637087954 EMI Classics" + "value": "0724358621150 EMI Classics" }, { "type": "bf:Identifier", - "value": "(OCoLC)877956368" + "value": "(OCoLC)878384789" } ], "dateEndYear": [ 1955 ], - "updatedAt": 1710991128225, - "publicationStatement": [ - "New York, NY : EMI Classics, [2006]" - ], + "updatedAt": 1711340707671, "genreForm": [ "Streaming audio." ], "identifier": [ - "urn:bnum:21903183", - "urn:oclc:877956368", + "urn:bnum:21903200", + "urn:oclc:878384789", "urn:lccn:GBAYC9000585", "urn:lccn:GBAYC9000587", "urn:lccn:GBAYC8401060", @@ -5469,24 +5510,17 @@ "urn:lccn:GBAYC8600643", "urn:lccn:GBAYC0201426", "urn:lccn:GBAYC9001060", - "urn:lccn:GBAYC9701139", - "urn:lccn:GBAYC8301047", - "urn:lccn:GBAYC9602783", - "urn:lccn:GBAYC9701686", - "urn:lccn:GBAYC8000072", - "urn:lccn:GBAYC8801134", - "urn:lccn:GBAYC8901353", - "urn:lccn:GBAYC9005484", - "urn:lccn:GBAYC9900737", - "urn:lccn:DEC629200551", - "urn:lccn:GBAYC0201886", - "urn:lccn:GBAYC8603110", - "urn:lccn:GBAYC9502659", - "urn:lccn:FRZ110200604", - "urn:lccn:GBAYC9704313", - "urn:lccn:FRZ118901772", - "urn:lccn:GBAYC0300835", "urn:lccn:GBAYC8600596", + "urn:lccn:GBAYC0300835", + "urn:lccn:FRZ118901772", + "urn:lccn:GBAYC9704313", + "urn:lccn:FRZ110200604", + "urn:lccn:GBAYC9502659", + "urn:lccn:GBAYC8603110", + "urn:lccn:GBAYC0201886", + "urn:lccn:DEC629200551", + "urn:lccn:GBAYC9900737", + "urn:lccn:GBAYC9005484", "urn:lccn:FRZ118900350", "urn:lccn:FRZ115707569", "urn:lccn:FRZ116806347", @@ -5496,8 +5530,15 @@ "urn:lccn:GBAYC9103774", "urn:lccn:GBAYC8800934", "urn:lccn:GBAYC8501246", - "urn:identifier:0094637087954 EMI Classics", - "urn:identifier:(OCoLC)877956368" + "urn:lccn:GBAYC8901353", + "urn:lccn:GBAYC8801134", + "urn:lccn:GBAYC8000072", + "urn:lccn:GBAYC9701686", + "urn:lccn:GBAYC9602783", + "urn:lccn:GBAYC8301047", + "urn:lccn:GBAYC9701139", + "urn:identifier:0724358621150 EMI Classics", + "urn:identifier:(OCoLC)878384789" ], "numCheckinCardItems": [ 0 @@ -5529,16 +5570,13 @@ "titleDisplay": [ "100 best opera classics." ], - "uri": "b21903183", + "uri": "b21903200", "electronicResources": [ { "label": "Access Naxos Music Library", - "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=0094637087954" + "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=0724358621150" } ], - "placeOfPublication": [ - "New York, NY" - ], "issuance": [ { "id": "urn:biblevel:m", @@ -5550,7 +5588,7 @@ "One hundred best opera classics" ], "tableOfContents": [ - "Le nozze di Figaro. Voi che sapete (2:50) ; Porgi amor (4:16) / Mozart -- Don Giovanni. Deh, vieni alla finestra (2:03) ; Batti, batti, o bel masetto (3:52) / Mozart -- Die Zauberflöte. Der hölle rache (2:56) ; O Isis und Osiris (3:12) / Mozart -- Cosí fan tutte. Temerari-- come scoglio / Mozart (5:51) -- Il Barbiere di Siviglia. La calunnia è un venticello / Rossini (4:53) -- Don Carlo. Nei giardin del bello / Verdi (4:56) -- Norma. Casta diva / Bellini (5:32) -- Aida. Se quel guerrier-- Celeste Aida / Verdi (4:41) -- La traviata. Tenesta la promessa-- Addio del passato / Verdi (5:43) -- Otello. Niun mi tema / Verdi (6:01) -- Madama Butterfly. Un bel di vendremo / Puccini (4:37) -- Tosca. E lucevan le stelle / Puccini (2:53) -- La Bohème. Si, mi chiamano Mimi / Puccini (4:52) -- Manon Lescaut. In quelle trine morbide / Puccini (2:17) -- Turandot. Signore, ascolta / Puccini (2:37) -- I Pagliacci. Recitar-- vesti la giubba / Leoncavallo (3:44) -- Fedora. Amor ti vieta di non amar / Giordano (1:46) --", + "Le nozze di Figaro. Voi che sapete (2:50) ; Porgi amor (4:16) / Mozart -- Don Giovanni. Deh, vieni alla finestra (2:03) ; Batti, batti, o bel masetto (3:52) / Mozart -- Die Zauberflöte. Der hölle rache (2:56) ; O Isis und Osiris (3:12) / Mozart -- Cosí fan tutte. Temerari-- come scoglio / Mozart (5:51) -- Il Barbiere di Siviglia. La calunnia è un venticello / Rossini (4:53) -- Don Carlo. Nei giardin del bello / Verdi (4:56) -- Norma. Casta diva / Bellini (5:32) -- Aida. Se quel guerrier-- Celeste Aida / Verdi (4:41) -- La traviata. Tenesta la promessa-- Addio del passato / Verdi (5:43) -- Otello. Niun mi tema / Verdi (6:01) -- Madama Butterfly. Un bel di vendremo / Puccini (4:37) -- Tosca. E lucevan le stelle / Puccini (2:53) -- La Bohème. Si, mi chiamano Mimi / Puccini (4:52) -- Manon Lescaut. In quelle trine morbide / Puccini (2:17) -- Turandot. Signore, ascolta / Puccini (2:37) -- I Pagliacci. Recitar-- vesti la giubba / Leoncavallo (3:44) -- Fedora. Amor ti vieta di non amar / Giordano (1:46).", "Faust. Le veau d'or est toujours debout / Gounod (2:03) -- Lakmé. Oú va la jeune hindoue? / Delibes (6:29) -- Roméo et Juliette. L'amour, l'amour-- ah! Lève-toi, soleil / Gounod (4:18) -- Manon. Allons! Il le faut-- Adieu notre petite table / Massenet (3:49) -- Werther. Toute mon âme est là-- pourquoi me réveiller / Massenet (2:36) -- La jolie fille de Perth. Quand la flamme de l'amour / Bizet (4:57) -- Carmen. L'amour est un oiseua rebelle / Bizet (4:35) -- Les Pècheurs de perles. À cette voix-- je crois entendre encore / Bizet (4:32) -- La damnation de Faust. Une puce gentille / Berlioz (1:24) -- Les Troyens. Je vais mourir-- Adieu, fière cité / Berlioz (6:00) -- Samson et Delilah. Mon coeur s'ouvre à ta voix / Saint-Saëns (5:17) -- Tannhäuser. Wie todesahnung-- O du mein holder Abendstern / Wagner (4:15) -- Der fliegende Holländer. Johohoe! Traft ihr das schiff im Meere an? / Wagner (8:12) -- Lohengrin. In fernem land / Wagner (4:42) -- Siegfried. Heil dir, Sonne! / Wagner (5:17) -- Tristan und Isolde. Mild und leise / Wagner (7:19).", "Orfeo ed Euridice. Che farò senza Euridice? / Gluck (5:26) -- Die Zauberflöte. Der Vogelfänger bin ich ja / Mozart (2:36) -- Don Giovanni. Finch'han dal vino / Mozart (1:27) -- Le nozze di Figaro. E Susanna non vien!-- Dove sono / Mozart (6:27) -- Fidelio. Abscheulicher! / Beethoven (8:18) -- Guillaume Tell. Ne m'abandonne pas, espoir de la vengeance-- Asile héréditaire / Rossini (6:59) -- Il barbiere di siviglia. Largo al factotum / rossini (4:42) -- Don Carlo. Ella giammai m'amò! / Verdi (7:32) -- Rigoletto. La donna è mobile / Rossini (2:14) -- Il trovatore. Di quella pira / Rossini (2:02) -- Otello. Esultate! (2:24) ; Dio! mi potevi scagliar (4:39) / Rossini -- Tosca. Vissi d'arte, vissi d'amore / Puccini (3:00) -- Turandot. In questa reggia (5:58) ; Tanto amore (2:22) / Puccini -- Gianni Schicchi. O mio babbino caro / Puccini (2:40) -- L'amico Fritz. Ed anche beppe amo / Mascagni (3:16) -- Adriana Lecouvreur. Poveri fiori / Cilea (3:10) -- Andrea Chénier. Come un bel di di maggio / Giordano (3:04).", "Faust. Les grande seigneurs-- Ah! Je ris de me voir si belle / Gounod (5:50) -- Le Jongleur de Notre-Dame. Marie, avec l'enfant Jésus / Massenet (5:30) -- Mirielle. Heureux petit berger / Massenet (2:05) -- Mignon. Connais-tu le pays (5:39) ; Elle ne croyait pas dans sa candeur (3:31) / Thomas -- Carmen. Votre toast, je peux vous le rendre-- Toréadore / Bizet (4:55) -- Les contes d'Hoffmann. Les oiseaux dans la charmille / Offenbach (5:47) -- La damnation de Faust. Maintenant, chantons-- Devant la maison de celui qui t'adore / Berlioz (2:16) -- Louise. Depuis le jour / Charpentier (5:34) -- Der Rosenkavalier. Da geht er hin / Richard Strauss (5:22) -- Lohengrin. Einsam in trüben Tagen / Wagner (6:02) -- Tannhäuser. Dich, teure Halle / Wagner (4:44) -- Die Walküre. Leb wohl, du kühnes, herrliches Kind (15:41) ; Hojotoho hojotoho! (5:56) / Wagner.", @@ -5559,8 +5597,8 @@ ] }, "sort": [ - 10.228359, - "b21903183" + 9.845151, + "b21903200" ], "inner_hits": { "items": { @@ -5577,8 +5615,8 @@ }, { "_index": "resources-2024-10-22", - "_id": "b21903200", - "_score": 10.212117, + "_id": "b21903183", + "_score": 9.80227, "_source": { "extent": [ "1 online resource (1 sound file)" @@ -5610,6 +5648,9 @@ "numItemDatesParsed": [ 0 ], + "publisherLiteral": [ + "EMI Classics" + ], "language": [ { "id": "lang:mul", @@ -5625,6 +5666,7 @@ "dateEndString": [ "1955" ], + "buildingLocationIds": [], "title": [ "100 best opera classics." ], @@ -5710,17 +5752,24 @@ "GBAYC8600643", "GBAYC0201426", "GBAYC9001060", - "GBAYC8600596", - "GBAYC0300835", - "FRZ118901772", - "GBAYC9704313", - "FRZ110200604", - "GBAYC9502659", - "GBAYC8603110", - "GBAYC0201886", - "DEC629200551", - "GBAYC9900737", + "GBAYC9701139", + "GBAYC8301047", + "GBAYC9602783", + "GBAYC9701686", + "GBAYC8000072", + "GBAYC8801134", + "GBAYC8901353", "GBAYC9005484", + "GBAYC9900737", + "DEC629200551", + "GBAYC0201886", + "GBAYC8603110", + "GBAYC9502659", + "FRZ110200604", + "GBAYC9704313", + "FRZ118901772", + "GBAYC0300835", + "GBAYC8600596", "FRZ118900350", "FRZ115707569", "FRZ116806347", @@ -5729,14 +5778,7 @@ "GBAYC0301920", "GBAYC9103774", "GBAYC8800934", - "GBAYC8501246", - "GBAYC8901353", - "GBAYC8801134", - "GBAYC8000072", - "GBAYC9701686", - "GBAYC9602783", - "GBAYC8301047", - "GBAYC9701139" + "GBAYC8501246" ], "numElectronicResources": [ 1 @@ -5748,16 +5790,16 @@ 2006 ], "idOclc": [ - "878384789" + "877956368" ], "identifierV2": [ { "type": "nypl:Bnumber", - "value": "21903200" + "value": "21903183" }, { "type": "nypl:Oclc", - "value": "878384789" + "value": "877956368" }, { "type": "bf:Lccn", @@ -6049,131 +6091,134 @@ }, { "type": "bf:Lccn", - "value": "GBAYC8600596" + "value": "GBAYC9701139" }, { "type": "bf:Lccn", - "value": "GBAYC0300835" + "value": "GBAYC8301047" }, { "type": "bf:Lccn", - "value": "FRZ118901772" + "value": "GBAYC9602783" }, { "type": "bf:Lccn", - "value": "GBAYC9704313" + "value": "GBAYC9701686" }, { "type": "bf:Lccn", - "value": "FRZ110200604" + "value": "GBAYC8000072" }, { "type": "bf:Lccn", - "value": "GBAYC9502659" + "value": "GBAYC8801134" }, { "type": "bf:Lccn", - "value": "GBAYC8603110" + "value": "GBAYC8901353" }, { "type": "bf:Lccn", - "value": "GBAYC0201886" + "value": "GBAYC9005484" }, { "type": "bf:Lccn", - "value": "DEC629200551" + "value": "GBAYC9900737" }, { "type": "bf:Lccn", - "value": "GBAYC9900737" + "value": "DEC629200551" }, { "type": "bf:Lccn", - "value": "GBAYC9005484" + "value": "GBAYC0201886" }, { "type": "bf:Lccn", - "value": "FRZ118900350" + "value": "GBAYC8603110" }, { "type": "bf:Lccn", - "value": "FRZ115707569" + "value": "GBAYC9502659" }, { "type": "bf:Lccn", - "value": "FRZ116806347" + "value": "FRZ110200604" }, { "type": "bf:Lccn", - "value": "FRZ118703093" + "value": "GBAYC9704313" }, { "type": "bf:Lccn", - "value": "FRZ116105851" + "value": "FRZ118901772" }, { "type": "bf:Lccn", - "value": "GBAYC0301920" + "value": "GBAYC0300835" }, { "type": "bf:Lccn", - "value": "GBAYC9103774" + "value": "GBAYC8600596" }, { "type": "bf:Lccn", - "value": "GBAYC8800934" + "value": "FRZ118900350" }, { "type": "bf:Lccn", - "value": "GBAYC8501246" + "value": "FRZ115707569" }, { "type": "bf:Lccn", - "value": "GBAYC8901353" + "value": "FRZ116806347" }, { "type": "bf:Lccn", - "value": "GBAYC8801134" + "value": "FRZ118703093" }, { "type": "bf:Lccn", - "value": "GBAYC8000072" + "value": "FRZ116105851" }, { "type": "bf:Lccn", - "value": "GBAYC9701686" + "value": "GBAYC0301920" }, { "type": "bf:Lccn", - "value": "GBAYC9602783" + "value": "GBAYC9103774" }, { "type": "bf:Lccn", - "value": "GBAYC8301047" + "value": "GBAYC8800934" }, { "type": "bf:Lccn", - "value": "GBAYC9701139" + "value": "GBAYC8501246" }, { "type": "bf:Identifier", - "value": "0724358621150 EMI Classics" + "value": "0094637087954 EMI Classics" }, { "type": "bf:Identifier", - "value": "(OCoLC)878384789" + "value": "(OCoLC)877956368" } ], "dateEndYear": [ 1955 ], - "updatedAt": 1711340707671, + "updatedAt": 1710991128225, + "publicationStatement": [ + "New York, NY : EMI Classics, [2006]" + ], "genreForm": [ "Streaming audio." ], "identifier": [ - "urn:bnum:21903200", - "urn:oclc:878384789", + "urn:bnum:21903183", + "urn:oclc:877956368", "urn:lccn:GBAYC9000585", "urn:lccn:GBAYC9000587", "urn:lccn:GBAYC8401060", @@ -6246,17 +6291,24 @@ "urn:lccn:GBAYC8600643", "urn:lccn:GBAYC0201426", "urn:lccn:GBAYC9001060", - "urn:lccn:GBAYC8600596", - "urn:lccn:GBAYC0300835", - "urn:lccn:FRZ118901772", - "urn:lccn:GBAYC9704313", - "urn:lccn:FRZ110200604", - "urn:lccn:GBAYC9502659", - "urn:lccn:GBAYC8603110", - "urn:lccn:GBAYC0201886", - "urn:lccn:DEC629200551", - "urn:lccn:GBAYC9900737", + "urn:lccn:GBAYC9701139", + "urn:lccn:GBAYC8301047", + "urn:lccn:GBAYC9602783", + "urn:lccn:GBAYC9701686", + "urn:lccn:GBAYC8000072", + "urn:lccn:GBAYC8801134", + "urn:lccn:GBAYC8901353", "urn:lccn:GBAYC9005484", + "urn:lccn:GBAYC9900737", + "urn:lccn:DEC629200551", + "urn:lccn:GBAYC0201886", + "urn:lccn:GBAYC8603110", + "urn:lccn:GBAYC9502659", + "urn:lccn:FRZ110200604", + "urn:lccn:GBAYC9704313", + "urn:lccn:FRZ118901772", + "urn:lccn:GBAYC0300835", + "urn:lccn:GBAYC8600596", "urn:lccn:FRZ118900350", "urn:lccn:FRZ115707569", "urn:lccn:FRZ116806347", @@ -6266,15 +6318,8 @@ "urn:lccn:GBAYC9103774", "urn:lccn:GBAYC8800934", "urn:lccn:GBAYC8501246", - "urn:lccn:GBAYC8901353", - "urn:lccn:GBAYC8801134", - "urn:lccn:GBAYC8000072", - "urn:lccn:GBAYC9701686", - "urn:lccn:GBAYC9602783", - "urn:lccn:GBAYC8301047", - "urn:lccn:GBAYC9701139", - "urn:identifier:0724358621150 EMI Classics", - "urn:identifier:(OCoLC)878384789" + "urn:identifier:0094637087954 EMI Classics", + "urn:identifier:(OCoLC)877956368" ], "numCheckinCardItems": [ 0 @@ -6306,13 +6351,16 @@ "titleDisplay": [ "100 best opera classics." ], - "uri": "b21903200", + "uri": "b21903183", "electronicResources": [ { "label": "Access Naxos Music Library", - "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=0724358621150" + "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=0094637087954" } ], + "placeOfPublication": [ + "New York, NY" + ], "issuance": [ { "id": "urn:biblevel:m", @@ -6324,7 +6372,7 @@ "One hundred best opera classics" ], "tableOfContents": [ - "Le nozze di Figaro. Voi che sapete (2:50) ; Porgi amor (4:16) / Mozart -- Don Giovanni. Deh, vieni alla finestra (2:03) ; Batti, batti, o bel masetto (3:52) / Mozart -- Die Zauberflöte. Der hölle rache (2:56) ; O Isis und Osiris (3:12) / Mozart -- Cosí fan tutte. Temerari-- come scoglio / Mozart (5:51) -- Il Barbiere di Siviglia. La calunnia è un venticello / Rossini (4:53) -- Don Carlo. Nei giardin del bello / Verdi (4:56) -- Norma. Casta diva / Bellini (5:32) -- Aida. Se quel guerrier-- Celeste Aida / Verdi (4:41) -- La traviata. Tenesta la promessa-- Addio del passato / Verdi (5:43) -- Otello. Niun mi tema / Verdi (6:01) -- Madama Butterfly. Un bel di vendremo / Puccini (4:37) -- Tosca. E lucevan le stelle / Puccini (2:53) -- La Bohème. Si, mi chiamano Mimi / Puccini (4:52) -- Manon Lescaut. In quelle trine morbide / Puccini (2:17) -- Turandot. Signore, ascolta / Puccini (2:37) -- I Pagliacci. Recitar-- vesti la giubba / Leoncavallo (3:44) -- Fedora. Amor ti vieta di non amar / Giordano (1:46).", + "Le nozze di Figaro. Voi che sapete (2:50) ; Porgi amor (4:16) / Mozart -- Don Giovanni. Deh, vieni alla finestra (2:03) ; Batti, batti, o bel masetto (3:52) / Mozart -- Die Zauberflöte. Der hölle rache (2:56) ; O Isis und Osiris (3:12) / Mozart -- Cosí fan tutte. Temerari-- come scoglio / Mozart (5:51) -- Il Barbiere di Siviglia. La calunnia è un venticello / Rossini (4:53) -- Don Carlo. Nei giardin del bello / Verdi (4:56) -- Norma. Casta diva / Bellini (5:32) -- Aida. Se quel guerrier-- Celeste Aida / Verdi (4:41) -- La traviata. Tenesta la promessa-- Addio del passato / Verdi (5:43) -- Otello. Niun mi tema / Verdi (6:01) -- Madama Butterfly. Un bel di vendremo / Puccini (4:37) -- Tosca. E lucevan le stelle / Puccini (2:53) -- La Bohème. Si, mi chiamano Mimi / Puccini (4:52) -- Manon Lescaut. In quelle trine morbide / Puccini (2:17) -- Turandot. Signore, ascolta / Puccini (2:37) -- I Pagliacci. Recitar-- vesti la giubba / Leoncavallo (3:44) -- Fedora. Amor ti vieta di non amar / Giordano (1:46) --", "Faust. Le veau d'or est toujours debout / Gounod (2:03) -- Lakmé. Oú va la jeune hindoue? / Delibes (6:29) -- Roméo et Juliette. L'amour, l'amour-- ah! Lève-toi, soleil / Gounod (4:18) -- Manon. Allons! Il le faut-- Adieu notre petite table / Massenet (3:49) -- Werther. Toute mon âme est là-- pourquoi me réveiller / Massenet (2:36) -- La jolie fille de Perth. Quand la flamme de l'amour / Bizet (4:57) -- Carmen. L'amour est un oiseua rebelle / Bizet (4:35) -- Les Pècheurs de perles. À cette voix-- je crois entendre encore / Bizet (4:32) -- La damnation de Faust. Une puce gentille / Berlioz (1:24) -- Les Troyens. Je vais mourir-- Adieu, fière cité / Berlioz (6:00) -- Samson et Delilah. Mon coeur s'ouvre à ta voix / Saint-Saëns (5:17) -- Tannhäuser. Wie todesahnung-- O du mein holder Abendstern / Wagner (4:15) -- Der fliegende Holländer. Johohoe! Traft ihr das schiff im Meere an? / Wagner (8:12) -- Lohengrin. In fernem land / Wagner (4:42) -- Siegfried. Heil dir, Sonne! / Wagner (5:17) -- Tristan und Isolde. Mild und leise / Wagner (7:19).", "Orfeo ed Euridice. Che farò senza Euridice? / Gluck (5:26) -- Die Zauberflöte. Der Vogelfänger bin ich ja / Mozart (2:36) -- Don Giovanni. Finch'han dal vino / Mozart (1:27) -- Le nozze di Figaro. E Susanna non vien!-- Dove sono / Mozart (6:27) -- Fidelio. Abscheulicher! / Beethoven (8:18) -- Guillaume Tell. Ne m'abandonne pas, espoir de la vengeance-- Asile héréditaire / Rossini (6:59) -- Il barbiere di siviglia. Largo al factotum / rossini (4:42) -- Don Carlo. Ella giammai m'amò! / Verdi (7:32) -- Rigoletto. La donna è mobile / Rossini (2:14) -- Il trovatore. Di quella pira / Rossini (2:02) -- Otello. Esultate! (2:24) ; Dio! mi potevi scagliar (4:39) / Rossini -- Tosca. Vissi d'arte, vissi d'amore / Puccini (3:00) -- Turandot. In questa reggia (5:58) ; Tanto amore (2:22) / Puccini -- Gianni Schicchi. O mio babbino caro / Puccini (2:40) -- L'amico Fritz. Ed anche beppe amo / Mascagni (3:16) -- Adriana Lecouvreur. Poveri fiori / Cilea (3:10) -- Andrea Chénier. Come un bel di di maggio / Giordano (3:04).", "Faust. Les grande seigneurs-- Ah! Je ris de me voir si belle / Gounod (5:50) -- Le Jongleur de Notre-Dame. Marie, avec l'enfant Jésus / Massenet (5:30) -- Mirielle. Heureux petit berger / Massenet (2:05) -- Mignon. Connais-tu le pays (5:39) ; Elle ne croyait pas dans sa candeur (3:31) / Thomas -- Carmen. Votre toast, je peux vous le rendre-- Toréadore / Bizet (4:55) -- Les contes d'Hoffmann. Les oiseaux dans la charmille / Offenbach (5:47) -- La damnation de Faust. Maintenant, chantons-- Devant la maison de celui qui t'adore / Berlioz (2:16) -- Louise. Depuis le jour / Charpentier (5:34) -- Der Rosenkavalier. Da geht er hin / Richard Strauss (5:22) -- Lohengrin. Einsam in trüben Tagen / Wagner (6:02) -- Tannhäuser. Dich, teure Halle / Wagner (4:44) -- Die Walküre. Leb wohl, du kühnes, herrliches Kind (15:41) ; Hojotoho hojotoho! (5:56) / Wagner.", @@ -6333,8 +6381,8 @@ ] }, "sort": [ - 10.212117, - "b21903200" + 9.80227, + "b21903183" ], "inner_hits": { "items": { @@ -6352,7 +6400,7 @@ { "_index": "resources-2024-10-22", "_id": "cb11820882", - "_score": 9.226934, + "_score": 9.271918, "_source": { "extent": [ "2 audio discs : digital ;" @@ -6400,12 +6448,15 @@ "numItemsTotal": [ 1 ], - "dateEndString": [ - "1965" - ], "createdYear": [ 2015 ], + "buildingLocationIds": [ + "rc" + ], + "dateEndString": [ + "1965" + ], "type": [ "nypl:Item" ], @@ -6564,7 +6615,7 @@ ] }, "sort": [ - 9.226934, + 9.271918, "cb11820882" ], "inner_hits": { @@ -6585,78 +6636,78 @@ }, "_score": null, "_source": { - "uri": "ci8904317", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:MR75567024" ], + "physicalLocation": [ + "CD27674" + ], + "shelfMark_sort": "aCD027674", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "ci8904317", "shelfMark": [ "CD27674" ], "identifierV2": [ { - "value": "CD27674", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "CD27674" }, { "type": "bf:Barcode", "value": "MR75567024" } ], - "physicalLocation": [ - "CD27674" - ], - "recapCustomerCode": [ - "MR" - ], - "identifier": [ - "urn:barcode:MR75567024" - ], "idBarcode": [ "MR75567024" ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "type": [ - "bf:Item" + "recapCustomerCode": [ + "MR" ], "formatLiteral": [ "Audio" - ], - "shelfMark_sort": "aCD027674" + ] }, "sort": [ null @@ -6670,7 +6721,7 @@ { "_index": "resources-2024-10-22", "_id": "cb3360572", - "_score": 8.980497, + "_score": 9.028214, "_source": { "extent": [ "xxi, 396 pages ;" @@ -6720,12 +6771,15 @@ "label": "English" } ], - "dateEndString": [ - "1898" - ], "createdYear": [ 1994 ], + "buildingLocationIds": [ + "rc" + ], + "dateEndString": [ + "1898" + ], "type": [ "nypl:Item" ], @@ -6858,15 +6912,15 @@ "placeOfPublication": [ "Lincoln" ], + "titleAlt": [ + "Literary works." + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Literary works." - ], "tableOfContents": [ "\"Das Liebesverbot\" -- A German Musician in Paris. 1. A Pilgrimage to Beethoven. 2. An End in Paris. 3. A Happy Evening. 4. On German Music. 4A. Pergolesi's \"Stabat Mater\" 5. The Virtuoso and the Artist. 5A. Du Metier De Virtuose. 6. The Artist and Publicity. 7. Rossini's \"Stabat Mater\" -- On the Overture -- Der Freischutz in Paris. 1. To the Paris Public. 2. Report to Germany -- Halevy's \"Reine De Chypre\" -- Author's Introduction to Vol. II. of the Ges. Schr -- Weber's Re-Interment. Report. Speech -- Beethoven's Choral Symphony at Dresden. Report. Programme -- The Wibelungen -- The Nibelungen-Myth -- Tercentenary Toast -- A German National Theatre." ], @@ -6878,7 +6932,7 @@ ] }, "sort": [ - 8.980497, + 9.028214, "cb3360572" ], "inner_hits": { @@ -6893,78 +6947,78 @@ { "_index": "resources-2024-10-22", "_id": "cb3360572", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "uri": "ci3413067", - "status": [ - { - "id": "status:na", - "label": "Not available (ReCAP)" - } - ], - "status_packed": [ - "status:na||Not available (ReCAP)" - ], + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:CU61479420" + ], + "physicalLocation": [ + "ML410.W1 A1435 1994" ], + "shelfMark_sort": "aML410.W1 A1435 001994", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:na||Not available (ReCAP)" + ], + "uri": "ci3413067", "shelfMark": [ "ML410.W1 A1435 1994" ], "identifierV2": [ { - "value": "ML410.W1 A1435 1994", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ML410.W1 A1435 1994" }, { "type": "bf:Barcode", "value": "CU61479420" } ], - "physicalLocation": [ - "ML410.W1 A1435 1994" - ], - "recapCustomerCode": [ - "CU" - ], - "identifier": [ - "urn:barcode:CU61479420" - ], "idBarcode": [ "CU61479420" ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], "requestable": [ false ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:na", + "label": "Not available (ReCAP)" + } ], - "shelfMark_sort": "aML410.W1 A1435 001994" + "recapCustomerCode": [ + "CU" + ] }, "sort": [ null @@ -6978,7 +7032,7 @@ { "_index": "resources-2024-10-22", "_id": "cb299666", - "_score": 6.255764, + "_score": 6.319394, "_source": { "extent": [ "201 pages : illustrations ;" @@ -7029,6 +7083,9 @@ "createdYear": [ 1985 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -7222,7 +7279,7 @@ ] }, "sort": [ - 6.255764, + 6.319394, "cb299666" ], "inner_hits": { @@ -7243,78 +7300,78 @@ }, "_score": null, "_source": { - "uri": "ci4249477", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:CU71452699" ], + "physicalLocation": [ + "PS477.5.C67 C68 1985" + ], + "shelfMark_sort": "aPS477.5.C67 C68 001985", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "ci4249477", "shelfMark": [ "PS477.5.C67 C68 1985" ], "identifierV2": [ { - "value": "PS477.5.C67 C68 1985", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PS477.5.C67 C68 1985" }, { "type": "bf:Barcode", "value": "CU71452699" } ], - "physicalLocation": [ - "PS477.5.C67 C68 1985" - ], - "recapCustomerCode": [ - "CU" - ], - "identifier": [ - "urn:barcode:CU71452699" - ], "idBarcode": [ "CU71452699" ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "type": [ - "bf:Item" + "recapCustomerCode": [ + "CU" ], "formatLiteral": [ "Text" - ], - "shelfMark_sort": "aPS477.5.C67 C68 001985" + ] }, "sort": [ null @@ -7328,7 +7385,7 @@ { "_index": "resources-2024-10-22", "_id": "cb11012105", - "_score": 4.786064, + "_score": 4.8095665, "_source": { "extent": [ "1 audio disc : analog, 33 1/3 rpm, stereo ;" @@ -7362,12 +7419,15 @@ "numItemsTotal": [ 1 ], - "dateEndString": [ - "1984" - ], "createdYear": [ 1984 ], + "buildingLocationIds": [ + "rc" + ], + "dateEndString": [ + "1984" + ], "type": [ "nypl:Item" ], @@ -7500,12 +7560,6 @@ "placeOfPublication": [ "Roma" ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], "titleAlt": [ "Enchanted coast.", "Woman\\u0027s perfume.", @@ -7520,6 +7574,12 @@ "Brightfull path.", "Back in Venice." ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], "tableOfContents": [ "Romantic nature (2:34) -- Portrait of love (3:20) -- A romantic story (3:15) -- Little tale (3:26) -- Brightfull path (3:20) -- Back in Venice (2:42) -- Enchanted coast (2:51) -- Woman\\u0027s perfume (2:45) -- Toast for two (2:48) -- Down the market (2:45) -- Taormina sand (2:25) -- Hopeful trip (2:37)." ], @@ -7528,7 +7588,7 @@ ] }, "sort": [ - 4.786064, + 4.8095665, "cb11012105" ], "inner_hits": { @@ -7549,78 +7609,78 @@ }, "_score": null, "_source": { - "uri": "ci8609844", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:MRS0146692" + ], + "physicalLocation": [ + "SNK14669" ], + "shelfMark_sort": "aSNK014669", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "ci8609844", "shelfMark": [ "SNK14669" ], "identifierV2": [ { - "value": "SNK14669", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "SNK14669" }, { "type": "bf:Barcode", "value": "MRS0146692" } ], - "physicalLocation": [ - "SNK14669" - ], - "recapCustomerCode": [ - "MR" - ], - "identifier": [ - "urn:barcode:MRS0146692" - ], "idBarcode": [ "MRS0146692" ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "type": [ - "bf:Item" + "recapCustomerCode": [ + "MR" ], "formatLiteral": [ "Audio" - ], - "shelfMark_sort": "aSNK014669" + ] }, "sort": [ null @@ -7634,7 +7694,7 @@ { "_index": "resources-2024-10-22", "_id": "cb13231291", - "_score": 2.6640358, + "_score": 2.677641, "_source": { "extent": [ "1 audio disc ;" @@ -7859,7 +7919,7 @@ ] }, "sort": [ - 2.6640358, + 2.677641, "cb13231291" ], "inner_hits": { @@ -7965,7 +8025,7 @@ { "_index": "resources-2024-10-22", "_id": "cb10481947", - "_score": 2.1985016, + "_score": 2.1980476, "_source": { "extent": [ "1 audio disc : analog, 33 1/3 rpm ;" @@ -8014,12 +8074,15 @@ "numItemsTotal": [ 1 ], - "dateEndString": [ - "1946" - ], "createdYear": [ 1988 ], + "buildingLocationIds": [ + "rc" + ], + "dateEndString": [ + "1946" + ], "type": [ "nypl:Item" ], @@ -8149,12 +8212,6 @@ "placeOfPublication": [ "Copenhagen, Denmark" ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], "titleAlt": [ "Melodrama in a V-disc record room.", "Prelude to a kiss.", @@ -8174,6 +8231,12 @@ "Surf board.", "You are too beautiful." ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], "tableOfContents": [ "Melodrama in a V-disc record room / Brenner (3:29) -- Prelude to a kiss / Ellington (3:03) -- Sweet Georgia Brown / Bernie, Pinkard, Casey (2:35) -- Out of my way / S. Catlett, T. Grimes, Sigman (3:00) -- What\\u0027ll be (2:45) ; Cadillac Slim (2:45) / Ben Webster -- Baby you\\u0027re mine for keeps (2:39) ; You\\u0027ll never break my heart again (2:51) ; Chilpancingo (2:51) ; (There\\u0027s a new side to) an old love story (2:56) ; Reina (my lovely queen) (2:56) ; Let us drink a toast together (2:40) / Harry Atwood, Louis Hersher -- Cotton tail / Ellington (2:38) -- Time out for blues / Taub (2:39) -- Surf board (3:04) ; You are too beautiful (3:09) / Carter." ], @@ -8182,7 +8245,7 @@ ] }, "sort": [ - 2.1985016, + 2.1980476, "cb10481947" ], "inner_hits": { @@ -8202,79 +8265,79 @@ "offset": 0 }, "_score": null, - "_source": { - "uri": "ci8337529", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], + "_source": { "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:MRS0098701" ], + "physicalLocation": [ + "SNK9870" + ], + "shelfMark_sort": "aSNK009870", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "ci8337529", "shelfMark": [ "SNK9870" ], "identifierV2": [ { - "value": "SNK9870", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "SNK9870" }, { "type": "bf:Barcode", "value": "MRS0098701" } ], - "physicalLocation": [ - "SNK9870" - ], - "recapCustomerCode": [ - "MR" - ], - "identifier": [ - "urn:barcode:MRS0098701" - ], "idBarcode": [ "MRS0098701" ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "type": [ - "bf:Item" + "recapCustomerCode": [ + "MR" ], "formatLiteral": [ "Audio" - ], - "shelfMark_sort": "aSNK009870" + ] }, "sort": [ null @@ -8288,7 +8351,7 @@ { "_index": "resources-2024-10-22", "_id": "cb7580605", - "_score": 0.50877, + "_score": 0.5088768, "_source": { "extent": [ "4 sound discs (267 min.) : digital ;" @@ -8328,6 +8391,9 @@ "createdYear": [ 2009 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -8566,7 +8632,7 @@ ] }, "sort": [ - 0.50877, + 0.5088768, "cb7580605" ], "inner_hits": { @@ -8587,75 +8653,75 @@ }, "_score": null, "_source": { - "uri": "ci7347734", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:MR75487543" + ], + "physicalLocation": [ + "CD17795" ], + "shelfMark_sort": "aCD17795 CD-A", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "ci7347734", "shelfMark": [ "CD17795 CD-A" ], "identifierV2": [ { - "value": "CD17795 CD-A", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "CD17795 CD-A" }, { "type": "bf:Barcode", "value": "MR75487543" } ], - "physicalLocation": [ - "CD17795" - ], "enumerationChronology": [ "CD-A" ], - "recapCustomerCode": [ - "MR" - ], - "identifier": [ - "urn:barcode:MR75487543" - ], "idBarcode": [ "MR75487543" ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "shelfMark_sort": "aCD17795 CD-A" + "recapCustomerCode": [ + "MR" + ] }, "sort": [ null @@ -8670,75 +8736,75 @@ }, "_score": null, "_source": { - "uri": "ci7347735", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:MR75487551" + ], + "physicalLocation": [ + "CD17795" ], + "shelfMark_sort": "aCD17795 CD-B", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "ci7347735", "shelfMark": [ "CD17795 CD-B" ], "identifierV2": [ { - "value": "CD17795 CD-B", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "CD17795 CD-B" }, { "type": "bf:Barcode", "value": "MR75487551" } ], - "physicalLocation": [ - "CD17795" - ], "enumerationChronology": [ "CD-B" ], - "recapCustomerCode": [ - "MR" - ], - "identifier": [ - "urn:barcode:MR75487551" - ], "idBarcode": [ "MR75487551" ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "shelfMark_sort": "aCD17795 CD-B" + "recapCustomerCode": [ + "MR" + ] }, "sort": [ null @@ -8753,75 +8819,75 @@ }, "_score": null, "_source": { - "uri": "ci7347738", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:MR75487560" + ], + "physicalLocation": [ + "CD17795" ], + "shelfMark_sort": "aCD17795 CD-C", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "ci7347738", "shelfMark": [ "CD17795 CD-C" ], "identifierV2": [ { - "value": "CD17795 CD-C", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "CD17795 CD-C" }, { "type": "bf:Barcode", "value": "MR75487560" } ], - "physicalLocation": [ - "CD17795" - ], "enumerationChronology": [ "CD-C" ], - "recapCustomerCode": [ - "MR" - ], - "identifier": [ - "urn:barcode:MR75487560" - ], "idBarcode": [ "MR75487560" ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "shelfMark_sort": "aCD17795 CD-C" + "recapCustomerCode": [ + "MR" + ] }, "sort": [ null diff --git a/test/fixtures/query-25f8b6079682d4c9909c28a2e4dc5f9a.json b/test/fixtures/query-25f8b6079682d4c9909c28a2e4dc5f9a.json index 3eed93be..2eb8fd53 100644 --- a/test/fixtures/query-25f8b6079682d4c9909c28a2e4dc5f9a.json +++ b/test/fixtures/query-25f8b6079682d4c9909c28a2e4dc5f9a.json @@ -1,5 +1,5 @@ { - "took": 51, + "took": 61, "timed_out": false, "_shards": { "total": 2, @@ -46,6 +46,10 @@ "createdYear": [ 201 ], + "buildingLocationIds": [ + "ma", + "rc" + ], "parallelTitle": [ "‏כותר שאינו באותיות לטינית = зглавие руссий." ], @@ -760,97 +764,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v.1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:k||Check with staff" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "uri": "i37857771", + "identifierV2": [ { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + }, + { + "type": "bf:Barcode", + "value": "3333333333" } ], "holdingLocation_packed": [ "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" ], + "enumerationChronology": [ + "v.1" + ], "idBarcode": [ "3333333333" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ false ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "status": [ { "id": "status:k", "label": "Check with staff" } ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i37857771" + ] }, "sort": [ " 1-" @@ -865,88 +869,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1103", + "label": "Dorot Jewish Division" } ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" ], - "enumerationChronology": [ - "nothing" + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "catalogItemType_packed": [ + "catalogItemType:3||serial" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmf2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "44455533322211" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" ], + "uri": "i37857772", "identifierV2": [ { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" }, { - "value": "44455533322211", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "44455533322211" } ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "enumerationChronology": [ + "nothing" + ], + "idBarcode": [ + "44455533322211" ], "owner_packed": [ "orgs:1103||Dorot Jewish Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ true ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" + ] }, "sort": [ null diff --git a/test/fixtures/query-28334de699329f29fd8216e978db9ab0.json b/test/fixtures/query-28334de699329f29fd8216e978db9ab0.json index 3ed7b24e..a0b0fcc1 100644 --- a/test/fixtures/query-28334de699329f29fd8216e978db9ab0.json +++ b/test/fixtures/query-28334de699329f29fd8216e978db9ab0.json @@ -1,5 +1,5 @@ { - "took": 60, + "took": 102, "timed_out": false, "_shards": { "total": 2, @@ -17,7 +17,7 @@ { "_index": "resources-2024-10-22", "_id": "b22144813", - "_score": 713.7199, + "_score": 719.38715, "_source": { "extent": [ "1234, [1] pages, x leaves : illustrations ;", @@ -46,6 +46,10 @@ "createdYear": [ 201 ], + "buildingLocationIds": [ + "ma", + "rc" + ], "parallelTitle": [ "‏כותר שאינו באותיות לטינית = зглавие руссий." ], @@ -739,7 +743,7 @@ ] }, "sort": [ - 713.7199, + 719.38715, "b22144813" ], "inner_hits": { @@ -760,97 +764,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v.1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:k||Check with staff" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "uri": "i37857771", + "identifierV2": [ { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + }, + { + "type": "bf:Barcode", + "value": "3333333333" } ], "holdingLocation_packed": [ "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" ], + "enumerationChronology": [ + "v.1" + ], "idBarcode": [ "3333333333" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ false ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "status": [ { "id": "status:k", "label": "Check with staff" } ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i37857771" + ] }, "sort": [ " 1-" @@ -865,88 +869,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1103", + "label": "Dorot Jewish Division" } ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" ], - "enumerationChronology": [ - "nothing" + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "catalogItemType_packed": [ + "catalogItemType:3||serial" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmf2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "44455533322211" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" ], + "uri": "i37857772", "identifierV2": [ { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" }, { - "value": "44455533322211", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "44455533322211" } ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "enumerationChronology": [ + "nothing" + ], + "idBarcode": [ + "44455533322211" ], "owner_packed": [ "orgs:1103||Dorot Jewish Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ true ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" + ] }, "sort": [ null diff --git a/test/fixtures/query-336a8bd999790190e5b3c220f9b24131.json b/test/fixtures/query-336a8bd999790190e5b3c220f9b24131.json index f681564e..93bc9838 100644 --- a/test/fixtures/query-336a8bd999790190e5b3c220f9b24131.json +++ b/test/fixtures/query-336a8bd999790190e5b3c220f9b24131.json @@ -1,5 +1,5 @@ { - "took": 82, + "took": 78, "timed_out": false, "_shards": { "total": 2, @@ -17,7 +17,7 @@ { "_index": "resources-2024-10-22", "_id": "b22144813", - "_score": 35.704056, + "_score": 36.035526, "_source": { "extent": [ "1234, [1] pages, x leaves : illustrations ;", @@ -46,6 +46,10 @@ "createdYear": [ 201 ], + "buildingLocationIds": [ + "ma", + "rc" + ], "parallelTitle": [ "‏כותר שאינו באותיות לטינית = зглавие руссий." ], @@ -739,7 +743,7 @@ ] }, "sort": [ - 35.704056, + 36.035526, "b22144813" ], "inner_hits": { @@ -760,97 +764,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v.1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:k||Check with staff" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "uri": "i37857771", + "identifierV2": [ { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + }, + { + "type": "bf:Barcode", + "value": "3333333333" } ], "holdingLocation_packed": [ "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" ], + "enumerationChronology": [ + "v.1" + ], "idBarcode": [ "3333333333" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ false ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "status": [ { "id": "status:k", "label": "Check with staff" } ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i37857771" + ] }, "sort": [ " 1-" @@ -865,88 +869,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1103", + "label": "Dorot Jewish Division" } ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" ], - "enumerationChronology": [ - "nothing" + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "catalogItemType_packed": [ + "catalogItemType:3||serial" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmf2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "44455533322211" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" ], + "uri": "i37857772", "identifierV2": [ { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" }, { - "value": "44455533322211", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "44455533322211" } ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "enumerationChronology": [ + "nothing" + ], + "idBarcode": [ + "44455533322211" ], "owner_packed": [ "orgs:1103||Dorot Jewish Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ true ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" + ] }, "sort": [ null diff --git a/test/fixtures/query-3585b2f8ae148f3995a53d324153add9.json b/test/fixtures/query-3585b2f8ae148f3995a53d324153add9.json index c7574f2e..97566459 100644 --- a/test/fixtures/query-3585b2f8ae148f3995a53d324153add9.json +++ b/test/fixtures/query-3585b2f8ae148f3995a53d324153add9.json @@ -1,5 +1,5 @@ { - "took": 1894, + "took": 695, "timed_out": false, "_shards": { "total": 2, @@ -332,6 +332,9 @@ "createdYear": [ 1989 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Scottish islands" ], @@ -476,79 +479,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:JFF 89-526", + "urn:barcode:33433050409147" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "JFF 89-526" + ], + "shelfMark_sort": "aJFF 89-000526", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433050409147" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFF 89-526", - "urn:barcode:33433050409147" + "shelfMark": [ + "JFF 89-526" ], + "uri": "i13783780", "identifierV2": [ { - "value": "JFF 89-526", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFF 89-526" }, { - "value": "33433050409147", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433050409147" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "JFF 89-526" + "idBarcode": [ + "33433050409147" ], "requestable": [ true ], - "shelfMark": [ - "JFF 89-526" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "aJFF 89-000526", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783780" + ] }, "sort": [ null @@ -608,6 +611,9 @@ "createdYear": [ 1965 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Mutaṟkuṟaḷ uvamai." ], @@ -748,88 +754,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1934", + "urn:barcode:33433061301556" + ], + "physicalLocation": [ + "*OLB 84-1934" + ], + "shelfMark_sort": "a*OLB 84-001934", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301556" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1934", - "urn:barcode:33433061301556" + "shelfMark": [ + "*OLB 84-1934" ], + "uri": "i13783781", "identifierV2": [ { - "value": "*OLB 84-1934", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1934" }, { - "value": "33433061301556", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301556" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301556" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1934" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1934" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001934", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783781" + ] }, "sort": [ null @@ -890,6 +896,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom" ], @@ -1027,88 +1036,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-336", + "urn:barcode:33433032711909" + ], + "physicalLocation": [ + "JMF 83-336" + ], + "shelfMark_sort": "aJMF 83-000336", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032711909" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-336", - "urn:barcode:33433032711909" + "shelfMark": [ + "JMF 83-336" ], + "uri": "i10942022", "identifierV2": [ { - "value": "JMF 83-336", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-336" }, { - "value": "33433032711909", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032711909" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032711909" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-336" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-336" - ], - "shelfMark_sort": "aJMF 83-000336", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" + "formatLiteral": [ + "Notated music" ], - "uri": "i10942022" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -1169,6 +1178,9 @@ "createdYear": [ 1968 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tajdīd al-tafkīr al-dīnī fī al-Islām" ], @@ -1309,88 +1321,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OGC 84-1984", + "urn:barcode:33433022691665" + ], + "physicalLocation": [ + "*OGC 84-1984" + ], + "shelfMark_sort": "a*OGC 84-001984", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433022691665" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGC 84-1984", - "urn:barcode:33433022691665" + "shelfMark": [ + "*OGC 84-1984" ], + "uri": "i12540039", "identifierV2": [ { - "value": "*OGC 84-1984", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGC 84-1984" }, { - "value": "33433022691665", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433022691665" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433022691665" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGC 84-1984" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGC 84-1984" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGC 84-001984", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540039" + ] }, "sort": [ null @@ -1447,6 +1459,9 @@ "createdYear": [ 1981 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Due studi per chitarra" ], @@ -1585,88 +1600,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-276", + "urn:barcode:33433032883591" + ], + "physicalLocation": [ + "JMG 83-276" + ], + "shelfMark_sort": "aJMG 83-000276", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032883591" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-276", - "urn:barcode:33433032883591" + "shelfMark": [ + "JMG 83-276" ], + "uri": "i10942023", "identifierV2": [ { - "value": "JMG 83-276", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-276" }, { - "value": "33433032883591", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032883591" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032883591" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-276" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-276" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000276", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942023" + ] }, "sort": [ null @@ -1713,6 +1728,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Aṇṇāviṉ ciṟukataikaḷ." ], @@ -1847,88 +1865,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1986", + "urn:barcode:33433061301689" + ], + "physicalLocation": [ + "*OLB 84-1986" + ], + "shelfMark_sort": "a*OLB 84-001986", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301689" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1986", - "urn:barcode:33433061301689" + "shelfMark": [ + "*OLB 84-1986" ], + "uri": "i13783782", "identifierV2": [ { - "value": "*OLB 84-1986", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1986" }, { - "value": "33433061301689", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301689" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "*OLB 84-1986" + "idBarcode": [ + "33433061301689" ], - "recapCustomerCode": [ - "NA" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1986" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001986", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783782" + ] }, "sort": [ null @@ -1988,6 +2006,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Miniaturen II : 13 kleine Klavierstücke" ], @@ -2130,88 +2151,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-278", + "urn:barcode:33433032883617" + ], + "physicalLocation": [ + "JMG 83-278" + ], + "shelfMark_sort": "aJMG 83-000278", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032883617" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-278", - "urn:barcode:33433032883617" + "shelfMark": [ + "JMG 83-278" ], + "uri": "i10942024", "identifierV2": [ { - "value": "JMG 83-278", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-278" }, { - "value": "33433032883617", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032883617" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032883617" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-278" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-278" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000278", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942024" + ] }, "sort": [ null @@ -2266,6 +2287,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." ], @@ -2406,88 +2430,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1938", + "urn:barcode:33433061301598" + ], + "physicalLocation": [ + "*OLB 84-1938" + ], + "shelfMark_sort": "a*OLB 84-001938", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301598" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1938", - "urn:barcode:33433061301598" + "shelfMark": [ + "*OLB 84-1938" ], + "uri": "i13783783", "identifierV2": [ { - "value": "*OLB 84-1938", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1938" }, { - "value": "33433061301598", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301598" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301598" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1938" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1938" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001938", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783783" + ] }, "sort": [ null @@ -2535,6 +2559,9 @@ "dateEndString": [ "1982" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Passie en pasen : suite voor orgel, opus 50" ], @@ -2664,88 +2691,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-279", + "urn:barcode:33433032883625" + ], + "physicalLocation": [ + "JMG 83-279" + ], + "shelfMark_sort": "aJMG 83-000279", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032883625" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-279", - "urn:barcode:33433032883625" + "shelfMark": [ + "JMG 83-279" ], + "uri": "i10942025", "identifierV2": [ { - "value": "JMG 83-279", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-279" }, { - "value": "33433032883625", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032883625" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032883625" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-279" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-279" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000279", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942025" + ] }, "sort": [ null @@ -2800,6 +2827,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" ], @@ -2926,88 +2956,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFS 84-1997", + "urn:barcode:33433014514719" + ], + "physicalLocation": [ + "*OFS 84-1997" + ], + "shelfMark_sort": "a*OFS 84-001997", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433014514719" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFS 84-1997", - "urn:barcode:33433014514719" + "shelfMark": [ + "*OFS 84-1997" ], + "uri": "i10000003", "identifierV2": [ { - "value": "*OFS 84-1997", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFS 84-1997" }, { - "value": "33433014514719", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433014514719" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014514719" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFS 84-1997" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFS 84-1997" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFS 84-001997", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000003" + ] }, "sort": [ null @@ -3063,6 +3093,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Disko Treff 1 : Klavier." ], @@ -3189,88 +3222,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-366", + "urn:barcode:33433032712204" + ], + "physicalLocation": [ + "JMF 83-366" + ], + "shelfMark_sort": "aJMF 83-000366", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032712204" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-366", - "urn:barcode:33433032712204" + "shelfMark": [ + "JMF 83-366" ], + "uri": "i10942026", "identifierV2": [ { - "value": "JMF 83-366", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-366" }, { - "value": "33433032712204", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032712204" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032712204" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-366" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-366" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000366", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942026" + ] }, "sort": [ null @@ -3327,6 +3360,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Waḥdah al-Islāmīyah : aw al-taqrīb bayna al-madhāhib al-sabʻah, wathāʼiq khaṭīrah wa-buḥūth ʻilmīyah li-aʻāẓim ʻulamāʼ al-Muslimīn min al-sunnah wa-al-shīʻah" ], @@ -3457,88 +3493,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "identifier": [ + "urn:shelfmark:*OGC 84-1996", + "urn:barcode:33433022691780" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "*OGC 84-1996" ], - "holdingLocation": [ + "shelfMark_sort": "a*OGC 84-001996", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433022691780" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGC 84-1996", - "urn:barcode:33433022691780" + "shelfMark": [ + "*OGC 84-1996" ], + "uri": "i12540040", "identifierV2": [ { - "value": "*OGC 84-1996", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGC 84-1996" }, { - "value": "33433022691780", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433022691780" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433022691780" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGC 84-1996" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGC 84-1996" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGC 84-001996", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540040" + ] }, "sort": [ null @@ -3603,6 +3639,7 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [], "title": [ "Suite no. 1 : 1977" ], @@ -3777,6 +3814,9 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Nalla Kuṟuntokaiyil nāṉilam." ], @@ -3914,88 +3954,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1937", + "urn:barcode:33433061301580" + ], + "physicalLocation": [ + "*OLB 84-1937" + ], + "shelfMark_sort": "a*OLB 84-001937", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301580" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1937", - "urn:barcode:33433061301580" + "shelfMark": [ + "*OLB 84-1937" ], + "uri": "i13783785", "identifierV2": [ { - "value": "*OLB 84-1937", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1937" }, { - "value": "33433061301580", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301580" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301580" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1937" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1937" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001937", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783785" + ] }, "sort": [ null @@ -4057,6 +4097,9 @@ "createdYear": [ 1981 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Lettre du Mexique : pour baryton et piano, 1942" ], @@ -4187,88 +4230,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-395", + "urn:barcode:33433032735007" + ], + "physicalLocation": [ + "JMG 83-395" + ], + "shelfMark_sort": "aJMG 83-000395", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032735007" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-395", - "urn:barcode:33433032735007" + "shelfMark": [ + "JMG 83-395" ], + "uri": "i10942027", "identifierV2": [ { - "value": "JMG 83-395", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-395" }, { - "value": "33433032735007", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032735007" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032735007" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-395" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-395" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000395", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942027" + ] }, "sort": [ null @@ -4324,6 +4367,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" ], @@ -4461,88 +4507,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFX 84-1995", + "urn:barcode:33433002031718" + ], + "physicalLocation": [ + "*OFX 84-1995" + ], + "shelfMark_sort": "a*OFX 84-001995", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002031718" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFX 84-1995", - "urn:barcode:33433002031718" + "shelfMark": [ + "*OFX 84-1995" ], + "uri": "i10000004", "identifierV2": [ { - "value": "*OFX 84-1995", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFX 84-1995" }, { - "value": "33433002031718", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002031718" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002031718" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFX 84-1995" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFX 84-1995" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFX 84-001995", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000004" + ] }, "sort": [ null @@ -4597,6 +4643,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Zwölf Walzer und ein Epilog : für Klavier" ], @@ -4735,88 +4784,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-111", + "urn:barcode:33433032845053" + ], + "physicalLocation": [ + "JMG 83-111" + ], + "shelfMark_sort": "aJMG 83-000111", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032845053" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-111", - "urn:barcode:33433032845053" + "shelfMark": [ + "JMG 83-111" ], + "uri": "i10942028", "identifierV2": [ { - "value": "JMG 83-111", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-111" }, { - "value": "33433032845053", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032845053" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032845053" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-111" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-111" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000111", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942028" + ] }, "sort": [ null @@ -4866,6 +4915,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tolkāppiyam." ], @@ -5009,100 +5061,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1936 v. 1", + "urn:barcode:33433061301572" + ], + "physicalLocation": [ + "*OLB 84-1936" + ], + "shelfMark_sort": "a*OLB 84-1936 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLB 84-1936 v. 1" + ], + "uri": "i13783786", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLB 84-1936 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433061301572" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433061301572" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1936 v. 1", - "urn:barcode:33433061301572" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLB 84-1936 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433061301572", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLB 84-1936" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLB 84-1936 v. 1" - ], - "shelfMark_sort": "a*OLB 84-1936 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i13783786" + ] }, "sort": [ " 1-" @@ -5163,6 +5215,9 @@ "createdYear": [ 1978 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Aurora : sinfonischer Prolog : Partitur" ], @@ -5294,88 +5349,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-113", + "urn:barcode:33433032845079" + ], + "physicalLocation": [ + "JMG 83-113" + ], + "shelfMark_sort": "aJMG 83-000113", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032845079" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-113", - "urn:barcode:33433032845079" + "shelfMark": [ + "JMG 83-113" ], + "uri": "i10942029", "identifierV2": [ { - "value": "JMG 83-113", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-113" }, { - "value": "33433032845079", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032845079" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032845079" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-113" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-113" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000113", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942029" + ] }, "sort": [ null @@ -5431,6 +5486,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." ], @@ -5578,88 +5636,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1935", + "urn:barcode:33433061301564" + ], + "physicalLocation": [ + "*OLB 84-1935" + ], + "shelfMark_sort": "a*OLB 84-001935", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301564" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1935", - "urn:barcode:33433061301564" + "shelfMark": [ + "*OLB 84-1935" ], + "uri": "i13783787", "identifierV2": [ { - "value": "*OLB 84-1935", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1935" }, { - "value": "33433061301564", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301564" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301564" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1935" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1935" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001935", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783787" + ] }, "sort": [ null @@ -5725,6 +5783,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Musica sacra" ], @@ -5856,88 +5917,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-38", + "urn:barcode:33433032709028" + ], + "physicalLocation": [ + "JMF 83-38" + ], + "shelfMark_sort": "aJMF 83-000038", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032709028" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-38", - "urn:barcode:33433032709028" + "shelfMark": [ + "JMF 83-38" ], + "uri": "i10942030", "identifierV2": [ { - "value": "JMF 83-38", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-38" }, { - "value": "33433032709028", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032709028" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032709028" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-38" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-38" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000038", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942030" + ] }, "sort": [ null @@ -5996,6 +6057,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" ], @@ -6135,88 +6199,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFK 84-1944", + "urn:barcode:33433005548676" + ], + "physicalLocation": [ + "*OFK 84-1944" + ], + "shelfMark_sort": "a*OFK 84-001944", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433005548676" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFK 84-1944", - "urn:barcode:33433005548676" + "shelfMark": [ + "*OFK 84-1944" ], + "uri": "i10000005", "identifierV2": [ { - "value": "*OFK 84-1944", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFK 84-1944" }, { - "value": "33433005548676", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433005548676" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005548676" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFK 84-1944" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFK 84-1944" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFK 84-001944", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000005" + ] }, "sort": [ null @@ -6259,6 +6323,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Drei Sonatinen für Klavier" ], @@ -6394,88 +6461,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-107", + "urn:barcode:33433032709697" + ], + "physicalLocation": [ + "JMF 83-107" + ], + "shelfMark_sort": "aJMF 83-000107", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032709697" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-107", - "urn:barcode:33433032709697" + "shelfMark": [ + "JMF 83-107" ], + "uri": "i10942031", "identifierV2": [ { - "value": "JMF 83-107", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-107" }, { - "value": "33433032709697", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032709697" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032709697" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-107" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-107" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000107", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942031" + ] }, "sort": [ null @@ -6531,6 +6598,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" ], @@ -6668,88 +6738,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "identifier": [ + "urn:shelfmark:*OFX 84-1953", + "urn:barcode:33433002031700" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "*OFX 84-1953" ], - "holdingLocation": [ + "shelfMark_sort": "a*OFX 84-001953", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002031700" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFX 84-1953", - "urn:barcode:33433002031700" + "shelfMark": [ + "*OFX 84-1953" ], + "uri": "i10000006", "identifierV2": [ { - "value": "*OFX 84-1953", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFX 84-1953" }, { - "value": "33433002031700", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002031700" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002031700" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFX 84-1953" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFX 84-1953" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFX 84-001953", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000006" + ] }, "sort": [ null @@ -6792,6 +6862,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Drei kleine Sonaten : für Violine solo" ], @@ -6927,88 +7000,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-95", + "urn:barcode:33433032709572" + ], + "physicalLocation": [ + "JMF 83-95" + ], + "shelfMark_sort": "aJMF 83-000095", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032709572" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-95", - "urn:barcode:33433032709572" + "shelfMark": [ + "JMF 83-95" ], + "uri": "i10942032", "identifierV2": [ { - "value": "JMF 83-95", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-95" }, { - "value": "33433032709572", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032709572" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032709572" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-95" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-95" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000095", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942032" + ] }, "sort": [ null @@ -7068,6 +7141,9 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Vaṃśabhāskara : eka adhyayana" ], @@ -7205,88 +7281,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTM 84-1945", + "urn:barcode:33433011094210" + ], + "physicalLocation": [ + "*OKTM 84-1945" + ], + "shelfMark_sort": "a*OKTM 84-001945", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011094210" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTM 84-1945", - "urn:barcode:33433011094210" + "shelfMark": [ + "*OKTM 84-1945" ], + "uri": "i10942033", "identifierV2": [ { - "value": "*OKTM 84-1945", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTM 84-1945" }, { - "value": "33433011094210", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011094210" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011094210" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTM 84-1945" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKTM 84-1945" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTM 84-001945", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942033" + ] }, "sort": [ null @@ -7346,6 +7422,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Cruor : for organ solo, 1977" ], @@ -7493,31 +7572,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-93", + "urn:barcode:33433032709556" + ], + "physicalLocation": [ + "JMF 83-93" + ], + "shelfMark_sort": "aJMF 83-000093", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JMF 83-93" + ], + "uri": "i10942034", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMF 83-93" + }, + { + "type": "bf:Barcode", + "value": "33433032709556" } ], "holdingLocation_packed": [ @@ -7526,55 +7624,36 @@ "idBarcode": [ "33433032709556" ], - "identifier": [ - "urn:shelfmark:JMF 83-93", - "urn:barcode:33433032709556" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMF 83-93", - "type": "bf:ShelfMark" - }, - { - "value": "33433032709556", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Notated music" ], - "physicalLocation": [ - "JMF 83-93" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NP" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMF 83-93" - ], - "shelfMark_sort": "aJMF 83-000093", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942034" + ] }, "sort": [ null @@ -7640,12 +7719,15 @@ "createdYear": [ 1974 ], - "title": [ - "Uṇādi-koṣaḥ" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Uṇādi-koṣaḥ" + ], "shelfMark": [ "*OKA 84-1931" ], @@ -7676,9 +7758,6 @@ "dateStartYear": [ 1974 ], - "idOclc": [ - "NYPG001000014-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -7705,6 +7784,9 @@ "value": "(WaOLN)nyp0200029" } ], + "idOclc": [ + "NYPG001000014-B" + ], "uniformTitle": [ "Uṇādisūtra." ], @@ -7790,88 +7872,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKA 84-1931", + "urn:barcode:33433012968222" + ], + "physicalLocation": [ + "*OKA 84-1931" + ], + "shelfMark_sort": "a*OKA 84-001931", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433012968222" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKA 84-1931", - "urn:barcode:33433012968222" + "shelfMark": [ + "*OKA 84-1931" ], + "uri": "i10000007", "identifierV2": [ { - "value": "*OKA 84-1931", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKA 84-1931" }, { - "value": "33433012968222", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433012968222" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433012968222" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKA 84-1931" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKA 84-1931" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKA 84-001931", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000007" + ] }, "sort": [ null @@ -7914,6 +7996,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Neun Miniaturen : für Klavier : op. 52" ], @@ -8052,88 +8137,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-17", + "urn:barcode:33433032841631" + ], + "physicalLocation": [ + "JMG 83-17" + ], + "shelfMark_sort": "aJMG 83-000017", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032841631" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-17", - "urn:barcode:33433032841631" + "shelfMark": [ + "JMG 83-17" ], + "uri": "i10942035", "identifierV2": [ { - "value": "JMG 83-17", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-17" }, { - "value": "33433032841631", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032841631" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032841631" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-17" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-17" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000017", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942035" + ] }, "sort": [ null @@ -8191,6 +8276,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Buzurgān-i Jahrum : mushtamil bar sharḥ-i aḥvāl va ā̲sār-i rijāl va sukhanvarān va dānishmandān va khushnivīsān va pizishkān-i Jahrum va Khafr" ], @@ -8318,31 +8406,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*OMP 84-2007", + "urn:barcode:33433013173012" + ], + "physicalLocation": [ + "*OMP 84-2007" + ], + "shelfMark_sort": "a*OMP 84-002007", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Text" + "shelfMark": [ + "*OMP 84-2007" ], - "holdingLocation": [ + "uri": "i10000008", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OMP 84-2007" + }, + { + "type": "bf:Barcode", + "value": "33433013173012" } ], "holdingLocation_packed": [ @@ -8351,55 +8458,36 @@ "idBarcode": [ "33433013173012" ], - "identifier": [ - "urn:shelfmark:*OMP 84-2007", - "urn:barcode:33433013173012" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OMP 84-2007", - "type": "bf:ShelfMark" - }, - { - "value": "33433013173012", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OMP 84-2007" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OMP 84-2007" - ], - "shelfMark_sort": "a*OMP 84-002007", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000008" + ] }, "sort": [ null @@ -8450,6 +8538,9 @@ "createdYear": [ 1981 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Psalm settings" ], @@ -8580,88 +8671,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-59", + "urn:barcode:33433032842035" + ], + "physicalLocation": [ + "JMG 83-59" + ], + "shelfMark_sort": "aJMG 83-000059", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842035" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-59", - "urn:barcode:33433032842035" + "shelfMark": [ + "JMG 83-59" ], + "uri": "i10942036", "identifierV2": [ { - "value": "JMG 83-59", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-59" }, { - "value": "33433032842035", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842035" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842035" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-59" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-59" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000059", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942036" + ] }, "sort": [ null @@ -8723,12 +8814,15 @@ "createdYear": [ 1974 ], - "title": [ - "Brhatkathāślokasaṁgraha : a study" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Brhatkathāślokasaṁgraha : a study" + ], "shelfMark": [ "*OKR 84-2006" ], @@ -8744,12 +8838,12 @@ "idLccn": [ "74903273" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Indian civilization series ; no. 4" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Guṇāḍhya", "Agrawala, Vasudeva Sharana", @@ -8761,9 +8855,6 @@ "dateStartYear": [ 1974 ], - "idOclc": [ - "NYPG001000016-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -8790,6 +8881,9 @@ "value": "(WaOLN)nyp0200033" } ], + "idOclc": [ + "NYPG001000016-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -8869,88 +8963,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKR 84-2006", + "urn:barcode:33433011528696" + ], + "physicalLocation": [ + "*OKR 84-2006" + ], + "shelfMark_sort": "a*OKR 84-002006", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011528696" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKR 84-2006", - "urn:barcode:33433011528696" + "shelfMark": [ + "*OKR 84-2006" ], + "uri": "i10000009", "identifierV2": [ { - "value": "*OKR 84-2006", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKR 84-2006" }, { - "value": "33433011528696", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011528696" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011528696" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKR 84-2006" + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKR 84-2006" - ], - "shelfMark_sort": "a*OKR 84-002006", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000009" + ] }, "sort": [ null @@ -9005,6 +9099,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -9108,15 +9205,15 @@ "placeOfPublication": [ "Amsterdam" ], + "titleAlt": [ + "Serenade" + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Serenade" - ], "tableOfContents": [ "Varianten -- Nocturne -- Toccata I -- Intermezzo -- Toccata II." ], @@ -9282,6 +9379,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Srīnārāyaṇatīrthayatīndracaritram[sic]" ], @@ -9419,88 +9519,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKB 84-1928", + "urn:barcode:33433058548433" + ], + "physicalLocation": [ + "*OKB 84-1928" + ], + "shelfMark_sort": "a*OKB 84-001928", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058548433" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKB 84-1928", - "urn:barcode:33433058548433" + "shelfMark": [ + "*OKB 84-1928" ], + "uri": "i12858032", "identifierV2": [ { - "value": "*OKB 84-1928", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKB 84-1928" }, { - "value": "33433058548433", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058548433" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058548433" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKB 84-1928" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKB 84-1928" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKB 84-001928", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12858032" + ] }, "sort": [ null @@ -9550,6 +9650,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Eight studies for guitar : in form of a suite : 1979" ], @@ -9682,88 +9785,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-5", + "urn:barcode:33433032841482" + ], + "physicalLocation": [ + "JMG 83-5" + ], + "shelfMark_sort": "aJMG 83-000005", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032841482" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-5", - "urn:barcode:33433032841482" + "shelfMark": [ + "JMG 83-5" ], + "uri": "i10942040", "identifierV2": [ { - "value": "JMG 83-5", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-5" }, { - "value": "33433032841482", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032841482" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032841482" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-5" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-5" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000005", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942040" + ] }, "sort": [ null @@ -9815,6 +9918,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" ], @@ -9952,31 +10058,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKP 84-1932", + "urn:barcode:33433058153572" + ], + "physicalLocation": [ + "*OKP 84-1932" + ], + "shelfMark_sort": "a*OKP 84-001932", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OKP 84-1932" + ], + "uri": "i13783788", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKP 84-1932" + }, { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:Barcode", + "value": "33433058153572" } ], "holdingLocation_packed": [ @@ -9985,55 +10110,36 @@ "idBarcode": [ "33433058153572" ], - "identifier": [ - "urn:shelfmark:*OKP 84-1932", - "urn:barcode:33433058153572" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OKP 84-1932", - "type": "bf:ShelfMark" - }, - { - "value": "33433058153572", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OKP 84-1932" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKP 84-1932" - ], - "shelfMark_sort": "a*OKP 84-001932", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783788" + ] }, "sort": [ null @@ -10076,6 +10182,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Five sonatas for pianoforte" ], @@ -10216,88 +10325,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-66", + "urn:barcode:33433032842100" + ], + "physicalLocation": [ + "JMG 83-66" + ], + "shelfMark_sort": "aJMG 83-000066", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842100" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-66", - "urn:barcode:33433032842100" + "shelfMark": [ + "JMG 83-66" ], + "uri": "i10942041", "identifierV2": [ { - "value": "JMG 83-66", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-66" }, { - "value": "33433032842100", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842100" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842100" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-66" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-66" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000066", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942041" + ] }, "sort": [ null @@ -10347,6 +10456,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tiru. Vi. Kaliyāṇacuntaraṉār." ], @@ -10487,88 +10599,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1947", + "urn:barcode:33433061301622" + ], + "physicalLocation": [ + "*OLB 84-1947" + ], + "shelfMark_sort": "a*OLB 84-001947", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301622" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1947", - "urn:barcode:33433061301622" + "shelfMark": [ + "*OLB 84-1947" ], + "uri": "i13783789", "identifierV2": [ { - "value": "*OLB 84-1947", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1947" }, { - "value": "33433061301622", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301622" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301622" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1947" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1947" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001947", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783789" + ] }, "sort": [ null @@ -10619,6 +10731,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Encounter" ], @@ -10759,31 +10874,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "identifier": [ + "urn:shelfmark:JMF 83-66", + "urn:barcode:33433032709291" + ], + "physicalLocation": [ + "JMF 83-66" + ], + "shelfMark_sort": "aJMF 83-000066", + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Notated music" + "shelfMark": [ + "JMF 83-66" ], - "holdingLocation": [ + "uri": "i10942042", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMF 83-66" + }, + { + "type": "bf:Barcode", + "value": "33433032709291" } ], "holdingLocation_packed": [ @@ -10792,55 +10926,36 @@ "idBarcode": [ "33433032709291" ], - "identifier": [ - "urn:shelfmark:JMF 83-66", - "urn:barcode:33433032709291" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMF 83-66", - "type": "bf:ShelfMark" - }, - { - "value": "33433032709291", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Notated music" ], - "physicalLocation": [ - "JMF 83-66" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NP" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMF 83-66" - ], - "shelfMark_sort": "aJMF 83-000066", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942042" + ] }, "sort": [ null @@ -10894,6 +11009,9 @@ "dateEndString": [ "1972" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." ], @@ -11038,88 +11156,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKN 84-1926", + "urn:barcode:33433058618392" + ], + "physicalLocation": [ + "*OKN 84-1926" + ], + "shelfMark_sort": "a*OKN 84-001926", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058618392" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKN 84-1926", - "urn:barcode:33433058618392" + "shelfMark": [ + "*OKN 84-1926" ], + "uri": "i13783790", "identifierV2": [ { - "value": "*OKN 84-1926", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKN 84-1926" }, { - "value": "33433058618392", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058618392" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058618392" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKN 84-1926" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKN 84-1926" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKN 84-001926", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783790" + ] }, "sort": [ null @@ -11180,6 +11298,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Capriccio : für 10 Blasinstrumente" ], @@ -11319,88 +11440,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMC 83-9", + "urn:barcode:33433004744128" + ], + "physicalLocation": [ + "JMC 83-9" + ], + "shelfMark_sort": "aJMC 83-000009", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433004744128" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMC 83-9", - "urn:barcode:33433004744128" + "shelfMark": [ + "JMC 83-9" ], + "uri": "i10000010", "identifierV2": [ { - "value": "JMC 83-9", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMC 83-9" }, { - "value": "33433004744128", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433004744128" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433004744128" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMC 83-9" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMC 83-9" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMC 83-000009", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000010" + ] }, "sort": [ null @@ -11465,12 +11586,15 @@ "createdYear": [ 1976 ], - "title": [ - "ʼJam-mgon Rgyal-ba gñis-paʼi Rgyal-tshab Dpal-ldan Bla-ma Dam-pa Khyab-bdag Khri-chen Byaṅ-chub-chos-ʼphel dpal-bzaṅ-poʼi rnam par thar pa Dgaʼ ldan bstan paʼi mdzes rgyab [sic] : the biography of the 69th Khri-chen of Dgaʼ-ʼldan Byaṅ-chub-chos-ʼphel" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "ʼJam-mgon Rgyal-ba gñis-paʼi Rgyal-tshab Dpal-ldan Bla-ma Dam-pa Khyab-bdag Khri-chen Byaṅ-chub-chos-ʼphel dpal-bzaṅ-poʼi rnam par thar pa Dgaʼ ldan bstan paʼi mdzes rgyab [sic] : the biography of the 69th Khri-chen of Dgaʼ-ʼldan Byaṅ-chub-chos-ʼphel" + ], "shelfMark": [ "*OZ+ 82-2361" ], @@ -11498,9 +11622,6 @@ "dateStartYear": [ 1976 ], - "idOclc": [ - "NYPG001000021-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -11527,6 +11648,9 @@ "value": "(WaOLN)nyp0200043" } ], + "idOclc": [ + "NYPG001000021-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -11611,88 +11735,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2361", + "urn:barcode:33433015080645" + ], + "physicalLocation": [ + "*OZ+ 82-2361" + ], + "shelfMark_sort": "a*OZ+ 82-002361", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080645" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2361", - "urn:barcode:33433015080645" + "shelfMark": [ + "*OZ+ 82-2361" ], + "uri": "i10000011", "identifierV2": [ { - "value": "*OZ+ 82-2361", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2361" }, { - "value": "33433015080645", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080645" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080645" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2361" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2361" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002361", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000011" + ] }, "sort": [ null @@ -11735,6 +11859,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Thoughts & feelings : for violin solo" ], @@ -11872,88 +11999,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 82-688", + "urn:barcode:33433032707568" + ], + "physicalLocation": [ + "JMG 82-688" + ], + "shelfMark_sort": "aJMG 82-000688", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032707568" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 82-688", - "urn:barcode:33433032707568" + "shelfMark": [ + "JMG 82-688" ], + "uri": "i10942043", "identifierV2": [ { - "value": "JMG 82-688", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 82-688" }, { - "value": "33433032707568", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032707568" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032707568" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 82-688" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 82-688" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 82-000688", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942043" + ] }, "sort": [ null @@ -12019,12 +12146,15 @@ "createdYear": [ 1976 ], - "title": [ - "Dpal Kye rdo rjeʼi phyi naṅ bskyed rim ñams len gnad kyi gsal byed sñan brgyud bstan pa rgyas paʼi ñin byed : a detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Dpal Kye rdo rjeʼi phyi naṅ bskyed rim ñams len gnad kyi gsal byed sñan brgyud bstan pa rgyas paʼi ñin byed : a detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra" + ], "shelfMark": [ "*OZ+ 82-2362" ], @@ -12052,9 +12182,6 @@ "dateStartYear": [ 1976 ], - "idOclc": [ - "NYPG001000022-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -12081,6 +12208,9 @@ "value": "(WaOLN)nyp0200045" } ], + "idOclc": [ + "NYPG001000022-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -12133,17 +12263,17 @@ "placeOfPublication": [ "New Delhi" ], + "titleAlt": [ + "Rgyal ba rdo rje ʼchan Kun dgaʼ bzaṅ poʼi rnam par thar pa legs bśad chu bo ʼdus paʼi rgya mtsho yon tan yid bźin nor buʼi byuṅ gnas.", + "Detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra.", + "Life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po." + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Rgyal ba rdo rje ʼchan Kun dgaʼ bzaṅ poʼi rnam par thar pa legs bśad chu bo ʼdus paʼi rgya mtsho yon tan yid bźin nor buʼi byuṅ gnas.", - "Detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra.", - "Life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po." - ], "dimensions": [ "28 x 37 cm." ] @@ -12170,31 +12300,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2362", + "urn:barcode:33433015080413" + ], + "physicalLocation": [ + "*OZ+ 82-2362" + ], + "shelfMark_sort": "a*OZ+ 82-002362", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OZ+ 82-2362" + ], + "uri": "i10000012", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2362" + }, { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:Barcode", + "value": "33433015080413" } ], "holdingLocation_packed": [ @@ -12203,55 +12352,36 @@ "idBarcode": [ "33433015080413" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2362", - "urn:barcode:33433015080413" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OZ+ 82-2362", - "type": "bf:ShelfMark" - }, - { - "value": "33433015080413", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OZ+ 82-2362" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OZ+ 82-2362" - ], - "shelfMark_sort": "a*OZ+ 82-002362", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000012" + ] }, "sort": [ null @@ -12307,6 +12437,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello" ], @@ -12450,88 +12583,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-79", + "urn:barcode:33433032842233" + ], + "physicalLocation": [ + "JMG 83-79" + ], + "shelfMark_sort": "aJMG 83-000079", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842233" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-79", - "urn:barcode:33433032842233" + "shelfMark": [ + "JMG 83-79" ], + "uri": "i10942044", "identifierV2": [ { - "value": "JMG 83-79", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-79" }, { - "value": "33433032842233", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842233" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842233" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-79" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-79" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000079", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942044" + ] }, "sort": [ null @@ -12587,6 +12720,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Bkra śis Tshe riṅ mai sgrub skor sogs : a collection of texts outlining the rites of the Five Long Lived Sisters and other highly esoteric rituals." ], @@ -12721,88 +12857,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2382", + "urn:barcode:33433015080439" + ], + "physicalLocation": [ + "*OZ+ 82-2382" + ], + "shelfMark_sort": "a*OZ+ 82-002382", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080439" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2382", - "urn:barcode:33433015080439" + "shelfMark": [ + "*OZ+ 82-2382" ], + "uri": "i10000013", "identifierV2": [ { - "value": "*OZ+ 82-2382", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2382" }, { - "value": "33433015080439", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080439" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080439" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2382" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2382" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002382", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000013" + ] }, "sort": [ null @@ -12853,6 +12989,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Symphony, op. 26 : full score" ], @@ -12996,31 +13135,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "identifier": [ + "urn:shelfmark:JMG 83-80", + "urn:barcode:33433032842241" + ], + "physicalLocation": [ + "JMG 83-80" + ], + "shelfMark_sort": "aJMG 83-000080", + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Notated music" + "shelfMark": [ + "JMG 83-80" ], - "holdingLocation": [ + "uri": "i10942045", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMG 83-80" + }, + { + "type": "bf:Barcode", + "value": "33433032842241" } ], "holdingLocation_packed": [ @@ -13029,55 +13187,36 @@ "idBarcode": [ "33433032842241" ], - "identifier": [ - "urn:shelfmark:JMG 83-80", - "urn:barcode:33433032842241" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMG 83-80", - "type": "bf:ShelfMark" - }, - { - "value": "33433032842241", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Notated music" ], - "physicalLocation": [ - "JMG 83-80" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NP" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMG 83-80" - ], - "shelfMark_sort": "aJMG 83-000080", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942045" + ] }, "sort": [ null @@ -13138,6 +13277,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "The rnam thar and mgur ʼbum of ʼBaʼ-ra-ba, with his Sgrub pa ñams su blaṅ baʼi lag len dgos ʼdod ʼbyuṅ baʼi gter mdzod." ], @@ -13280,88 +13422,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2381", + "urn:barcode:33433015080421" + ], + "physicalLocation": [ + "*OZ+ 82-2381" + ], + "shelfMark_sort": "a*OZ+ 82-002381", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080421" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2381", - "urn:barcode:33433015080421" + "shelfMark": [ + "*OZ+ 82-2381" ], + "uri": "i10000014", "identifierV2": [ { - "value": "*OZ+ 82-2381", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2381" }, { - "value": "33433015080421", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080421" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080421" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2381" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2381" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002381", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000014" + ] }, "sort": [ null @@ -13412,6 +13554,9 @@ "createdYear": [ 1977 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972" ], @@ -13560,88 +13705,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-75", + "urn:barcode:33433032842191" + ], + "physicalLocation": [ + "JMG 83-75" + ], + "shelfMark_sort": "aJMG 83-000075", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842191" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-75", - "urn:barcode:33433032842191" + "shelfMark": [ + "JMG 83-75" ], + "uri": "i10942046", "identifierV2": [ { - "value": "JMG 83-75", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-75" }, { - "value": "33433032842191", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842191" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842191" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-75" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-75" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000075", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942046" + ] }, "sort": [ null diff --git a/test/fixtures/query-35d68f33793bfb9d2fbdba771c57e684.json b/test/fixtures/query-35d68f33793bfb9d2fbdba771c57e684.json index a863c97c..7a469b15 100644 --- a/test/fixtures/query-35d68f33793bfb9d2fbdba771c57e684.json +++ b/test/fixtures/query-35d68f33793bfb9d2fbdba771c57e684.json @@ -1,5 +1,5 @@ { - "took": 10, + "took": 11, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-387cd36e697980db9c6df08559fb18ad.json b/test/fixtures/query-387cd36e697980db9c6df08559fb18ad.json index a7fa8e58..af7f954b 100644 --- a/test/fixtures/query-387cd36e697980db9c6df08559fb18ad.json +++ b/test/fixtures/query-387cd36e697980db9c6df08559fb18ad.json @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.631155, + "max_score": 15.73737, "hits": [ { "_index": "resources-2024-10-22", "_id": "b10011374", - "_score": 15.631155, + "_score": 15.73737, "_source": { "extent": [ "2 v. illus." @@ -63,6 +63,10 @@ "dateEndString": [ "1828" ], + "buildingLocationIds": [ + "ma", + "rc" + ], "title": [ "The table book" ], diff --git a/test/fixtures/query-3af324167ba414fdc93d9653363b3467.json b/test/fixtures/query-3af324167ba414fdc93d9653363b3467.json index e8dfdee1..50d9b459 100644 --- a/test/fixtures/query-3af324167ba414fdc93d9653363b3467.json +++ b/test/fixtures/query-3af324167ba414fdc93d9653363b3467.json @@ -1,5 +1,5 @@ { - "took": 80, + "took": 134, "timed_out": false, "_shards": { "total": 2, @@ -17,7 +17,7 @@ { "_index": "resources-2024-10-22", "_id": "b20970375", - "_score": 4068.2793, + "_score": 3991.9192, "_source": { "extent": [ "119 pages : illustrations (color) ;" @@ -56,12 +56,15 @@ "createdYear": [ 2015 ], - "title": [ - "Toast" + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Toast" + ], "shelfMark": [ "JFF 16-815" ], @@ -86,9 +89,6 @@ "dateStartYear": [ 2015 ], - "idOclc": [ - "915941587" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -123,19 +123,15 @@ "value": "(OCoLC)905521916" } ], + "idOclc": [ + "915941587" + ], "popularity": 4, "updatedAt": 1722434139301, "publicationStatement": [ "London : Phaidon Press Limited, 2015.", "©2015" ], - "genreForm": [ - "Cookbooks." - ], - "idIsbn": [ - "9780714869551", - "0714869554" - ], "identifier": [ "urn:shelfmark:JFF 16-815", "urn:bnum:20970375", @@ -146,6 +142,13 @@ "urn:identifier:(OCoLC)915941587", "urn:identifier:(OCoLC)905521916" ], + "genreForm": [ + "Cookbooks." + ], + "idIsbn": [ + "9780714869551", + "0714869554" + ], "numCheckinCardItems": [ 0 ], @@ -180,15 +183,15 @@ "placeOfPublication": [ "London" ], + "titleAlt": [ + "Toast : the cookbook" + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Toast : the cookbook" - ], "dimensions": [ "25 cm" ], @@ -198,9 +201,12 @@ ] }, "sort": [ - 4068.2793, + 3991.9192, "b20970375" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -219,85 +225,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFF 16-815", + "urn:barcode:33433118568447" + ], + "physicalLocation": [ + "JFF 16-815" + ], + "shelfMark_sort": "aJFF 16-000815", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433118568447" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFF 16-815", - "urn:barcode:33433118568447" + "shelfMark": [ + "JFF 16-815" ], + "uri": "i34162229", "identifierV2": [ { - "value": "JFF 16-815", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFF 16-815" }, { - "value": "33433118568447", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433118568447" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433118568447" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFF 16-815" - ], "requestable": [ true ], - "shelfMark": [ - "JFF 16-815" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFF 16-000815", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i34162229" + ] }, "sort": [ null @@ -311,7 +317,7 @@ { "_index": "resources-2024-10-22", "_id": "b17982563", - "_score": 3695.4714, + "_score": 3712.5425, "_source": { "nyplSource": [ "sierra-nypl" @@ -334,6 +340,9 @@ "createdYear": [ null ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Toast" ], @@ -421,9 +430,12 @@ ] }, "sort": [ - 3695.4714, + 3712.5425, "b17982563" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -442,79 +454,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:p", - "label": "Permit needed" - } - ], "accessMessage_packed": [ "accessMessage:p||Permit needed" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1112", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection" } ], + "identifier": [ + "urn:shelfmark:MEMZ (Featheringill) 09-981" + ], + "physicalLocation": [ + "MEMZ (Featheringill) 09-981" + ], + "shelfMark_sort": "aMEMZ (Featheringill) 09-000981", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mauu2", - "label": "Schwarzman Building - Print Collection Room 308" + "id": "accessMessage:p", + "label": "Permit needed" } ], - "holdingLocation_packed": [ - "loc:mauu2||Schwarzman Building - Print Collection Room 308" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:MEMZ (Featheringill) 09-981" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Featheringill%2C+Julia.&CallNumber=MEMZ+%28Featheringill%29+09-981&Date=++++&Form=30&Genre=book+non-circ&ItemInfo1=Permit+needed&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db17982563&ItemISxN=i174467412&ItemPlace=Ithaca%2C+NY%3A+Julia+Featheringill%2C+2001&Location=Schwarzman+Prints+and+Photographs+Division&ReferenceNumber=b17982563x&Site=SASPR&Title=Toast" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "MEMZ (Featheringill) 09-981" ], + "uri": "i17446741", "identifierV2": [ { - "value": "MEMZ (Featheringill) 09-981", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "MEMZ (Featheringill) 09-981" } ], - "owner": [ - { - "id": "orgs:1112", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection" - } + "holdingLocation_packed": [ + "loc:mauu2||Schwarzman Building - Print Collection Room 308" ], "owner_packed": [ "orgs:1112||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection" ], - "physicalLocation": [ - "MEMZ (Featheringill) 09-981" - ], "requestable": [ false ], - "shelfMark": [ - "MEMZ (Featheringill) 09-981" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mauu2", + "label": "Schwarzman Building - Print Collection Room 308" + } ], - "shelfMark_sort": "aMEMZ (Featheringill) 09-000981", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17446741", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Featheringill%2C+Julia.&CallNumber=MEMZ+%28Featheringill%29+09-981&Date=++++&Form=30&Genre=book+non-circ&ItemInfo1=Permit+needed&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db17982563&ItemISxN=i174467412&ItemPlace=Ithaca%2C+NY%3A+Julia+Featheringill%2C+2001&Location=Schwarzman+Prints+and+Photographs+Division&ReferenceNumber=b17982563x&Site=SASPR&Title=Toast" ] }, "sort": [ @@ -529,7 +541,7 @@ { "_index": "resources-2024-10-22", "_id": "b11361121", - "_score": 3693.8857, + "_score": 3710.9614, "_source": { "extent": [ "191 p. ;" @@ -555,6 +567,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Toast" ], @@ -653,9 +668,12 @@ ] }, "sort": [ - 3693.8857, + 3710.9614, "b11361121" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -674,70 +692,27 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" - ], - "idBarcode": [ - "33433044323693" - ], "identifier": [ "urn:shelfmark:*QPM 90-2088", "urn:barcode:33433044323693" ], - "identifierV2": [ - { - "value": "*QPM 90-2088", - "type": "bf:ShelfMark" - }, - { - "value": "33433044323693", - "type": "bf:Barcode" - } - ], "m2CustomerCode": [ "XA" ], "physicalLocation": [ "*QPM 90-2088" ], - "requestable": [ - true - ], - "shelfMark": [ - "*QPM 90-2088" - ], "shelfMark_sort": "a*QPM 90-002088", - "status": [ + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "status:a", - "label": "Available" + "id": "accessMessage:1", + "label": "Use in library" } ], "status_packed": [ @@ -746,7 +721,50 @@ "type": [ "bf:Item" ], - "uri": "i13172719" + "shelfMark": [ + "*QPM 90-2088" + ], + "uri": "i13172719", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*QPM 90-2088" + }, + { + "type": "bf:Barcode", + "value": "33433044323693" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "idBarcode": [ + "33433044323693" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -760,7 +778,7 @@ { "_index": "resources-2024-10-22", "_id": "b17759113", - "_score": 3688.8984, + "_score": 3704.9863, "_source": { "extent": [ "1 film reel (12 min.) : sd., col. ;" @@ -805,6 +823,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Toast" ], @@ -890,7 +911,7 @@ ] }, "sort": [ - 3688.8984, + 3704.9863, "b17759113" ], "inner_hits": { @@ -911,93 +932,93 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:a", - "label": "By appointment only" - } - ], "accessMessage_packed": [ "accessMessage:a||By appointment only" ], - "catalogItemType": [ - { - "id": "catalogItemType:72", - "label": "rfvc - film" - } + "identifier": [ + "urn:shelfmark:M16 5213 T C.1 REEL 1 OF 1 C.1 REEL 1 OF 1", + "urn:barcode:33433081452009" + ], + "physicalLocation": [ + "M16 5213 T C.1 REEL 1 OF 1" ], + "shelfMark_sort": "aM16 5213 T C.1 REEL 1 OF 1 C.1 REEL 1 OF 000001", "catalogItemType_packed": [ "catalogItemType:72||rfvc - film" ], - "enumerationChronology": [ - "C.1 REEL 1 OF 1" + "accessMessage": [ + { + "id": "accessMessage:a", + "label": "By appointment only" + } + ], + "status_packed": [ + "status:a||Available" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=M16+5213+T+C.1+REEL+1+OF+1&Date=1974&Form=30&Genre=rfvc+-+film&ItemInfo1=By+appointment+only&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db17759113&ItemISxN=i239658231&ItemNumber=33433081452009&ItemPlace=%5BS.l.%5D&ItemPublisher=%5Bs.n.%5D%2C+1974.&ItemVolume=C.1+REEL+1+OF+1&Location=ReCAP&ReferenceNumber=b177591134&Site=LPARF&SubLocation=rcpr8&Title=Toast" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Moving image" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "M16 5213 T C.1 REEL 1 OF 1 C.1 REEL 1 OF 1" + ], + "uri": "i23965823", + "identifierV2": [ { - "id": "loc:rcpr8", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "M16 5213 T C.1 REEL 1 OF 1 C.1 REEL 1 OF 1" + }, + { + "type": "bf:Barcode", + "value": "33433081452009" } ], "holdingLocation_packed": [ "loc:rcpr8||Offsite" ], + "enumerationChronology": [ + "C.1 REEL 1 OF 1" + ], "idBarcode": [ "33433081452009" ], - "identifier": [ - "urn:shelfmark:M16 5213 T C.1 REEL 1 OF 1 C.1 REEL 1 OF 1", - "urn:barcode:33433081452009" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "M16 5213 T C.1 REEL 1 OF 1 C.1 REEL 1 OF 1", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433081452009", - "type": "bf:Barcode" + "id": "catalogItemType:72", + "label": "rfvc - film" } ], - "physicalLocation": [ - "M16 5213 T C.1 REEL 1 OF 1" + "formatLiteral": [ + "Moving image" + ], + "holdingLocation": [ + { + "id": "loc:rcpr8", + "label": "Offsite" + } ], "recapCustomerCode": [ "NN" ], - "requestable": [ - true - ], - "shelfMark": [ - "M16 5213 T C.1 REEL 1 OF 1 C.1 REEL 1 OF 1" - ], - "shelfMark_sort": "aM16 5213 T C.1 REEL 1 OF 1 C.1 REEL 1 OF 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i23965823", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=M16+5213+T+C.1+REEL+1+OF+1&Date=1974&Form=30&Genre=rfvc+-+film&ItemInfo1=By+appointment+only&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db17759113&ItemISxN=i239658231&ItemNumber=33433081452009&ItemPlace=%5BS.l.%5D&ItemPublisher=%5Bs.n.%5D%2C+1974.&ItemVolume=C.1+REEL+1+OF+1&Location=ReCAP&ReferenceNumber=b177591134&Site=LPARF&SubLocation=rcpr8&Title=Toast" ] }, "sort": [ @@ -1012,7 +1033,7 @@ { "_index": "resources-2024-10-22", "_id": "pb9928178733506421", - "_score": 3686.9685, + "_score": 3703.459, "_source": { "extent": [ "191 p. ;" @@ -1038,6 +1059,9 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Toast" ], @@ -1144,7 +1168,7 @@ ] }, "sort": [ - 3686.9685, + 3703.459, "pb9928178733506421" ], "inner_hits": { @@ -1165,79 +1189,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0003", + "label": "Princeton University Library" } ], + "identifier": [ + "urn:shelfmark:PG7158.H43 T637 1967", + "urn:barcode:32101075229904" + ], + "physicalLocation": [ + "PG7158.H43 T637 1967" + ], + "shelfMark_sort": "aPG7158.H43 T637 001967", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } ], - "idBarcode": [ - "32101075229904" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:PG7158.H43 T637 1967", - "urn:barcode:32101075229904" + "type": [ + "bf:Item" ], + "shelfMark": [ + "PG7158.H43 T637 1967" + ], + "uri": "pi23546661110006421", "identifierV2": [ { - "value": "PG7158.H43 T637 1967", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PG7158.H43 T637 1967" }, { - "value": "32101075229904", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "32101075229904" } ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } + "idBarcode": [ + "32101075229904" ], "owner_packed": [ "orgs:0003||Princeton University Library" ], - "physicalLocation": [ - "PG7158.H43 T637 1967" - ], - "recapCustomerCode": [ - "PA" - ], "requestable": [ true ], - "shelfMark": [ - "PG7158.H43 T637 1967" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "PA" ], - "shelfMark_sort": "aPG7158.H43 T637 001967", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23546661110006421" + ] }, "sort": [ null @@ -1251,7 +1275,7 @@ { "_index": "resources-2024-10-22", "_id": "pb9928479343506421", - "_score": 3686.2773, + "_score": 3702.77, "_source": { "extent": [ "103 p. ;" @@ -1284,6 +1308,9 @@ "createdYear": [ 1999 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Toast" ], @@ -1411,7 +1438,7 @@ ] }, "sort": [ - 3686.2773, + 3702.77, "pb9928479343506421" ], "inner_hits": { @@ -1432,79 +1459,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0003", + "label": "Princeton University Library" } ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "formatLiteral": [ - "Text" - ], - "idBarcode": [ - "32101095377683" - ], "identifier": [ "urn:shelfmark:PR6052.E176 T627 1999", "urn:barcode:32101095377683" ], - "identifierV2": [ - { - "value": "PR6052.E176 T627 1999", - "type": "bf:ShelfMark" - }, - { - "value": "32101095377683", - "type": "bf:Barcode" - } + "physicalLocation": [ + "PR6052.E176 T627 1999" ], - "owner": [ + "shelfMark_sort": "aPR6052.E176 T627 001999", + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "accessMessage": [ { - "id": "orgs:0003", - "label": "Princeton University Library" + "id": "accessMessage:1", + "label": "Use in library" } ], - "owner_packed": [ - "orgs:0003||Princeton University Library" + "status_packed": [ + "status:a||Available" ], - "physicalLocation": [ + "type": [ + "bf:Item" + ], + "shelfMark": [ "PR6052.E176 T627 1999" ], - "recapCustomerCode": [ - "PA" + "uri": "pi23486469710006421", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "PR6052.E176 T627 1999" + }, + { + "type": "bf:Barcode", + "value": "32101095377683" + } + ], + "idBarcode": [ + "32101095377683" + ], + "owner_packed": [ + "orgs:0003||Princeton University Library" ], "requestable": [ true ], - "shelfMark": [ - "PR6052.E176 T627 1999" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "PA" ], - "shelfMark_sort": "aPR6052.E176 T627 001999", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23486469710006421" + ] }, "sort": [ null @@ -1518,7 +1545,7 @@ { "_index": "resources-2024-10-22", "_id": "hb990052336220203941", - "_score": 2113.39, + "_score": 2121.0347, "_source": { "extent": [ "187 p." @@ -1551,6 +1578,9 @@ "createdYear": [ 1964 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Toast." ], @@ -1654,7 +1684,7 @@ ] }, "sort": [ - 2113.39, + 2121.0347, "hb990052336220203941" ], "inner_hits": { @@ -1675,79 +1705,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0004", + "label": "Harvard Library" } ], + "identifier": [ + "urn:shelfmark:Slav 7147.24.2110", + "urn:barcode:HNAASE" + ], + "physicalLocation": [ + "Slav 7147.24.2110" + ], + "shelfMark_sort": "aSlav 7147.24.002110", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "idBarcode": [ - "HNAASE" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:Slav 7147.24.2110", - "urn:barcode:HNAASE" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "Slav 7147.24.2110" ], + "uri": "hi231942284890003941", "identifierV2": [ { - "value": "Slav 7147.24.2110", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Slav 7147.24.2110" }, { - "value": "HNAASE", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "HNAASE" } ], - "owner": [ - { - "id": "orgs:0004", - "label": "Harvard Library" - } + "idBarcode": [ + "HNAASE" ], "owner_packed": [ "orgs:0004||Harvard Library" ], - "physicalLocation": [ - "Slav 7147.24.2110" - ], - "recapCustomerCode": [ - "HW" - ], "requestable": [ true ], - "shelfMark": [ - "Slav 7147.24.2110" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "HW" ], - "shelfMark_sort": "aSlav 7147.24.002110", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "hi231942284890003941" + ] }, "sort": [ null @@ -1761,7 +1791,7 @@ { "_index": "resources-2024-10-22", "_id": "b21290385", - "_score": 598.51575, + "_score": 599.30853, "_source": { "note": [ { @@ -1890,7 +1920,7 @@ ] }, "sort": [ - 598.51575, + 599.30853, "b21290385" ], "matched_queries": [ @@ -1989,7 +2019,7 @@ { "_index": "resources-2024-10-22", "_id": "b21501833", - "_score": 598.51575, + "_score": 599.30853, "_source": { "note": [ { @@ -2127,7 +2157,7 @@ ] }, "sort": [ - 598.51575, + 599.30853, "b21501833" ], "matched_queries": [ @@ -2226,7 +2256,7 @@ { "_index": "resources-2024-10-22", "_id": "b14570561", - "_score": 595.42615, + "_score": 596.21484, "_source": { "extent": [ "[97] p., ill. ;" @@ -2267,6 +2297,7 @@ "createdYear": [ 1905 ], + "buildingLocationIds": [], "title": [ "Toast book" ], @@ -2367,7 +2398,7 @@ ] }, "sort": [ - 595.42615, + 596.21484, "b14570561" ], "inner_hits": { @@ -2386,7 +2417,7 @@ { "_index": "resources-2024-10-22", "_id": "b16671423", - "_score": 580.6608, + "_score": 580.9078, "_source": { "extent": [ "1 folder" @@ -2419,6 +2450,9 @@ "createdYear": [ null ], + "buildingLocationIds": [ + "pa" + ], "title": [ "Roma's Toast (song)" ], @@ -2505,9 +2539,12 @@ ] }, "sort": [ - 580.6608, + 580.9078, "b16671423" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -2526,31 +2563,47 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "identifier": [ + "urn:shelfmark:M-Clippings (Subjects)", + "urn:barcode:33433087491175" + ], + "physicalLocation": [ + "M-Clippings (Subjects)" + ], + "shelfMark_sort": "aM-Clippings (Subjects)", + "catalogItemType_packed": [ + "catalogItemType:22||clipping files" + ], "accessMessage": [ { "id": "accessMessage:u", "label": "Supervised use" } ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" + "status_packed": [ + "status:a||Available" ], - "catalogItemType": [ - { - "id": "catalogItemType:22", - "label": "clipping files" - } + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=M-Clippings+%28Subjects%29&Date=++++&Form=30&Genre=clipping+files&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db16671423&ItemISxN=i17393514x&ItemNumber=33433087491175&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b166714239&Site=LPAMR&Title=Roma%27s+Toast+%28song%29+%3A+clippings" ], - "catalogItemType_packed": [ - "catalogItemType:22||clipping files" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Text" + "shelfMark": [ + "M-Clippings (Subjects)" ], - "holdingLocation": [ + "uri": "i17393514", + "identifierV2": [ { - "id": "loc:pam38", - "label": "Performing Arts Research Collections - Music" + "type": "bf:ShelfMark", + "value": "M-Clippings (Subjects)" + }, + { + "type": "bf:Barcode", + "value": "33433087491175" } ], "holdingLocation_packed": [ @@ -2559,45 +2612,29 @@ "idBarcode": [ "33433087491175" ], - "identifier": [ - "urn:shelfmark:M-Clippings (Subjects)", - "urn:barcode:33433087491175" + "requestable": [ + false ], - "identifierV2": [ - { - "value": "M-Clippings (Subjects)", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433087491175", - "type": "bf:Barcode" + "id": "catalogItemType:22", + "label": "clipping files" } ], - "physicalLocation": [ - "M-Clippings (Subjects)" - ], - "requestable": [ - false + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "M-Clippings (Subjects)" + "holdingLocation": [ + { + "id": "loc:pam38", + "label": "Performing Arts Research Collections - Music" + } ], - "shelfMark_sort": "aM-Clippings (Subjects)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17393514", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=M-Clippings+%28Subjects%29&Date=++++&Form=30&Genre=clipping+files&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db16671423&ItemISxN=i17393514x&ItemNumber=33433087491175&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b166714239&Site=LPAMR&Title=Roma%27s+Toast+%28song%29+%3A+clippings" ] }, "sort": [ @@ -2611,152 +2648,47 @@ }, { "_index": "resources-2024-10-22", - "_id": "b18576841", - "_score": 569.5166, + "_id": "b21965138", + "_score": 568.7407, "_source": { "extent": [ - "386 pp." + "1 folder. " ], - "publicationStatement": [ - "Wolowiec : Czarne, 2010" + "note": [ + { + "noteType": "Note", + "label": "Programs for productions of the play Toast by Henry Filloux-Bennett. Based on the book by Nigel Slater.", + "type": "bf:Note" + } ], - "idIsbn": [ - "9788373561940" + "genreForm": [ + "Programs." ], "identifier": [ - "urn:bnum:18576841", - "urn:isbn:9788373561940" + "urn:shelfmark:*T-PRG (Toast (Filloux-Bennett))", + "urn:bnum:21965138" ], "nyplSource": [ "sierra-nypl" ], - "numCheckinCardItems": [ - 0 + "subjectLiteral_exploded": [ + "Filloux-Bennett, Henry", + "Slater, Nigel" ], "numItemDatesParsed": [ 0 ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ + "numCheckinCardItems": [ + 0 + ], + "carrierType": [ { "id": "carriertypes:nc", "label": "volume" } ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], "numItemsTotal": [ - 0 - ], - "title": [ - "Toast za przodkow" - ], - "titleDisplay": [ - "Toast za przodkow" - ], - "type": [ - "nypl:Item" - ], - "uri": "b18576841", - "numItemVolumesParsed": [ - 0 - ], - "creatorLiteral": [ - "Gorecki, Wojciech." - ], - "numElectronicResources": [ - 0 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "18576841" - }, - { - "type": "bf:Isbn", - "value": "9788373561940" - } - ], - "placeOfPublication": [ - "Wolowiec : Czarne, 2010" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "idIsbn_clean": [ - "9788373561940" - ], - "updatedAt": 1711654548895 - }, - "sort": [ - 569.5166, - "b18576841" - ], - "inner_hits": { - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-10-22", - "_id": "b21965138", - "_score": 568.8256, - "_source": { - "extent": [ - "1 folder. " - ], - "genreForm": [ - "Programs." - ], - "identifier": [ - "urn:shelfmark:*T-PRG (Toast (Filloux-Bennett))", - "urn:bnum:21965138" - ], - "note": [ - { - "noteType": "Note", - "label": "Programs for productions of the play Toast by Henry Filloux-Bennett. Based on the book by Nigel Slater.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Filloux-Bennett, Henry", - "Slater, Nigel" - ], - "numCheckinCardItems": [ - 0 - ], - "numItemDatesParsed": [ - 0 - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } + 1 ], "mediaType": [ { @@ -2764,8 +2696,8 @@ "label": "unmediated" } ], - "numItemsTotal": [ - 1 + "buildingLocationIds": [ + "pa" ], "subjectLiteral": [ "Filloux-Bennett, Henry.", @@ -2774,19 +2706,19 @@ "title": [ "Toast (Filloux-Bennett)" ], - "titleDisplay": [ - "Toast (Filloux-Bennett) : programs." - ], "type": [ "nypl:Item" ], + "titleDisplay": [ + "Toast (Filloux-Bennett) : programs." + ], "shelfMark": [ "*T-PRG (Toast (Filloux-Bennett))" ], - "uri": "b21965138", "numItemVolumesParsed": [ 0 ], + "uri": "b21965138", "numElectronicResources": [ 0 ], @@ -2803,9 +2735,12 @@ "updatedAt": 1718675877314 }, "sort": [ - 568.8256, + 568.7407, "b21965138" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -2824,75 +2759,75 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], "accessMessage_packed": [ "accessMessage:u||Supervised use" ], - "catalogItemType": [ - { - "id": "catalogItemType:21", - "label": "archival material" - } + "identifier": [ + "urn:shelfmark:*T-PRG (Toast (Filloux-Bennett))", + "urn:barcode:33433120459403" + ], + "physicalLocation": [ + "*T-PRG (Toast (Filloux-Bennett))" ], + "shelfMark_sort": "a*T-PRG (Toast (Filloux-Bennett))", "catalogItemType_packed": [ "catalogItemType:21||archival material" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:pat38", - "label": "Performing Arts Research Collections - Theatre" + "id": "accessMessage:u", + "label": "Supervised use" } ], - "holdingLocation_packed": [ - "loc:pat38||Performing Arts Research Collections - Theatre" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433120459403" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*T-PRG+%28Toast+%28Filloux-Bennett%29%29&Form=30&Genre=archival+material&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db21965138&ItemISxN=i373192253&ItemNumber=33433120459403&Location=Performing+Arts+Theatre+Division&ReferenceNumber=b219651383&Site=LPATH&Title=Toast+%28Filloux-Bennett%29+%3A+programs." ], - "identifier": [ - "urn:shelfmark:*T-PRG (Toast (Filloux-Bennett))", - "urn:barcode:33433120459403" + "type": [ + "bf:Item" ], + "shelfMark": [ + "*T-PRG (Toast (Filloux-Bennett))" + ], + "uri": "i37319225", "identifierV2": [ { - "value": "*T-PRG (Toast (Filloux-Bennett))", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*T-PRG (Toast (Filloux-Bennett))" }, { - "value": "33433120459403", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433120459403" } ], - "physicalLocation": [ - "*T-PRG (Toast (Filloux-Bennett))" + "holdingLocation_packed": [ + "loc:pat38||Performing Arts Research Collections - Theatre" + ], + "idBarcode": [ + "33433120459403" ], "requestable": [ false ], - "shelfMark": [ - "*T-PRG (Toast (Filloux-Bennett))" + "catalogItemType": [ + { + "id": "catalogItemType:21", + "label": "archival material" + } + ], + "holdingLocation": [ + { + "id": "loc:pat38", + "label": "Performing Arts Research Collections - Theatre" + } ], - "shelfMark_sort": "a*T-PRG (Toast (Filloux-Bennett))", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37319225", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*T-PRG+%28Toast+%28Filloux-Bennett%29%29&Form=30&Genre=archival+material&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db21965138&ItemISxN=i373192253&ItemNumber=33433120459403&Location=Performing+Arts+Theatre+Division&ReferenceNumber=b219651383&Site=LPATH&Title=Toast+%28Filloux-Bennett%29+%3A+programs." ] }, "sort": [ @@ -2906,55 +2841,167 @@ }, { "_index": "resources-2024-10-22", - "_id": "b18806309", - "_score": 568.1914, + "_id": "b18576841", + "_score": 568.4298, "_source": { "extent": [ - "386 p. : map ;" + "386 pp." ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (p. 383-[387])", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "In Polish.", - "type": "bf:Note" - } + "publicationStatement": [ + "Wolowiec : Czarne, 2010" + ], + "idIsbn": [ + "9788373561940" + ], + "identifier": [ + "urn:bnum:18576841", + "urn:isbn:9788373561940" ], "nyplSource": [ "sierra-nypl" ], - "subjectLiteral_exploded": [ - "Caucasus", - "Caucasus -- Civilization" - ], "numItemDatesParsed": [ 0 ], - "publisherLiteral": [ - "Wydawn. Czarne" + "numCheckinCardItems": [ + 0 ], - "language": [ + "materialType": [ { - "id": "lang:pol", - "label": "Polish" + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" } ], "numItemsTotal": [ - 1 + 0 ], - "createdYear": [ - 2010 + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } ], + "buildingLocationIds": [], "title": [ - "Toast za przodków" + "Toast za przodkow" + ], + "type": [ + "nypl:Item" + ], + "titleDisplay": [ + "Toast za przodkow" + ], + "numItemVolumesParsed": [ + 0 + ], + "uri": "b18576841", + "creatorLiteral": [ + "Gorecki, Wojciech." + ], + "numElectronicResources": [ + 0 + ], + "identifierV2": [ + { + "type": "nypl:Bnumber", + "value": "18576841" + }, + { + "type": "bf:Isbn", + "value": "9788373561940" + } + ], + "placeOfPublication": [ + "Wolowiec : Czarne, 2010" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "updatedAt": 1711654548895, + "idIsbn_clean": [ + "9788373561940" + ] + }, + "sort": [ + 568.4298, + "b18576841" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 0, + "relation": "eq" + }, + "max_score": null, + "hits": [] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b18806309", + "_score": 567.1082, + "_source": { + "extent": [ + "386 p. : map ;" + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (p. 383-[387])", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "In Polish.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Caucasus", + "Caucasus -- Civilization" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Wydawn. Czarne" + ], + "language": [ + { + "id": "lang:pol", + "label": "Polish" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 2010 + ], + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Toast za przodków" + ], "shelfMark": [ "ReCAP 11-4380" ], @@ -2967,18 +3014,15 @@ "creatorLiteral": [ "Górecki, Wojciech, 1970-" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Reportaż" ], + "numElectronicResources": [ + 0 + ], "dateStartYear": [ 2010 ], - "idOclc": [ - "671293997" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -3005,6 +3049,9 @@ "value": "(OCoLC)671293997" } ], + "idOclc": [ + "671293997" + ], "uniformTitle": [ "Seria Reportaż." ], @@ -3013,10 +3060,6 @@ "publicationStatement": [ "Wołowiec : Wydawn. Czarne, 2010." ], - "idIsbn": [ - "9788375361940 (pbk)", - "8375361941 (pbk)" - ], "identifier": [ "urn:shelfmark:ReCAP 11-4380", "urn:bnum:18806309", @@ -3025,6 +3068,10 @@ "urn:oclc:671293997", "urn:identifier:(OCoLC)671293997" ], + "idIsbn": [ + "9788375361940 (pbk)", + "8375361941 (pbk)" + ], "numCheckinCardItems": [ 0 ], @@ -3075,7 +3122,7 @@ ] }, "sort": [ - 568.1914, + 567.1082, "b18806309" ], "inner_hits": { @@ -3096,88 +3143,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 11-4380", + "urn:barcode:33433090460647" + ], + "physicalLocation": [ + "ReCAP 11-4380" + ], + "shelfMark_sort": "aReCAP 11-004380", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090460647" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 11-4380", - "urn:barcode:33433090460647" + "shelfMark": [ + "ReCAP 11-4380" ], + "uri": "i26121731", "identifierV2": [ { - "value": "ReCAP 11-4380", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 11-4380" }, { - "value": "33433090460647", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090460647" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433090460647" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 11-4380" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 11-4380" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 11-004380", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i26121731" + ] }, "sort": [ null @@ -3191,7 +3238,7 @@ { "_index": "resources-2024-10-22", "_id": "hb990099650640203941", - "_score": 562.24115, + "_score": 563.44324, "_source": { "extent": [ "247 p. ;" @@ -3224,12 +3271,15 @@ "numItemsTotal": [ 1 ], - "dateEndString": [ - "2002" - ], "createdYear": [ 2006 ], + "buildingLocationIds": [ + "rc" + ], + "dateEndString": [ + "2002" + ], "type": [ "nypl:Item" ], @@ -3361,7 +3411,7 @@ ] }, "sort": [ - 562.24115, + 563.44324, "hb990099650640203941" ], "inner_hits": { @@ -3382,78 +3432,78 @@ }, "_score": null, "_source": { - "uri": "hi232106586300003941", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0004", "label": "Harvard Library" } ], - "owner_packed": [ - "orgs:0004||Harvard Library" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:32044077499465" + ], + "physicalLocation": [ + "PR6119.T79 T63 2006" ], + "shelfMark_sort": "aPR6119.T79 T63 002006", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "shelfMark": [ - "PR6119.T79 T63 2006" - ], - "identifierV2": [ + "accessMessage": [ { - "value": "PR6119.T79 T63 2006", - "type": "bf:ShelfMark" + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "hi232106586300003941", + "shelfMark": [ + "PR6119.T79 T63 2006" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "PR6119.T79 T63 2006" }, { "type": "bf:Barcode", "value": "32044077499465" } ], - "physicalLocation": [ - "PR6119.T79 T63 2006" - ], - "recapCustomerCode": [ - "HW" - ], - "identifier": [ - "urn:barcode:32044077499465" - ], "idBarcode": [ "32044077499465" ], + "owner_packed": [ + "orgs:0004||Harvard Library" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "type": [ - "bf:Item" + "recapCustomerCode": [ + "HW" ], "formatLiteral": [ "Text" - ], - "shelfMark_sort": "aPR6119.T79 T63 002006" + ] }, "sort": [ null @@ -3467,7 +3517,7 @@ { "_index": "resources-2024-10-22", "_id": "pb9969551973506421", - "_score": 560.9158, + "_score": 562.11554, "_source": { "extent": [ "386 p. ;" @@ -3500,6 +3550,9 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Toast za przodków" ], @@ -3630,7 +3683,7 @@ ] }, "sort": [ - 560.9158, + 562.11554, "pb9969551973506421" ], "inner_hits": { @@ -3651,79 +3704,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0003", + "label": "Princeton University Library" } ], + "identifier": [ + "urn:shelfmark:PG7223.I78 T627 2010", + "urn:barcode:32101072287822" + ], + "physicalLocation": [ + "PG7223.I78 T627 2010" + ], + "shelfMark_sort": "aPG7223.I78 T627 002010", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } ], - "idBarcode": [ - "32101072287822" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:PG7223.I78 T627 2010", - "urn:barcode:32101072287822" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "PG7223.I78 T627 2010" ], + "uri": "pi23652743930006421", "identifierV2": [ { - "value": "PG7223.I78 T627 2010", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PG7223.I78 T627 2010" }, { - "value": "32101072287822", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "32101072287822" } ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } + "idBarcode": [ + "32101072287822" ], "owner_packed": [ "orgs:0003||Princeton University Library" ], - "physicalLocation": [ - "PG7223.I78 T627 2010" - ], - "recapCustomerCode": [ - "PA" - ], "requestable": [ true ], - "shelfMark": [ - "PG7223.I78 T627 2010" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "PA" ], - "shelfMark_sort": "aPG7223.I78 T627 002010", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23652743930006421" + ] }, "sort": [ null @@ -3737,7 +3790,7 @@ { "_index": "resources-2024-10-22", "_id": "b15868157", - "_score": 552.8177, + "_score": 554.4441, "_source": { "extent": [ "64 p. : ill. ;" @@ -3769,6 +3822,9 @@ "createdYear": [ 2002 ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Toast to life & vision" ], @@ -3905,9 +3961,12 @@ ] }, "sort": [ - 552.8177, + 554.4441, "b15868157" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -3926,85 +3985,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:61", - "label": "pamphlet volumes, bound with" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc D 13-57", + "urn:barcode:33433089426146" + ], + "physicalLocation": [ + "Sc D 13-57" + ], + "shelfMark_sort": "aSc D 13-000057", "catalogItemType_packed": [ "catalogItemType:61||pamphlet volumes, bound with" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433089426146" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc D 13-57", - "urn:barcode:33433089426146" + "shelfMark": [ + "Sc D 13-57" ], + "uri": "i29987107", "identifierV2": [ { - "value": "Sc D 13-57", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc D 13-57" }, { - "value": "33433089426146", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433089426146" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433089426146" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc D 13-57" - ], "requestable": [ true ], - "shelfMark": [ - "Sc D 13-57" + "catalogItemType": [ + { + "id": "catalogItemType:61", + "label": "pamphlet volumes, bound with" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc D 13-000057", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i29987107" + ] }, "sort": [ null @@ -4018,7 +4077,7 @@ { "_index": "resources-2024-10-22", "_id": "b16664914", - "_score": 550.23676, + "_score": 550.51, "_source": { "extent": [ "1 folder" @@ -4051,6 +4110,9 @@ "createdYear": [ null ], + "buildingLocationIds": [ + "pa" + ], "title": [ "French Toast (Musical group)" ], @@ -4137,9 +4199,12 @@ ] }, "sort": [ - 550.23676, + 550.51, "b16664914" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -4158,78 +4223,78 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], "accessMessage_packed": [ "accessMessage:u||Supervised use" ], - "catalogItemType": [ - { - "id": "catalogItemType:22", - "label": "clipping files" - } + "identifier": [ + "urn:shelfmark:M-Clippings (Subjects) French Toast (Musical group)", + "urn:barcode:33433085650764" + ], + "physicalLocation": [ + "M-Clippings (Subjects) French Toast (Musical group)" ], + "shelfMark_sort": "aM-Clippings (Subjects) French Toast (Musical group)", "catalogItemType_packed": [ "catalogItemType:22||clipping files" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:pam38", - "label": "Performing Arts Research Collections - Music" + "id": "accessMessage:u", + "label": "Supervised use" } ], - "holdingLocation_packed": [ - "loc:pam38||Performing Arts Research Collections - Music" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433085650764" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=M-Clippings+%28Subjects%29+French+Toast+%28Musical+group%29&Date=++++&Form=30&Genre=clipping+files&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db16664914&ItemISxN=i173869890&ItemNumber=33433085650764&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b166649144&Site=LPAMR&Title=French+Toast+%28Musical+group%29+%3A+clippings" ], - "identifier": [ - "urn:shelfmark:M-Clippings (Subjects) French Toast (Musical group)", - "urn:barcode:33433085650764" + "type": [ + "bf:Item" ], + "shelfMark": [ + "M-Clippings (Subjects) French Toast (Musical group)" + ], + "uri": "i17386989", "identifierV2": [ { - "value": "M-Clippings (Subjects) French Toast (Musical group)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "M-Clippings (Subjects) French Toast (Musical group)" }, { - "value": "33433085650764", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433085650764" } ], - "physicalLocation": [ - "M-Clippings (Subjects) French Toast (Musical group)" + "holdingLocation_packed": [ + "loc:pam38||Performing Arts Research Collections - Music" + ], + "idBarcode": [ + "33433085650764" ], "requestable": [ false ], - "shelfMark": [ - "M-Clippings (Subjects) French Toast (Musical group)" + "catalogItemType": [ + { + "id": "catalogItemType:22", + "label": "clipping files" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pam38", + "label": "Performing Arts Research Collections - Music" + } ], - "shelfMark_sort": "aM-Clippings (Subjects) French Toast (Musical group)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17386989", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=M-Clippings+%28Subjects%29+French+Toast+%28Musical+group%29&Date=++++&Form=30&Genre=clipping+files&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db16664914&ItemISxN=i173869890&ItemNumber=33433085650764&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b166649144&Site=LPAMR&Title=French+Toast+%28Musical+group%29+%3A+clippings" ] }, "sort": [ @@ -4243,33 +4308,28 @@ }, { "_index": "resources-2024-10-22", - "_id": "b11302028", - "_score": 549.9739, + "_id": "b12269299", + "_score": 550.3933, "_source": { - "extent": [ - "vi, 301 p. : ill. ;" - ], "note": [ { "noteType": "Note", - "label": "Includes index.", + "label": "Directions and music.", "type": "bf:Note" } ], + "partOf": [ + "Pedersen, Dagny. Folk games of Denmark and Sweden. Chicago [c1915] p 24. illus, diagr" + ], "nyplSource": [ "sierra-nypl" ], "subjectLiteral_exploded": [ - "Cooking, American", - "Cooking, American -- California", - "Cooking, American -- California -- Los Angeles" + "Gustafs skål (Dance)" ], "numItemDatesParsed": [ 0 ], - "publisherLiteral": [ - "Women's Auxiliary of the California Babies' and Children's Hospital" - ], "language": [ { "id": "lang:eng", @@ -4277,76 +4337,65 @@ } ], "numItemsTotal": [ - 1 + 0 ], "createdYear": [ - 1950 + 1915 ], + "buildingLocationIds": [], "title": [ - "Burnt toast." + "Gustaf's toast." ], "type": [ "nypl:Item" ], "shelfMark": [ - "JFD 89-9691" + "*MGS (Scandinavian)" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1950" + "1915" ], "numElectronicResources": [ 0 ], - "contributorLiteral": [ - "California Babies' and Children's Hospital. Women's Auxiliary." - ], "dateStartYear": [ - 1950 + 1915 ], "idOclc": [ - "4365987", - "NYPG90-B62543" + "NYPY710236921-B" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "JFD 89-9691" + "value": "*MGS (Scandinavian)" }, { "type": "nypl:Bnumber", - "value": "11302028" - }, - { - "type": "nypl:Oclc", - "value": "4365987" + "value": "12269299" }, { "type": "nypl:Oclc", - "value": "NYPG90-B62543" + "value": "NYPY710236921-B" }, { "type": "bf:Identifier", - "value": "(WaOLN)nyp1309761" + "value": "(NN-PD)710236921" }, { "type": "bf:Identifier", - "value": "(OCoLC)4365987" + "value": "(WaOLN)nyp2256094" } ], - "updatedAt": 1711595109405, - "publicationStatement": [ - "Los Angeles, Calif. : Women's Auxiliary of the California Babies' and Children's Hospital, 1950." - ], + "updatedAt": 1711057241809, "identifier": [ - "urn:shelfmark:JFD 89-9691", - "urn:bnum:11302028", - "urn:oclc:4365987", - "urn:oclc:NYPG90-B62543", - "urn:identifier:(WaOLN)nyp1309761", - "urn:identifier:(OCoLC)4365987" + "urn:shelfmark:*MGS (Scandinavian)", + "urn:bnum:12269299", + "urn:oclc:NYPY710236921-B", + "urn:identifier:(NN-PD)710236921", + "urn:identifier:(WaOLN)nyp2256094" ], "numCheckinCardItems": [ 0 @@ -4364,7 +4413,7 @@ } ], "dateString": [ - "1950" + "1915" ], "mediaType": [ { @@ -4373,142 +4422,53 @@ } ], "subjectLiteral": [ - "Cooking, American -- California -- Los Angeles." + "Gustafs skål (Dance)" ], "titleDisplay": [ - "Burnt toast." - ], - "uri": "b11302028", - "placeOfPublication": [ - "Los Angeles, Calif." + "Gustaf's toast." ], + "uri": "b12269299", "issuance": [ { - "id": "urn:biblevel:m", - "label": "monograph/item" + "id": "urn:biblevel:a", + "label": "monograph component part" } - ], - "dimensions": [ - "23 cm." ] }, "sort": [ - 549.9739, - "b11302028" + 550.3933, + "b12269299" ], "inner_hits": { "items": { "hits": { "total": { - "value": 1, + "value": 0, "relation": "eq" }, "max_score": null, - "hits": [ - { - "_index": "resources-2024-10-22", - "_id": "b11302028", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433040618625" - ], - "identifier": [ - "urn:shelfmark:JFD 89-9691", - "urn:barcode:33433040618625" - ], - "identifierV2": [ - { - "value": "JFD 89-9691", - "type": "bf:ShelfMark" - }, - { - "value": "33433040618625", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "JFD 89-9691" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFD 89-9691" - ], - "shelfMark_sort": "aJFD 89-009691", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13162098" - }, - "sort": [ - null - ] - } - ] + "hits": [] } } } }, { "_index": "resources-2024-10-22", - "_id": "b14264413", - "_score": 549.9739, + "_id": "b15876151", + "_score": 549.944, "_source": { "extent": [ - "2 p.l., 7-73 p., 2 l." + "1 sound disc : analog, 33 1/3 rpm ;" ], "note": [ { "noteType": "Note", - "label": "At head of title: G.C. Baravelli.", + "label": "Program notes by \"Jonah\" Jones on container.", + "type": "bf:Note" + }, + { + "noteType": "Event", + "label": "Recorded Oct. 8, 1954 and May 1955 in Paris.", "type": "bf:Note" } ], @@ -4516,101 +4476,108 @@ "sierra-nypl" ], "subjectLiteral_exploded": [ - "Stalin, Joseph, 1878-1953", - "Communism", - "Communism -- Soviet Union", - "Soviet Union", - "Soviet Union -- Economic conditions", - "Soviet Union -- Economic conditions -- 1917-1945" + "Jazz", + "Jazz -- France", + "Jazz -- France -- 1951-1960" ], "numItemDatesParsed": [ 0 ], "publisherLiteral": [ - "Edizioni di Novissima" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } + "Angel Records" ], "numItemsTotal": [ - 0 + 1 ], "createdYear": [ - 1937 + 195 + ], + "dateEndString": [ + "1954" + ], + "buildingLocationIds": [ + "pa" ], "title": [ - "Stalin's toast." + "French toast" ], "type": [ "nypl:Item" ], "shelfMark": [ - "SB p.v. 443" + "*LZO 356" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1937" + "195" ], "creatorLiteral": [ - "Baravelli, G. C. (Giulio Cesare)" - ], - "idLccn": [ - "38006165" + "Persiany, André." ], "numElectronicResources": [ 0 ], + "seriesStatement": [ + "Jazz series ; vol. 1, no. 10" + ], + "contributorLiteral": [ + "Chevallier, Christian.", + "Lafitte, Guy." + ], "dateStartYear": [ - 1937 + 195 ], "idOclc": [ - "10504920" + "53378691" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "SB p.v. 443" + "value": "*LZO 356" }, { "type": "nypl:Bnumber", - "value": "14264413" + "value": "15876151" }, { "type": "nypl:Oclc", - "value": "10504920" + "value": "53378691" }, { - "type": "bf:Lccn", - "value": "38006165" + "type": "bf:Identifier", + "value": "ANG-60009 Angel Records" }, { "type": "bf:Identifier", - "value": "(WaOLN)R020000041" + "value": "(WaOLN)A100000016" } ], - "updatedAt": 1711486550968, + "uniformTitle": [ + "Jazz series (Angel Records) ; vol. 1, no. 10." + ], + "dateEndYear": [ + 1954 + ], + "updatedAt": 1712867110813, "publicationStatement": [ - "Roma, Edizioni di Novissima [1937]" + "New York, [N.Y.] : Angel Records, [195-]" ], "identifier": [ - "urn:shelfmark:SB p.v. 443", - "urn:bnum:14264413", - "urn:oclc:10504920", - "urn:lccn:38006165", - "urn:identifier:(WaOLN)R020000041" + "urn:shelfmark:*LZO 356", + "urn:bnum:15876151", + "urn:oclc:53378691", + "urn:identifier:ANG-60009 Angel Records", + "urn:identifier:(WaOLN)A100000016" ], "numCheckinCardItems": [ 0 ], "materialType": [ { - "id": "resourcetypes:txt", - "label": "Text" + "id": "resourcetypes:aud", + "label": "Audio" } ], "carrierType": [ @@ -4620,7 +4587,7 @@ } ], "dateString": [ - "1937" + "195" ], "mediaType": [ { @@ -4629,19 +4596,14 @@ } ], "subjectLiteral": [ - "Stalin, Joseph, 1878-1953.", - "Communism -- Soviet Union.", - "Soviet Union -- Economic conditions -- 1917-1945." + "Jazz -- France -- 1951-1960." ], "titleDisplay": [ - "Stalin's toast." - ], - "uri": "b14264413", - "lccClassification": [ - "DK267 .B27" + "French toast [sound recording]." ], + "uri": "b15876151", "placeOfPublication": [ - "Roma" + "New York, [N.Y.]" ], "issuance": [ { @@ -4650,53 +4612,149 @@ } ], "tableOfContents": [ - "A class which refuses to die.--Fighting the party.--Rifle shots in Moscow.--The lowest wages in the world.--Sordid housing.--Yagoda: a name and a symbol.--Six million convicts.--The revenge of militarism.--Bolshevism paramount to supercapitalism." + "Nice joke -- Fiction -- Quartet mind -- Saxology -- Little story -- Halbe fünf -- Christmas song -- Two cats and a piece of lung." ], "dimensions": [ - "19 cm." + "10 in." ] }, "sort": [ - 549.9739, - "b14264413" + 549.944, + "b15876151" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { "hits": { "total": { - "value": 0, + "value": 1, "relation": "eq" }, "max_score": null, - "hits": [] + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b15876151", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:shelfmark:*LZO 356 [Disc]", + "urn:barcode:33433035294234" + ], + "physicalLocation": [ + "*LZO 356 [Disc]" + ], + "shelfMark_sort": "a*LZO 356 [Disc]", + "catalogItemType_packed": [ + "catalogItemType:12||musical sound recording" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Persiany%2C+Andr%C3%A9.&CallNumber=*LZO+356+%5BDisc%5D&Date=195&Form=30&Genre=musical+sound+recording&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db15876151&ItemISxN=i146601877&ItemNumber=33433035294234&ItemPlace=New+York%2C+%5BN.Y.%5D&ItemPublisher=Angel+Records%2C+%5B195-%5D&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b158761510&Site=LPAMRAMI&Title=French+toast" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*LZO 356 [Disc]" + ], + "uri": "i14660187", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*LZO 356 [Disc]" + }, + { + "type": "bf:Barcode", + "value": "33433035294234" + } + ], + "holdingLocation_packed": [ + "loc:pah22||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433035294234" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:12", + "label": "musical sound recording" + } + ], + "formatLiteral": [ + "Audio" + ], + "holdingLocation": [ + { + "id": "loc:pah22", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] } } } }, { "_index": "resources-2024-10-22", - "_id": "b12269299", - "_score": 549.5969, + "_id": "b11302028", + "_score": 549.8303, "_source": { + "extent": [ + "vi, 301 p. : ill. ;" + ], "note": [ { "noteType": "Note", - "label": "Directions and music.", + "label": "Includes index.", "type": "bf:Note" } ], - "partOf": [ - "Pedersen, Dagny. Folk games of Denmark and Sweden. Chicago [c1915] p 24. illus, diagr" - ], "nyplSource": [ "sierra-nypl" ], "subjectLiteral_exploded": [ - "Gustafs skål (Dance)" + "Cooking, American", + "Cooking, American -- California", + "Cooking, American -- California -- Los Angeles" ], "numItemDatesParsed": [ 0 ], + "publisherLiteral": [ + "Women's Auxiliary of the California Babies' and Children's Hospital" + ], "language": [ { "id": "lang:eng", @@ -4704,64 +4762,79 @@ } ], "numItemsTotal": [ - 0 + 1 ], "createdYear": [ - 1915 + 1950 + ], + "buildingLocationIds": [ + "ma" ], "title": [ - "Gustaf's toast." + "Burnt toast." ], "type": [ "nypl:Item" ], "shelfMark": [ - "*MGS (Scandinavian)" + "JFD 89-9691" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1915" + "1950" ], "numElectronicResources": [ 0 ], + "contributorLiteral": [ + "California Babies' and Children's Hospital. Women's Auxiliary." + ], "dateStartYear": [ - 1915 + 1950 ], "idOclc": [ - "NYPY710236921-B" + "4365987", + "NYPG90-B62543" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "*MGS (Scandinavian)" + "value": "JFD 89-9691" }, { "type": "nypl:Bnumber", - "value": "12269299" + "value": "11302028" }, { "type": "nypl:Oclc", - "value": "NYPY710236921-B" + "value": "4365987" + }, + { + "type": "nypl:Oclc", + "value": "NYPG90-B62543" }, { "type": "bf:Identifier", - "value": "(NN-PD)710236921" + "value": "(WaOLN)nyp1309761" }, { "type": "bf:Identifier", - "value": "(WaOLN)nyp2256094" + "value": "(OCoLC)4365987" } ], - "updatedAt": 1711057241809, + "updatedAt": 1711595109405, + "publicationStatement": [ + "Los Angeles, Calif. : Women's Auxiliary of the California Babies' and Children's Hospital, 1950." + ], "identifier": [ - "urn:shelfmark:*MGS (Scandinavian)", - "urn:bnum:12269299", - "urn:oclc:NYPY710236921-B", - "urn:identifier:(NN-PD)710236921", - "urn:identifier:(WaOLN)nyp2256094" + "urn:shelfmark:JFD 89-9691", + "urn:bnum:11302028", + "urn:oclc:4365987", + "urn:oclc:NYPG90-B62543", + "urn:identifier:(WaOLN)nyp1309761", + "urn:identifier:(OCoLC)4365987" ], "numCheckinCardItems": [ 0 @@ -4779,7 +4852,7 @@ } ], "dateString": [ - "1915" + "1950" ], "mediaType": [ { @@ -4788,185 +4861,14 @@ } ], "subjectLiteral": [ - "Gustafs skål (Dance)" + "Cooking, American -- California -- Los Angeles." ], "titleDisplay": [ - "Gustaf's toast." + "Burnt toast." ], - "uri": "b12269299", - "issuance": [ - { - "id": "urn:biblevel:a", - "label": "monograph component part" - } - ] - }, - "sort": [ - 549.5969, - "b12269299" - ], - "inner_hits": { - "items": { - "hits": { - "total": { - "value": 0, - "relation": "eq" - }, - "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-10-22", - "_id": "b15876151", - "_score": 548.15, - "_source": { - "extent": [ - "1 sound disc : analog, 33 1/3 rpm ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Program notes by \"Jonah\" Jones on container.", - "type": "bf:Note" - }, - { - "noteType": "Event", - "label": "Recorded Oct. 8, 1954 and May 1955 in Paris.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "subjectLiteral_exploded": [ - "Jazz", - "Jazz -- France", - "Jazz -- France -- 1951-1960" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Angel Records" - ], - "numItemsTotal": [ - 1 - ], - "createdYear": [ - 195 - ], - "dateEndString": [ - "1954" - ], - "title": [ - "French toast" - ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*LZO 356" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "195" - ], - "creatorLiteral": [ - "Persiany, André." - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Jazz series ; vol. 1, no. 10" - ], - "contributorLiteral": [ - "Chevallier, Christian.", - "Lafitte, Guy." - ], - "dateStartYear": [ - 195 - ], - "idOclc": [ - "53378691" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*LZO 356" - }, - { - "type": "nypl:Bnumber", - "value": "15876151" - }, - { - "type": "nypl:Oclc", - "value": "53378691" - }, - { - "type": "bf:Identifier", - "value": "ANG-60009 Angel Records" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)A100000016" - } - ], - "uniformTitle": [ - "Jazz series (Angel Records) ; vol. 1, no. 10." - ], - "dateEndYear": [ - 1954 - ], - "updatedAt": 1712867110813, - "publicationStatement": [ - "New York, [N.Y.] : Angel Records, [195-]" - ], - "identifier": [ - "urn:shelfmark:*LZO 356", - "urn:bnum:15876151", - "urn:oclc:53378691", - "urn:identifier:ANG-60009 Angel Records", - "urn:identifier:(WaOLN)A100000016" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:aud", - "label": "Audio" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "195" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jazz -- France -- 1951-1960." - ], - "titleDisplay": [ - "French toast [sound recording]." - ], - "uri": "b15876151", + "uri": "b11302028", "placeOfPublication": [ - "New York, [N.Y.]" + "Los Angeles, Calif." ], "issuance": [ { @@ -4974,16 +4876,16 @@ "label": "monograph/item" } ], - "tableOfContents": [ - "Nice joke -- Fiction -- Quartet mind -- Saxology -- Little story -- Halbe fünf -- Christmas song -- Two cats and a piece of lung." - ], "dimensions": [ - "10 in." + "23 cm." ] }, "sort": [ - 548.15, - "b15876151" + 549.8303, + "b11302028" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { @@ -4996,85 +4898,85 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "b15876151", + "_id": "b11302028", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:12", - "label": "musical sound recording" - } + "identifier": [ + "urn:shelfmark:JFD 89-9691", + "urn:barcode:33433040618625" ], - "catalogItemType_packed": [ - "catalogItemType:12||musical sound recording" + "m2CustomerCode": [ + "XA" ], - "formatLiteral": [ - "Audio" + "physicalLocation": [ + "JFD 89-9691" ], - "holdingLocation": [ + "shelfMark_sort": "aJFD 89-009691", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:pah22", - "label": "Performing Arts Research Collections - Recorded Sound" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:pah22||Performing Arts Research Collections - Recorded Sound" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433035294234" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*LZO 356 [Disc]", - "urn:barcode:33433035294234" + "shelfMark": [ + "JFD 89-9691" ], + "uri": "i13162098", "identifierV2": [ { - "value": "*LZO 356 [Disc]", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFD 89-9691" }, { - "value": "33433035294234", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433040618625" } ], - "physicalLocation": [ - "*LZO 356 [Disc]" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433040618625" ], "requestable": [ - false + true ], - "shelfMark": [ - "*LZO 356 [Disc]" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*LZO 356 [Disc]", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14660187", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Persiany%2C+Andr%C3%A9.&CallNumber=*LZO+356+%5BDisc%5D&Date=195&Form=30&Genre=musical+sound+recording&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db15876151&ItemISxN=i146601877&ItemNumber=33433035294234&ItemPlace=New+York%2C+%5BN.Y.%5D&ItemPublisher=Angel+Records%2C+%5B195-%5D&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b158761510&Site=LPAMRAMI&Title=French+toast" ] }, "sort": [ @@ -5088,36 +4990,16 @@ }, { "_index": "resources-2024-10-22", - "_id": "b11373666", - "_score": 546.93146, + "_id": "b14264413", + "_score": 548.8303, "_source": { "extent": [ - "1 ms. score (5 leaves) ;" + "2 p.l., 7-73 p., 2 l." ], "note": [ { "noteType": "Note", - "label": "Holograph signed, in ink and pencil.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "For voice and orchestra; music for orchestra only (includes cue for voice).", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Alternate musical setting from mss. of Mar. 6, 1918.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "At end: N.Y., March 15, 1918.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Title from caption (in pencil); other caption title information illegible.", + "label": "At head of title: G.C. Baravelli.", "type": "bf:Note" } ], @@ -5125,321 +5007,291 @@ "sierra-nypl" ], "subjectLiteral_exploded": [ - "Sousa, John Philip, 1854-1932", - "Sousa, John Philip, 1854-1932 -- Manuscripts" + "Stalin, Joseph, 1878-1953", + "Communism", + "Communism -- Soviet Union", + "Soviet Union", + "Soviet Union -- Economic conditions", + "Soviet Union -- Economic conditions -- 1917-1945" ], "numItemDatesParsed": [ 0 ], + "publisherLiteral": [ + "Edizioni di Novissima" + ], "language": [ { - "id": "lang:zxx", - "label": "No linguistic content" + "id": "lang:eng", + "label": "English" } ], "numItemsTotal": [ - 1 + 0 ], "createdYear": [ - 1918 + 1937 ], + "buildingLocationIds": [], "title": [ - "The toast" + "Stalin's toast." ], "type": [ "nypl:Item" ], "shelfMark": [ - "JPB 84-313" + "SB p.v. 443" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1918" + "1937" ], "creatorLiteral": [ - "Sousa, John Philip, 1854-1932." + "Baravelli, G. C. (Giulio Cesare)" + ], + "idLccn": [ + "38006165" ], "numElectronicResources": [ 0 ], "dateStartYear": [ - 1918 + 1937 ], "idOclc": [ - "NYPG004000623-C" + "10504920" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "JPB 84-313" + "value": "SB p.v. 443" }, { "type": "nypl:Bnumber", - "value": "11373666" + "value": "14264413" }, { "type": "nypl:Oclc", - "value": "NYPG004000623-C" + "value": "10504920" }, { - "type": "bf:Identifier", - "value": "NNSZ00405623" + "type": "bf:Lccn", + "value": "38006165" }, { "type": "bf:Identifier", - "value": "(WaOLN)nyp1381622" - } - ], - "updatedAt": 1712854138515, - "publicationStatement": [ - "1918 Mar. 15" - ], - "identifier": [ - "urn:shelfmark:JPB 84-313", - "urn:bnum:11373666", - "urn:oclc:NYPG004000623-C", - "urn:identifier:NNSZ00405623", - "urn:identifier:(WaOLN)nyp1381622" - ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:not", - "label": "Notated music" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1918" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Sousa, John Philip, 1854-1932 -- Manuscripts." - ], - "titleDisplay": [ - "The toast / J.P.S. [John Philip Sousa]." - ], - "uri": "b11373666", - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" + "value": "(WaOLN)R020000041" } ], - "dimensions": [ - "34 cm." - ] - }, - "sort": [ - 546.93146, - "b11373666" - ], - "inner_hits": { - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-10-22", - "_id": "b11373666", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ - { - "id": "loc:pam38", - "label": "Performing Arts Research Collections - Music" - } - ], - "holdingLocation_packed": [ - "loc:pam38||Performing Arts Research Collections - Music" - ], - "identifier": [ - "urn:shelfmark:JPB 84-313" - ], - "identifierV2": [ - { - "value": "JPB 84-313", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "JPB 84-313" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JPB 84-313" - ], - "shelfMark_sort": "aJPB 84-000313", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15897007", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Sousa%2C+John+Philip%2C+1854-1932.&CallNumber=JPB+84-313&Date=1918&Form=30&Genre=book+non-circ&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db11373666&ItemISxN=i15897007x&ItemPublisher=1918+Mar.+15&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b113736666&Site=LPAMR&Title=The+toast" - ] - }, - "sort": [ - null - ] - } - ] + "updatedAt": 1711486550968, + "publicationStatement": [ + "Roma, Edizioni di Novissima [1937]" + ], + "identifier": [ + "urn:shelfmark:SB p.v. 443", + "urn:bnum:14264413", + "urn:oclc:10504920", + "urn:lccn:38006165", + "urn:identifier:(WaOLN)R020000041" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1937" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Stalin, Joseph, 1878-1953.", + "Communism -- Soviet Union.", + "Soviet Union -- Economic conditions -- 1917-1945." + ], + "titleDisplay": [ + "Stalin's toast." + ], + "uri": "b14264413", + "lccClassification": [ + "DK267 .B27" + ], + "placeOfPublication": [ + "Roma" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "A class which refuses to die.--Fighting the party.--Rifle shots in Moscow.--The lowest wages in the world.--Sordid housing.--Yagoda: a name and a symbol.--Six million convicts.--The revenge of militarism.--Bolshevism paramount to supercapitalism." + ], + "dimensions": [ + "19 cm." + ] + }, + "sort": [ + 548.8303, + "b14264413" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 0, + "relation": "eq" + }, + "max_score": null, + "hits": [] } } } }, { "_index": "resources-2024-10-22", - "_id": "b19650848", - "_score": 546.93146, + "_id": "b11373666", + "_score": 548.7232, "_source": { "extent": [ - "256, 31 p. ;" + "1 ms. score (5 leaves) ;" ], "note": [ { "noteType": "Note", - "label": "Advertisements: p. [1]-31 (second group).", + "label": "Holograph signed, in ink and pencil.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "For voice and orchestra; music for orchestra only (includes cue for voice).", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Alternate musical setting from mss. of Mar. 6, 1918.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "At end: N.Y., March 15, 1918.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Title from caption (in pencil); other caption title information illegible.", "type": "bf:Note" } ], "nyplSource": [ "sierra-nypl" ], + "subjectLiteral_exploded": [ + "Sousa, John Philip, 1854-1932", + "Sousa, John Philip, 1854-1932 -- Manuscripts" + ], "numItemDatesParsed": [ 0 ], - "publisherLiteral": [ - "Metheun" - ], "language": [ { - "id": "lang:eng", - "label": "English" + "id": "lang:zxx", + "label": "No linguistic content" } ], "numItemsTotal": [ 1 ], "createdYear": [ - 1916 + 1918 + ], + "buildingLocationIds": [ + "pa" ], "title": [ - "On toast" + "The toast" ], "type": [ "nypl:Item" ], "shelfMark": [ - "NCW (Ridge, W. P. On toast)" + "JPB 84-313" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1916" + "1918" ], "creatorLiteral": [ - "Ridge, W. Pett (William Pett), -1930." + "Sousa, John Philip, 1854-1932." ], "numElectronicResources": [ 0 ], "dateStartYear": [ - 1916 + 1918 ], "idOclc": [ - "26167955" + "NYPG004000623-C" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "NCW (Ridge, W. P. On toast)" + "value": "JPB 84-313" }, { "type": "nypl:Bnumber", - "value": "19650848" + "value": "11373666" }, { "type": "nypl:Oclc", - "value": "26167955" + "value": "NYPG004000623-C" }, { "type": "bf:Identifier", - "value": "(OCoLC)26167955" + "value": "NNSZ00405623" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp1381622" } ], - "popularity": 6, - "updatedAt": 1722396402330, + "updatedAt": 1712854138515, "publicationStatement": [ - "London : Metheun, 1916." + "1918 Mar. 15" ], "identifier": [ - "urn:shelfmark:NCW (Ridge, W. P. On toast)", - "urn:bnum:19650848", - "urn:oclc:26167955", - "urn:identifier:(OCoLC)26167955" + "urn:shelfmark:JPB 84-313", + "urn:bnum:11373666", + "urn:oclc:NYPG004000623-C", + "urn:identifier:NNSZ00405623", + "urn:identifier:(WaOLN)nyp1381622" ], "numCheckinCardItems": [ 0 ], "materialType": [ { - "id": "resourcetypes:txt", - "label": "Text" + "id": "resourcetypes:not", + "label": "Notated music" } ], "carrierType": [ @@ -5449,7 +5301,7 @@ } ], "dateString": [ - "1916" + "1918" ], "mediaType": [ { @@ -5457,13 +5309,13 @@ "label": "unmediated" } ], - "titleDisplay": [ - "On toast / by W. Pett Ridge." + "subjectLiteral": [ + "Sousa, John Philip, 1854-1932 -- Manuscripts." ], - "uri": "b19650848", - "placeOfPublication": [ - "London" + "titleDisplay": [ + "The toast / J.P.S. [John Philip Sousa]." ], + "uri": "b11373666", "issuance": [ { "id": "urn:biblevel:m", @@ -5471,12 +5323,15 @@ } ], "dimensions": [ - "20 cm." + "34 cm." ] }, "sort": [ - 546.93146, - "b19650848" + 548.7232, + "b11373666" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { @@ -5489,86 +5344,78 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "b19650848", + "_id": "b11373666", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ - "accessMessage:1||Use in library" + "accessMessage:u||Supervised use" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:JPB 84-313" ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "physicalLocation": [ + "JPB 84-313" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aJPB 84-000313", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:u", + "label": "Supervised use" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433101440497" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Sousa%2C+John+Philip%2C+1854-1932.&CallNumber=JPB+84-313&Date=1918&Form=30&Genre=book+non-circ&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db11373666&ItemISxN=i15897007x&ItemPublisher=1918+Mar.+15&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b113736666&Site=LPAMR&Title=The+toast" ], - "identifier": [ - "urn:shelfmark:NCW (Ridge, W. P. On toast)", - "urn:barcode:33433101440497" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JPB 84-313" ], + "uri": "i15897007", "identifierV2": [ { - "value": "NCW (Ridge, W. P. On toast)", - "type": "bf:ShelfMark" - }, - { - "value": "33433101440497", - "type": "bf:Barcode" + "type": "bf:ShelfMark", + "value": "JPB 84-313" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NCW (Ridge, W. P. On toast)" + "holdingLocation_packed": [ + "loc:pam38||Performing Arts Research Collections - Music" ], "requestable": [ - true + false ], - "shelfMark": [ - "NCW (Ridge, W. P. On toast)" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:pam38", + "label": "Performing Arts Research Collections - Music" + } ], - "shelfMark_sort": "aNCW (Ridge, W. P. On toast)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28924660" + ] }, "sort": [ null @@ -5581,43 +5428,27 @@ }, { "_index": "resources-2024-10-22", - "_id": "b22227752", - "_score": 545.588, + "_id": "b19650848", + "_score": 548.7232, "_source": { "extent": [ - "1 volume (unpaged) : colour illustrations ;" + "256, 31 p. ;" ], "note": [ { "noteType": "Note", - "label": "\"This is a first edition\"--Title page verso.", + "label": "Advertisements: p. [1]-31 (second group).", "type": "bf:Note" } ], "nyplSource": [ "sierra-nypl" ], - "subjectLiteral_exploded": [ - "Multiracial people", - "Multiracial people -- Juvenile fiction", - "Grandmothers", - "Grandmothers -- Juvenile fiction", - "Blind people", - "Blind people -- Juvenile fiction", - "Human skin color", - "Human skin color -- Juvenile fiction", - "Self-esteem", - "Self-esteem -- Juvenile fiction", - "Picture books for children" - ], "numItemDatesParsed": [ 0 ], "publisherLiteral": [ - "Pajama Press" - ], - "description": [ - "While out on a walk with her blind grandmother, Phoebe tries to describe the skin color of members of her family by comparing them to various foods." + "Metheun" ], "language": [ { @@ -5629,87 +5460,66 @@ 1 ], "createdYear": [ - 2016 + 1916 ], "buildingLocationIds": [ "ma" ], "title": [ - "French toast" + "On toast" ], "type": [ "nypl:Item" ], "shelfMark": [ - "JFF 17-1945" + "NCW (Ridge, W. P. On toast)" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "2016" + "1916" ], "creatorLiteral": [ - "Winters, Kari-Lynn, 1969-" + "Ridge, W. Pett (William Pett), -1930." ], "numElectronicResources": [ 0 ], - "contributorLiteral": [ - "Thisdale, François, 1964-" - ], "dateStartYear": [ - 2016 + 1916 ], "idOclc": [ - "943594881" + "26167955" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "JFF 17-1945" + "value": "NCW (Ridge, W. P. On toast)" }, { "type": "nypl:Bnumber", - "value": "22227752" - }, - { - "type": "bf:Isbn", - "value": "9781772780062" - }, - { - "type": "bf:Isbn", - "value": "1772780065" + "value": "19650848" }, { "type": "nypl:Oclc", - "value": "943594881" + "value": "26167955" }, { "type": "bf:Identifier", - "value": "(OCoLC)943594881" + "value": "(OCoLC)26167955" } ], - "popularity": 0, - "updatedAt": 1729183707636, + "popularity": 6, + "updatedAt": 1722396402330, "publicationStatement": [ - "Toronto, Ontario, Canada : Pajama Press, 2016." - ], - "genreForm": [ - "Fiction.", - "Juvenile works." - ], - "idIsbn": [ - "9781772780062", - "1772780065" + "London : Metheun, 1916." ], "identifier": [ - "urn:shelfmark:JFF 17-1945", - "urn:bnum:22227752", - "urn:isbn:9781772780062", - "urn:isbn:1772780065", - "urn:oclc:943594881", - "urn:identifier:(OCoLC)943594881" + "urn:shelfmark:NCW (Ridge, W. P. On toast)", + "urn:bnum:19650848", + "urn:oclc:26167955", + "urn:identifier:(OCoLC)26167955" ], "numCheckinCardItems": [ 0 @@ -5727,7 +5537,7 @@ } ], "dateString": [ - "2016" + "1916" ], "mediaType": [ { @@ -5735,27 +5545,12 @@ "label": "unmediated" } ], - "subjectLiteral": [ - "Multiracial people -- Juvenile fiction.", - "Grandmothers -- Juvenile fiction.", - "Blind people -- Juvenile fiction.", - "Human skin color -- Juvenile fiction.", - "Self-esteem -- Juvenile fiction.", - "Picture books for children.", - "Blind people.", - "Grandmothers.", - "Human skin color.", - "Self-esteem." - ], "titleDisplay": [ - "French toast / written by Kari-Lynn Winters ; illustrated by François Thisdale." - ], - "uri": "b22227752", - "lccClassification": [ - "PZ7.W7674 Fr 2016" + "On toast / by W. Pett Ridge." ], + "uri": "b19650848", "placeOfPublication": [ - "Toronto, Ontario, Canada" + "London" ], "issuance": [ { @@ -5764,16 +5559,12 @@ } ], "dimensions": [ - "24 x 27 cm" - ], - "idIsbn_clean": [ - "9781772780062", - "1772780065" + "20 cm." ] }, "sort": [ - 545.588, - "b22227752" + 548.7232, + "b19650848" ], "matched_queries": [ "on-site" @@ -5789,92 +5580,86 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "b22227752", + "_id": "b19650848", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:NCW (Ridge, W. P. On toast)", + "urn:barcode:33433101440497" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "NCW (Ridge, W. P. On toast)" + ], + "shelfMark_sort": "aNCW (Ridge, W. P. On toast)", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433122276318" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFF 17-1945", - "urn:barcode:33433122276318" + "shelfMark": [ + "NCW (Ridge, W. P. On toast)" ], + "uri": "i28924660", "identifierV2": [ { - "value": "JFF 17-1945", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "NCW (Ridge, W. P. On toast)" }, { - "value": "33433122276318", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" + "type": "bf:Barcode", + "value": "33433101440497" } ], - "owner_packed": [ - "orgs:1101||General Research Division" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "JFF 17-1945" + "idBarcode": [ + "33433101440497" ], "requestable": [ true ], - "shelfMark": [ - "JFF 17-1945" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "aJFF 17-001945", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37949151" + ] }, "sort": [ null @@ -5887,26 +5672,16 @@ }, { "_index": "resources-2024-10-22", - "_id": "b11373665", - "_score": 544.9655, + "_id": "b22227752", + "_score": 546.37494, "_source": { "extent": [ - "1 ms. score (6 p.) ;" + "1 volume (unpaged) : colour illustrations ;" ], "note": [ { "noteType": "Note", - "label": "Copyist's ms., in ink.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "For voice and piano.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Stamp on pp. [1] & 6: Fred P. Champlin, Autographing and Copying.", + "label": "\"This is a first edition\"--Title page verso.", "type": "bf:Note" } ], @@ -5914,11 +5689,27 @@ "sierra-nypl" ], "subjectLiteral_exploded": [ - "Songs (Medium voice) with piano" + "Multiracial people", + "Multiracial people -- Juvenile fiction", + "Grandmothers", + "Grandmothers -- Juvenile fiction", + "Blind people", + "Blind people -- Juvenile fiction", + "Human skin color", + "Human skin color -- Juvenile fiction", + "Self-esteem", + "Self-esteem -- Juvenile fiction", + "Picture books for children" ], "numItemDatesParsed": [ 0 ], + "publisherLiteral": [ + "Pajama Press" + ], + "description": [ + "While out on a walk with her blind grandmother, Phoebe tries to describe the skin color of members of her family by comparing them to various foods." + ], "language": [ { "id": "lang:eng", @@ -5929,79 +5720,95 @@ 1 ], "createdYear": [ - 1918 + 2016 + ], + "buildingLocationIds": [ + "ma" ], "title": [ - "The toast" + "French toast" ], "type": [ "nypl:Item" ], "shelfMark": [ - "JPB 84-312" + "JFF 17-1945" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1918" + "2016" ], "creatorLiteral": [ - "Sousa, John Philip, 1854-1932." + "Winters, Kari-Lynn, 1969-" ], "numElectronicResources": [ 0 ], "contributorLiteral": [ - "Burnside, R. H. (Robert Hubberthorne), 1873-1952.", - "Champlin, Fred P." + "Thisdale, François, 1964-" ], "dateStartYear": [ - 1918 + 2016 ], "idOclc": [ - "NYPG004000622-C" + "943594881" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "JPB 84-312" + "value": "JFF 17-1945" }, { "type": "nypl:Bnumber", - "value": "11373665" + "value": "22227752" }, { - "type": "nypl:Oclc", - "value": "NYPG004000622-C" + "type": "bf:Isbn", + "value": "9781772780062" }, { - "type": "bf:Identifier", - "value": "NNSZ00405622" + "type": "bf:Isbn", + "value": "1772780065" + }, + { + "type": "nypl:Oclc", + "value": "943594881" }, { "type": "bf:Identifier", - "value": "(WaOLN)nyp1381621" + "value": "(OCoLC)943594881" } ], - "updatedAt": 1712854138515, + "popularity": 0, + "updatedAt": 1729183707636, "publicationStatement": [ - "[ca. 1918]" + "Toronto, Ontario, Canada : Pajama Press, 2016." + ], + "genreForm": [ + "Fiction.", + "Juvenile works." + ], + "idIsbn": [ + "9781772780062", + "1772780065" ], "identifier": [ - "urn:shelfmark:JPB 84-312", - "urn:bnum:11373665", - "urn:oclc:NYPG004000622-C", - "urn:identifier:NNSZ00405622", - "urn:identifier:(WaOLN)nyp1381621" + "urn:shelfmark:JFF 17-1945", + "urn:bnum:22227752", + "urn:isbn:9781772780062", + "urn:isbn:1772780065", + "urn:oclc:943594881", + "urn:identifier:(OCoLC)943594881" ], "numCheckinCardItems": [ 0 ], "materialType": [ { - "id": "resourcetypes:not", - "label": "Notated music" + "id": "resourcetypes:txt", + "label": "Text" } ], "carrierType": [ @@ -6011,7 +5818,7 @@ } ], "dateString": [ - "1918" + "2016" ], "mediaType": [ { @@ -6020,12 +5827,27 @@ } ], "subjectLiteral": [ - "Songs (Medium voice) with piano." + "Multiracial people -- Juvenile fiction.", + "Grandmothers -- Juvenile fiction.", + "Blind people -- Juvenile fiction.", + "Human skin color -- Juvenile fiction.", + "Self-esteem -- Juvenile fiction.", + "Picture books for children.", + "Blind people.", + "Grandmothers.", + "Human skin color.", + "Self-esteem." ], "titleDisplay": [ - "The toast / words by R.J. Burnside ; music by John Philip Sousa." + "French toast / written by Kari-Lynn Winters ; illustrated by François Thisdale." + ], + "uri": "b22227752", + "lccClassification": [ + "PZ7.W7674 Fr 2016" + ], + "placeOfPublication": [ + "Toronto, Ontario, Canada" ], - "uri": "b11373665", "issuance": [ { "id": "urn:biblevel:m", @@ -6033,12 +5855,19 @@ } ], "dimensions": [ - "34 cm." + "24 x 27 cm" + ], + "idIsbn_clean": [ + "9781772780062", + "1772780065" ] }, "sort": [ - 544.9655, - "b11373665" + 546.37494, + "b22227752" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { @@ -6051,7 +5880,7 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "b11373665", + "_id": "b22227752", "_nested": { "field": "items", "offset": 0 @@ -6060,53 +5889,70 @@ "_source": { "accessMessage": [ { - "id": "accessMessage:u", - "label": "Supervised use" + "id": "accessMessage:1", + "label": "Use in library" } ], "accessMessage_packed": [ - "accessMessage:u||Supervised use" + "accessMessage:1||Use in library" ], "catalogItemType": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" + "catalogItemType:55||book, limited circ, MaRLI" ], "formatLiteral": [ - "Notated music" + "Text" ], "holdingLocation": [ { - "id": "loc:pam38", - "label": "Performing Arts Research Collections - Music" + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" } ], "holdingLocation_packed": [ - "loc:pam38||Performing Arts Research Collections - Music" + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433122276318" ], "identifier": [ - "urn:shelfmark:JPB 84-312" + "urn:shelfmark:JFF 17-1945", + "urn:barcode:33433122276318" ], "identifierV2": [ { - "value": "JPB 84-312", + "value": "JFF 17-1945", "type": "bf:ShelfMark" + }, + { + "value": "33433122276318", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" } ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], "physicalLocation": [ - "JPB 84-312" + "JFF 17-1945" ], "requestable": [ - false + true ], "shelfMark": [ - "JPB 84-312" + "JFF 17-1945" ], - "shelfMark_sort": "aJPB 84-000312", + "shelfMark_sort": "aJFF 17-001945", "status": [ { "id": "status:a", @@ -6119,10 +5965,7 @@ "type": [ "bf:Item" ], - "uri": "i15897006", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Sousa%2C+John+Philip%2C+1854-1932.&CallNumber=JPB+84-312&Date=1918&Form=30&Genre=book+non-circ&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db11373665&ItemISxN=i158970068&ItemPublisher=%5Bca.+1918%5D&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b113736654&Site=LPAMR&Title=The+toast" - ] + "uri": "i37949151" }, "sort": [ null @@ -6136,7 +5979,7 @@ { "_index": "resources-2024-10-22", "_id": "b11373667", - "_score": 543.8535, + "_score": 545.6388, "_source": { "extent": [ "1 ms. score (14 p.) ;" @@ -6192,6 +6035,9 @@ "createdYear": [ 1918 ], + "buildingLocationIds": [ + "pa" + ], "title": [ "The toast" ], @@ -6298,9 +6144,12 @@ ] }, "sort": [ - 543.8535, + 545.6388, "b11373667" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -6319,70 +6168,70 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "identifier": [ + "urn:shelfmark:JPB 84-314" + ], + "physicalLocation": [ + "JPB 84-314" + ], + "shelfMark_sort": "aJPB 84-000314", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], "accessMessage": [ { "id": "accessMessage:u", "label": "Supervised use" } ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" + "status_packed": [ + "status:a||Available" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Sousa%2C+John+Philip%2C+1854-1932.&CallNumber=JPB+84-314&Date=1918&Form=30&Genre=book+non-circ&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db11373667&ItemISxN=i158970081&ItemPublisher=1918+Mar.+6&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b113736678&Site=LPAMR&Title=The+toast" ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Notated music" + "shelfMark": [ + "JPB 84-314" ], - "holdingLocation": [ + "uri": "i15897008", + "identifierV2": [ { - "id": "loc:pam38", - "label": "Performing Arts Research Collections - Music" + "type": "bf:ShelfMark", + "value": "JPB 84-314" } ], "holdingLocation_packed": [ "loc:pam38||Performing Arts Research Collections - Music" ], - "identifier": [ - "urn:shelfmark:JPB 84-314" + "requestable": [ + false ], - "identifierV2": [ + "catalogItemType": [ { - "value": "JPB 84-314", - "type": "bf:ShelfMark" + "id": "catalogItemType:2", + "label": "book non-circ" } ], - "physicalLocation": [ - "JPB 84-314" - ], - "requestable": [ - false + "formatLiteral": [ + "Notated music" ], - "shelfMark": [ - "JPB 84-314" + "holdingLocation": [ + { + "id": "loc:pam38", + "label": "Performing Arts Research Collections - Music" + } ], - "shelfMark_sort": "aJPB 84-000314", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15897008", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Sousa%2C+John+Philip%2C+1854-1932.&CallNumber=JPB+84-314&Date=1918&Form=30&Genre=book+non-circ&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db11373667&ItemISxN=i158970081&ItemPublisher=1918+Mar.+6&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b113736678&Site=LPAMR&Title=The+toast" ] }, "sort": [ @@ -6396,124 +6245,119 @@ }, { "_index": "resources-2024-10-22", - "_id": "cb1808514", - "_score": 540.224, + "_id": "b11373665", + "_score": 544.83466, "_source": { "extent": [ - "1 score (3 unnumbered pages, 12 pages) ;" + "1 ms. score (6 p.) ;" ], "note": [ { "noteType": "Note", - "label": "For orchestra.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Program notes by Jack Gottlieb.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 2:30.", + "label": "Copyist's ms., in ink.", "type": "bf:Note" }, { "noteType": "Note", - "label": "Recorded by the Israel Philharmonic, the composer conducting, on Deutsche Grammophon 2532 052.", + "label": "For voice and piano.", "type": "bf:Note" }, { "noteType": "Note", - "label": "Also available in a version for symphonic band.", + "label": "Stamp on pp. [1] & 6: Fred P. Champlin, Autographing and Copying.", "type": "bf:Note" } ], "nyplSource": [ - "recap-cul" + "sierra-nypl" + ], + "subjectLiteral_exploded": [ + "Songs (Medium voice) with piano" + ], + "numItemDatesParsed": [ + 0 + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } ], - "subjectLiteral_exploded": [ - "Orchestral music", - "Orchestral music -- Scores" + "numItemsTotal": [ + 1 ], - "publisherLiteral": [ - "Jalni Publications ; Boosey & Hawkes, sole selling agent" + "createdYear": [ + 1918 ], - "dateEndString": [ - "1980" + "buildingLocationIds": [ + "pa" ], - "createdYear": [ - 1984 + "title": [ + "The toast" ], "type": [ "nypl:Item" ], - "title": [ - "A musical toast" + "shelfMark": [ + "JPB 84-312" ], - "creatorLiteral": [ - "Bernstein, Leonard, 1918-1990." + "numItemVolumesParsed": [ + 0 ], "createdString": [ - "1984" + "1918" ], - "seriesStatement": [ - "Hawkes pocket scores" + "creatorLiteral": [ + "Sousa, John Philip, 1854-1932." ], "numElectronicResources": [ 0 ], + "contributorLiteral": [ + "Burnside, R. H. (Robert Hubberthorne), 1873-1952.", + "Champlin, Fred P." + ], "dateStartYear": [ - 1984 + 1918 + ], + "idOclc": [ + "NYPG004000622-C" ], "identifierV2": [ { - "type": "nypl:Bnumber", - "value": "1808514" - }, - { - "type": "nypl:Oclc", - "value": "ocm11578466" + "type": "bf:ShelfMark", + "value": "JPB 84-312" }, { - "type": "bf:Identifier", - "value": "H.P.S. 976 Boosey & Hawkes" + "type": "nypl:Bnumber", + "value": "11373665" }, { - "type": "bf:Identifier", - "value": "(OCoLC)ocm11578466" + "type": "nypl:Oclc", + "value": "NYPG004000622-C" }, { "type": "bf:Identifier", - "value": "(NNC)1808514" + "value": "NNSZ00405622" }, { "type": "bf:Identifier", - "value": "1808514" + "value": "(WaOLN)nyp1381621" } ], - "idOclc": [ - "ocm11578466" - ], - "uniformTitle": [ - "Musical toast", - "Hawkes pocket scores." - ], - "dateEndYear": [ - 1980 - ], - "holdings": [], - "updatedAt": 1664590433971, + "updatedAt": 1712854138515, "publicationStatement": [ - "[Place of publication not identified] : Jalni Publications ; New York, N.Y. : Boosey & Hawkes, sole selling agent, 1984, ©1980." + "[ca. 1918]" ], "identifier": [ - "urn:bnum:1808514", - "urn:oclc:ocm11578466", - "urn:undefined:H.P.S. 976 Boosey & Hawkes", - "urn:undefined:(OCoLC)ocm11578466", - "urn:undefined:(NNC)1808514", - "urn:undefined:1808514" + "urn:shelfmark:JPB 84-312", + "urn:bnum:11373665", + "urn:oclc:NYPG004000622-C", + "urn:identifier:NNSZ00405622", + "urn:identifier:(WaOLN)nyp1381621" + ], + "numCheckinCardItems": [ + 0 ], "materialType": [ { @@ -6528,7 +6372,7 @@ } ], "dateString": [ - "1984" + "1918" ], "mediaType": [ { @@ -6537,37 +6381,28 @@ } ], "subjectLiteral": [ - "Orchestral music -- Scores." + "Songs (Medium voice) with piano." ], "titleDisplay": [ - "A musical toast / Leonard Bernstein." - ], - "uri": "cb1808514", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "[Place of publication not identified] : New York, N.Y." + "The toast / words by R.J. Burnside ; music by John Philip Sousa." ], + "uri": "b11373665", "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Musical toast" - ], "dimensions": [ - "27 cm." + "34 cm." ] }, "sort": [ - 540.224, - "cb1808514" + 544.83466, + "b11373665" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { @@ -6580,79 +6415,78 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "cb1808514", + "_id": "b11373665", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "uri": "ci2278358", - "status": [ - { - "id": "status:a", - "label": "Available" - } + "accessMessage_packed": [ + "accessMessage:u||Supervised use" ], - "status_packed": [ - "status:a||Available" + "identifier": [ + "urn:shelfmark:JPB 84-312" ], - "owner": [ - { - "id": "orgs:0002", - "label": "Columbia University Libraries" - } + "physicalLocation": [ + "JPB 84-312" ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "shelfMark_sort": "aJPB 84-000312", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" ], - "catalogItemType": [ + "accessMessage": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "accessMessage:u", + "label": "Supervised use" } ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" + "status_packed": [ + "status:a||Available" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Sousa%2C+John+Philip%2C+1854-1932.&CallNumber=JPB+84-312&Date=1918&Form=30&Genre=book+non-circ&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db11373665&ItemISxN=i158970068&ItemPublisher=%5Bca.+1918%5D&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b113736654&Site=LPAMR&Title=The+toast" + ], + "type": [ + "bf:Item" ], "shelfMark": [ - "61 B458 M9" + "JPB 84-312" ], + "uri": "i15897006", "identifierV2": [ { - "value": "61 B458 M9", - "type": "bf:ShelfMark" - }, - { - "type": "bf:Barcode", - "value": "MR61509485" + "type": "bf:ShelfMark", + "value": "JPB 84-312" } ], - "physicalLocation": [ - "61 B458 M9" - ], - "recapCustomerCode": [ - "MR" - ], - "identifier": [ - "urn:barcode:MR61509485" - ], - "idBarcode": [ - "MR61509485" + "holdingLocation_packed": [ + "loc:pam38||Performing Arts Research Collections - Music" ], "requestable": [ - true + false ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:2", + "label": "book non-circ" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:pam38", + "label": "Performing Arts Research Collections - Music" + } ], - "shelfMark_sort": "a61 B458 M000009" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -6665,151 +6499,132 @@ }, { "_index": "resources-2024-10-22", - "_id": "b19635190", - "_score": 535.79224, + "_id": "cb1808514", + "_score": 539.6899, "_source": { "extent": [ - "1 sound disc (46 min.) : digital, mono. ;" + "1 score (3 unnumbered pages, 12 pages) ;" ], "note": [ { "noteType": "Note", - "label": "Audio portion of CBS Television broadcast.", + "label": "For orchestra.", "type": "bf:Note" }, { "noteType": "Note", - "label": "Transfer to compact disc incomplete due to damage to the original lacquer discs; side one is completely delaminated, and other sides have minor damage. Original program ran 60 min.", + "label": "Program notes by Jack Gottlieb.", "type": "bf:Note" }, { - "noteType": "Access", - "label": "Access to original items restricted.", + "noteType": "Note", + "label": "Duration: ca. 2:30.", "type": "bf:Note" }, { - "noteType": "Credits", - "label": "Marlo Lewis and Ed Sullivan (producers) ; John Wray (direction) ; Ray Bloch (musical direction)", + "noteType": "Note", + "label": "Recorded by the Israel Philharmonic, the composer conducting, on Deutsche Grammophon 2532 052.", "type": "bf:Note" }, { - "noteType": "Linking Entry", - "label": "Forms part of the Oscar Hammerstein collection of noncommercial sound recordings, 1942-1955.", + "noteType": "Note", + "label": "Also available in a version for symphonic band.", "type": "bf:Note" } ], - "partOf": [ - "Oscar Hammerstein collection of noncommercial sound recordings, 1942-1955." - ], "nyplSource": [ - "sierra-nypl" + "recap-cul" ], "subjectLiteral_exploded": [ - "Hammerstein, Oscar, II, 1895-1960", - "Hammerstein, Oscar, II, 1895-1960 -- Interviews", - "Lyricists", - "Lyricists -- United States", - "Lyricists -- United States -- Biography", - "Musicals", - "Musicals -- Excerpts" - ], - "numItemDatesParsed": [ - 0 - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } + "Orchestral music", + "Orchestral music -- Scores" ], - "numItemsTotal": [ - 1 + "publisherLiteral": [ + "Jalni Publications ; Boosey & Hawkes, sole selling agent" ], - "createdYear": [ - 1951 + "dateEndString": [ + "1980" ], - "dateEndString": [ - "0909" + "createdYear": [ + 1984 ], - "title": [ - "Toast of the town." + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], - "shelfMark": [ - "*LDC 37733" + "title": [ + "A musical toast" ], - "numItemVolumesParsed": [ - 0 + "creatorLiteral": [ + "Bernstein, Leonard, 1918-1990." ], "createdString": [ - "1951" + "1984" + ], + "seriesStatement": [ + "Hawkes pocket scores" ], "numElectronicResources": [ 0 ], - "contributorLiteral": [ - "Sullivan, Ed, 1901-1974.", - "Hammerstein, Oscar, II, 1895-1960", - "Horne, Lena", - "Merrill, Robert, 1917-2004.", - "Benzell, Mimi.", - "Tabbert, William, 1919-1974.", - "Hall, George, 1916-2002.", - "Cox, Wally, 1924-1973." - ], "dateStartYear": [ - 1951 - ], - "idOclc": [ - "794597226" + 1984 ], "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*LDC 37733" - }, { "type": "nypl:Bnumber", - "value": "19635190" + "value": "1808514" }, { "type": "nypl:Oclc", - "value": "794597226" + "value": "ocm11578466" }, { "type": "bf:Identifier", - "value": "(OCoLC)794597226" + "value": "H.P.S. 976 Boosey & Hawkes" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)ocm11578466" + }, + { + "type": "bf:Identifier", + "value": "(NNC)1808514" + }, + { + "type": "bf:Identifier", + "value": "1808514" } ], + "idOclc": [ + "ocm11578466" + ], "uniformTitle": [ - "Ed Sullivan show (Television program)" + "Musical toast", + "Hawkes pocket scores." ], "dateEndYear": [ - 909 + 1980 ], - "updatedAt": 1712870775817, + "holdings": [], + "updatedAt": 1664590433971, "publicationStatement": [ - "1951." - ], - "genreForm": [ - "Variety shows (Television programs)", - "Television commercials." + "[Place of publication not identified] : Jalni Publications ; New York, N.Y. : Boosey & Hawkes, sole selling agent, 1984, ©1980." ], "identifier": [ - "urn:shelfmark:*LDC 37733", - "urn:bnum:19635190", - "urn:oclc:794597226", - "urn:identifier:(OCoLC)794597226" - ], - "numCheckinCardItems": [ - 0 + "urn:bnum:1808514", + "urn:oclc:ocm11578466", + "urn:undefined:H.P.S. 976 Boosey & Hawkes", + "urn:undefined:(OCoLC)ocm11578466", + "urn:undefined:(NNC)1808514", + "urn:undefined:1808514" ], "materialType": [ { - "id": "resourcetypes:aud", - "label": "Audio" + "id": "resourcetypes:not", + "label": "Notated music" } ], "carrierType": [ @@ -6819,7 +6634,7 @@ } ], "dateString": [ - "1951" + "1984" ], "mediaType": [ { @@ -6828,14 +6643,21 @@ } ], "subjectLiteral": [ - "Hammerstein, Oscar, II, 1895-1960 -- Interviews.", - "Lyricists -- United States -- Biography.", - "Musicals -- Excerpts." + "Orchestral music -- Scores." ], "titleDisplay": [ - "Toast of the town. 1951-09-09, the Oscar Hammerstein story, pt. 1 [sound recording] / CBS-TV ; written by Ed Sullivan." + "A musical toast / Leonard Bernstein." + ], + "uri": "cb1808514", + "numItems": [ + 1 + ], + "numAvailable": [ + 1 + ], + "placeOfPublication": [ + "[Place of publication not identified] : New York, N.Y." ], - "uri": "b19635190", "issuance": [ { "id": "urn:biblevel:m", @@ -6843,19 +6665,15 @@ } ], "titleAlt": [ - "Oscar Hammerstein story, pt. 1", - "Oscar Hammerstein collection of noncommercial sound recordings." - ], - "tableOfContents": [ - "Opening commentary and early biography of Oscar Hammerstein II -- Indian love call (Mimi Benzell and Robert Merrill) -- Biography continued (incomplete) -- One alone (Bill Tabbert) (incomplete) -- Biography continued -- Can't help lovin' that man (Lena Horne) -- Biography continued (incomplete) -- Old man river (Robert Merrill) -- Biography continued (incomplete) -- Lover come back to me (Mimi Benzell) -- Comedy skit (incomplete) / George Hall ; Wally Cox -- Interview with Oscar Hammerstein II -- Ending commentary & sponsor's advertisements (Lincoln automobiles) -- Announcement for the next show." + "Musical toast" ], "dimensions": [ - "4 3/4 in." + "27 cm." ] }, "sort": [ - 535.79224, - "b19635190" + 539.6899, + "cb1808514" ], "inner_hits": { "items": { @@ -6868,78 +6686,68 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "b19635190", + "_id": "cb1808514", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { + "owner": [ + { + "id": "orgs:0002", + "label": "Columbia University Libraries" + } + ], "accessMessage_packed": [ - "accessMessage:1||Use in library" + "accessMessage:2||Request in advance" ], "identifier": [ - "urn:shelfmark:*LDC 37733", - "urn:barcode:33433099082954" + "urn:barcode:MR61509485" ], "physicalLocation": [ - "*LDC 37733" + "61 B458 M9" ], - "shelfMark_sort": "a*LDC 037733", + "shelfMark_sort": "a61 B458 M000009", "catalogItemType_packed": [ - "catalogItemType:23||archival sound recording" + "catalogItemType:1||non-circ" ], "accessMessage": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "accessMessage:2", + "label": "Request in advance" } ], "status_packed": [ "status:a||Available" ], - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*LDC+37733&Date=1951&Form=30&Genre=archival+sound+recording&ItemInfo1=Use+in+library&ItemInfo2=Access+to+original+items+restricted.&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db19635190&ItemISxN=i288025581&ItemNumber=33433099082954&ItemPublisher=1951.&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b19635190x&Site=LPAMRAMI&Title=Toast+of+the+town.&Transaction.CustomFields.MapsLocationNote=%5BCD%5D" - ], - "type": [ - "bf:Item" - ], + "uri": "ci2278358", "shelfMark": [ - "*LDC 37733" + "61 B458 M9" ], - "uri": "i28802558", "identifierV2": [ { "type": "bf:ShelfMark", - "value": "*LDC 37733" + "value": "61 B458 M9" }, { "type": "bf:Barcode", - "value": "33433099082954" + "value": "MR61509485" } ], - "holdingLocation_packed": [ - "loc:pah22||Performing Arts Research Collections - Recorded Sound" - ], "idBarcode": [ - "33433099082954" + "MR61509485" + ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" ], "requestable": [ - false + true ], "catalogItemType": [ { - "id": "catalogItemType:23", - "label": "archival sound recording" - } - ], - "formatLiteral": [ - "Audio" - ], - "holdingLocation": [ - { - "id": "loc:pah22", - "label": "Performing Arts Research Collections - Recorded Sound" + "id": "catalogItemType:1", + "label": "non-circ" } ], "status": [ @@ -6947,6 +6755,9 @@ "id": "status:a", "label": "Available" } + ], + "recapCustomerCode": [ + "MR" ] }, "sort": [ @@ -6960,8 +6771,8 @@ }, { "_index": "resources-2024-10-22", - "_id": "b19635203", - "_score": 535.79224, + "_id": "b19635190", + "_score": 535.7688, "_source": { "extent": [ "1 sound disc (46 min.) : digital, mono. ;" @@ -6974,7 +6785,7 @@ }, { "noteType": "Note", - "label": "Audio distortion from original source. Transfer to compact disc incomplete due to damage to the original lacquer discs; side one, two, five, and seven are completely delaminated, and other sides have minor damage. Original program ran 60 min.", + "label": "Transfer to compact disc incomplete due to damage to the original lacquer discs; side one is completely delaminated, and other sides have minor damage. Original program ran 60 min.", "type": "bf:Note" }, { @@ -7002,8 +6813,6 @@ "subjectLiteral_exploded": [ "Hammerstein, Oscar, II, 1895-1960", "Hammerstein, Oscar, II, 1895-1960 -- Interviews", - "Rodgers, Richard, 1902-1979", - "Rodgers, Richard, 1902-1979 -- Interviews", "Lyricists", "Lyricists -- United States", "Lyricists -- United States -- Biography", @@ -7026,7 +6835,10 @@ 1951 ], "dateEndString": [ - "0916" + "0909" + ], + "buildingLocationIds": [ + "pa" ], "title": [ "Toast of the town." @@ -7035,7 +6847,7 @@ "nypl:Item" ], "shelfMark": [ - "*LDC 50447" + "*LDC 37733" ], "numItemVolumesParsed": [ 0 @@ -7049,43 +6861,42 @@ "contributorLiteral": [ "Sullivan, Ed, 1901-1974.", "Hammerstein, Oscar, II, 1895-1960", - "Rodgers, Richard, 1902-1979", - "Rodgers, Richard, 1902-1979.", - "Deel, Sandra.", + "Horne, Lena", "Merrill, Robert, 1917-2004.", - "Rahn, Muriel.", + "Benzell, Mimi.", "Tabbert, William, 1919-1974.", - "Lawrence, Gertrude." + "Hall, George, 1916-2002.", + "Cox, Wally, 1924-1973." ], "dateStartYear": [ 1951 ], "idOclc": [ - "794597454" + "794597226" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "*LDC 50447" + "value": "*LDC 37733" }, { "type": "nypl:Bnumber", - "value": "19635203" + "value": "19635190" }, { "type": "nypl:Oclc", - "value": "794597454" + "value": "794597226" }, { "type": "bf:Identifier", - "value": "(OCoLC)794597454" + "value": "(OCoLC)794597226" } ], "uniformTitle": [ "Ed Sullivan show (Television program)" ], "dateEndYear": [ - 916 + 909 ], "updatedAt": 1712870775817, "publicationStatement": [ @@ -7096,10 +6907,10 @@ "Television commercials." ], "identifier": [ - "urn:shelfmark:*LDC 50447", - "urn:bnum:19635203", - "urn:oclc:794597454", - "urn:identifier:(OCoLC)794597454" + "urn:shelfmark:*LDC 37733", + "urn:bnum:19635190", + "urn:oclc:794597226", + "urn:identifier:(OCoLC)794597226" ], "numCheckinCardItems": [ 0 @@ -7127,14 +6938,13 @@ ], "subjectLiteral": [ "Hammerstein, Oscar, II, 1895-1960 -- Interviews.", - "Rodgers, Richard, 1902-1979 -- Interviews.", "Lyricists -- United States -- Biography.", "Musicals -- Excerpts." ], "titleDisplay": [ - "Toast of the town. 1951-09-16, the Oscar Hammerstein story, pt. 2 [sound recording] / CBS-TV ; written by Ed Sullivan." + "Toast of the town. 1951-09-09, the Oscar Hammerstein story, pt. 1 [sound recording] / CBS-TV ; written by Ed Sullivan." ], - "uri": "b19635203", + "uri": "b19635190", "issuance": [ { "id": "urn:biblevel:m", @@ -7142,19 +6952,22 @@ } ], "titleAlt": [ - "Oscar Hammerstein story, pt. 2", + "Oscar Hammerstein story, pt. 1", "Oscar Hammerstein collection of noncommercial sound recordings." ], "tableOfContents": [ - "[Sides 1 & 2 unplayable] -- Commentary on Oklahoma (Ed Sullivan, incomplete) -- People will say we're in love (Robert Merrill & Sandra Deel) -- Habanera from Carmen Jones (Murial Rahn, incomplete) -- [Side 5 unplayable] -- Some Enchanted Evening (Robert Merrill) -- You've Got To Be Carefully Taught (Bill Tabbert) -- Sullivan speaks with Hammerstein and Richard Rodgers about their partnership -- Whistle A Happy Tune & Getting To Know You (Gertrude Lawrence & Richard Rodgers, piano) -- You'll never walk alone (Merrill) -- Commercial announcement for Lincoln automobiles -- Concluding announcements (incomplete)" + "Opening commentary and early biography of Oscar Hammerstein II -- Indian love call (Mimi Benzell and Robert Merrill) -- Biography continued (incomplete) -- One alone (Bill Tabbert) (incomplete) -- Biography continued -- Can't help lovin' that man (Lena Horne) -- Biography continued (incomplete) -- Old man river (Robert Merrill) -- Biography continued (incomplete) -- Lover come back to me (Mimi Benzell) -- Comedy skit (incomplete) / George Hall ; Wally Cox -- Interview with Oscar Hammerstein II -- Ending commentary & sponsor's advertisements (Lincoln automobiles) -- Announcement for the next show." ], "dimensions": [ "4 3/4 in." ] }, "sort": [ - 535.79224, - "b19635203" + 535.7688, + "b19635190" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { @@ -7167,85 +6980,85 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "b19635203", + "_id": "b19635190", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:23", - "label": "archival sound recording" - } + "identifier": [ + "urn:shelfmark:*LDC 37733", + "urn:barcode:33433099082954" + ], + "physicalLocation": [ + "*LDC 37733" ], + "shelfMark_sort": "a*LDC 037733", "catalogItemType_packed": [ "catalogItemType:23||archival sound recording" ], - "formatLiteral": [ - "Audio" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:pah22", - "label": "Performing Arts Research Collections - Recorded Sound" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:pah22||Performing Arts Research Collections - Recorded Sound" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433099082962" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*LDC+37733&Date=1951&Form=30&Genre=archival+sound+recording&ItemInfo1=Use+in+library&ItemInfo2=Access+to+original+items+restricted.&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db19635190&ItemISxN=i288025581&ItemNumber=33433099082954&ItemPublisher=1951.&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b19635190x&Site=LPAMRAMI&Title=Toast+of+the+town.&Transaction.CustomFields.MapsLocationNote=%5BCD%5D" ], - "identifier": [ - "urn:shelfmark:*LDC 50447", - "urn:barcode:33433099082962" + "type": [ + "bf:Item" ], + "shelfMark": [ + "*LDC 37733" + ], + "uri": "i28802558", "identifierV2": [ { - "value": "*LDC 50447", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*LDC 37733" }, { - "value": "33433099082962", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433099082954" } ], - "physicalLocation": [ - "*LDC 50447" + "holdingLocation_packed": [ + "loc:pah22||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433099082954" ], "requestable": [ false ], - "shelfMark": [ - "*LDC 50447" + "catalogItemType": [ + { + "id": "catalogItemType:23", + "label": "archival sound recording" + } + ], + "formatLiteral": [ + "Audio" + ], + "holdingLocation": [ + { + "id": "loc:pah22", + "label": "Performing Arts Research Collections - Recorded Sound" + } ], - "shelfMark_sort": "a*LDC 050447", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28802585", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*LDC+50447&Date=1951&Form=30&Genre=archival+sound+recording&ItemInfo1=Use+in+library&ItemInfo2=Access+to+original+items+restricted.&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db19635203&ItemISxN=i288025854&ItemNumber=33433099082962&ItemPublisher=1951.&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b196352034&Site=LPAMRAMI&Title=Toast+of+the+town.&Transaction.CustomFields.MapsLocationNote=%5BCD%5D" ] }, "sort": [ @@ -7259,126 +7072,149 @@ }, { "_index": "resources-2024-10-22", - "_id": "b16436832", - "_score": 526.2649, + "_id": "b19635203", + "_score": 535.7688, "_source": { "extent": [ - "on 1 side of 1 sound disc : analog, 78 rpm, mono. ;" + "1 sound disc (46 min.) : digital, mono. ;" ], "note": [ { "noteType": "Note", - "label": "Victor: 4074; matrix no.: B1105.", + "label": "Audio portion of CBS Television broadcast.", "type": "bf:Note" }, { - "noteType": "Language", - "label": "Sung in French.", + "noteType": "Note", + "label": "Audio distortion from original source. Transfer to compact disc incomplete due to damage to the original lacquer discs; side one, two, five, and seven are completely delaminated, and other sides have minor damage. Original program ran 60 min.", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access to original items restricted.", + "type": "bf:Note" + }, + { + "noteType": "Credits", + "label": "Marlo Lewis and Ed Sullivan (producers) ; John Wray (direction) ; Ray Bloch (musical direction)", + "type": "bf:Note" + }, + { + "noteType": "Linking Entry", + "label": "Forms part of the Oscar Hammerstein collection of noncommercial sound recordings, 1942-1955.", "type": "bf:Note" } ], + "partOf": [ + "Oscar Hammerstein collection of noncommercial sound recordings, 1942-1955." + ], "nyplSource": [ "sierra-nypl" ], "subjectLiteral_exploded": [ - "Operas", - "Operas -- Excerpts" + "Hammerstein, Oscar, II, 1895-1960", + "Hammerstein, Oscar, II, 1895-1960 -- Interviews", + "Rodgers, Richard, 1902-1979", + "Rodgers, Richard, 1902-1979 -- Interviews", + "Lyricists", + "Lyricists -- United States", + "Lyricists -- United States -- Biography", + "Musicals", + "Musicals -- Excerpts" ], "numItemDatesParsed": [ 0 ], - "publisherLiteral": [ - "Victor" - ], "language": [ { - "id": "lang:fre", - "label": "French" + "id": "lang:eng", + "label": "English" } ], "numItemsTotal": [ 1 ], "createdYear": [ - 1908 + 1951 ], "dateEndString": [ - "1913" + "0916" + ], + "buildingLocationIds": [ + "pa" ], "title": [ - "Carmen. [Votre toast]" + "Toast of the town." ], "type": [ "nypl:Item" ], "shelfMark": [ - "*LO 338" + "*LDC 50447" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1908" - ], - "creatorLiteral": [ - "Bizet, Georges, 1838-1875." + "1951" ], "numElectronicResources": [ 0 ], "contributorLiteral": [ - "Gogorza, Emilio de, 1872-1949.", - "Victor Orchestra. prf" + "Sullivan, Ed, 1901-1974.", + "Hammerstein, Oscar, II, 1895-1960", + "Rodgers, Richard, 1902-1979", + "Rodgers, Richard, 1902-1979.", + "Deel, Sandra.", + "Merrill, Robert, 1917-2004.", + "Rahn, Muriel.", + "Tabbert, William, 1919-1974.", + "Lawrence, Gertrude." ], "dateStartYear": [ - 1908 + 1951 ], "idOclc": [ - "71232236" + "794597454" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "*LO 338" + "value": "*LDC 50447" }, { "type": "nypl:Bnumber", - "value": "16436832" + "value": "19635203" }, { "type": "nypl:Oclc", - "value": "71232236" - }, - { - "type": "bf:Identifier", - "value": "4074 Victor" - }, - { - "type": "bf:Identifier", - "value": "B1105 Victor" + "value": "794597454" }, { "type": "bf:Identifier", - "value": "(WaOLN)M010000216" + "value": "(OCoLC)794597454" } ], "uniformTitle": [ - "Carmen. Chanson du toréador" + "Ed Sullivan show (Television program)" ], "dateEndYear": [ - 1913 + 916 ], - "updatedAt": 1712868747443, + "updatedAt": 1712870775817, "publicationStatement": [ - "Camden, NJ : Victor, [between 1908 and 1913]" + "1951." + ], + "genreForm": [ + "Variety shows (Television programs)", + "Television commercials." ], "identifier": [ - "urn:shelfmark:*LO 338", - "urn:bnum:16436832", - "urn:oclc:71232236", - "urn:identifier:4074 Victor", - "urn:identifier:B1105 Victor", - "urn:identifier:(WaOLN)M010000216" + "urn:shelfmark:*LDC 50447", + "urn:bnum:19635203", + "urn:oclc:794597454", + "urn:identifier:(OCoLC)794597454" ], "numCheckinCardItems": [ 0 @@ -7396,7 +7232,7 @@ } ], "dateString": [ - "1908" + "1951" ], "mediaType": [ { @@ -7405,15 +7241,15 @@ } ], "subjectLiteral": [ - "Operas -- Excerpts." + "Hammerstein, Oscar, II, 1895-1960 -- Interviews.", + "Rodgers, Richard, 1902-1979 -- Interviews.", + "Lyricists -- United States -- Biography.", + "Musicals -- Excerpts." ], "titleDisplay": [ - "Carmen. Toreador song [sound recording] = [Votre toast] / Bizet." - ], - "uri": "b16436832", - "placeOfPublication": [ - "Camden, NJ" + "Toast of the town. 1951-09-16, the Oscar Hammerstein story, pt. 2 [sound recording] / CBS-TV ; written by Ed Sullivan." ], + "uri": "b19635203", "issuance": [ { "id": "urn:biblevel:m", @@ -7421,17 +7257,22 @@ } ], "titleAlt": [ - "Carmen. Chanson du toréador", - "Toreador song", - "Votre toast" + "Oscar Hammerstein story, pt. 2", + "Oscar Hammerstein collection of noncommercial sound recordings." + ], + "tableOfContents": [ + "[Sides 1 & 2 unplayable] -- Commentary on Oklahoma (Ed Sullivan, incomplete) -- People will say we're in love (Robert Merrill & Sandra Deel) -- Habanera from Carmen Jones (Murial Rahn, incomplete) -- [Side 5 unplayable] -- Some Enchanted Evening (Robert Merrill) -- You've Got To Be Carefully Taught (Bill Tabbert) -- Sullivan speaks with Hammerstein and Richard Rodgers about their partnership -- Whistle A Happy Tune & Getting To Know You (Gertrude Lawrence & Richard Rodgers, piano) -- You'll never walk alone (Merrill) -- Commercial announcement for Lincoln automobiles -- Concluding announcements (incomplete)" ], "dimensions": [ - "10 in." + "4 3/4 in." ] }, "sort": [ - 526.2649, - "b16436832" + 535.7688, + "b19635203" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { @@ -7444,85 +7285,85 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "b16436832", + "_id": "b19635203", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:shelfmark:*LDC 50447", + "urn:barcode:33433099082962" + ], + "physicalLocation": [ + "*LDC 50447" + ], + "shelfMark_sort": "a*LDC 050447", + "catalogItemType_packed": [ + "catalogItemType:23||archival sound recording" + ], "accessMessage": [ { "id": "accessMessage:1", "label": "Use in library" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status_packed": [ + "status:a||Available" ], - "catalogItemType": [ - { - "id": "catalogItemType:12", - "label": "musical sound recording" - } + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*LDC+50447&Date=1951&Form=30&Genre=archival+sound+recording&ItemInfo1=Use+in+library&ItemInfo2=Access+to+original+items+restricted.&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db19635203&ItemISxN=i288025854&ItemNumber=33433099082962&ItemPublisher=1951.&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b196352034&Site=LPAMRAMI&Title=Toast+of+the+town.&Transaction.CustomFields.MapsLocationNote=%5BCD%5D" ], - "catalogItemType_packed": [ - "catalogItemType:12||musical sound recording" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Audio" + "shelfMark": [ + "*LDC 50447" ], - "holdingLocation": [ + "uri": "i28802585", + "identifierV2": [ { - "id": "loc:pah22", - "label": "Performing Arts Research Collections - Recorded Sound" + "type": "bf:ShelfMark", + "value": "*LDC 50447" + }, + { + "type": "bf:Barcode", + "value": "33433099082962" } ], "holdingLocation_packed": [ "loc:pah22||Performing Arts Research Collections - Recorded Sound" ], "idBarcode": [ - "33433070578319" + "33433099082962" ], - "identifier": [ - "urn:shelfmark:*LO 338 [Disc]", - "urn:barcode:33433070578319" + "requestable": [ + false ], - "identifierV2": [ - { - "value": "*LO 338 [Disc]", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433070578319", - "type": "bf:Barcode" + "id": "catalogItemType:23", + "label": "archival sound recording" } ], - "physicalLocation": [ - "*LO 338 [Disc]" - ], - "requestable": [ - false + "formatLiteral": [ + "Audio" ], - "shelfMark": [ - "*LO 338 [Disc]" + "holdingLocation": [ + { + "id": "loc:pah22", + "label": "Performing Arts Research Collections - Recorded Sound" + } ], - "shelfMark_sort": "a*LO 338 [Disc]", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17239731", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Bizet%2C+Georges%2C+1838-1875.&CallNumber=*LO+338+%5BDisc%5D&Date=1908&Form=30&Genre=musical+sound+recording&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db16436832&ItemISxN=i172397315&ItemNumber=33433070578319&ItemPlace=Camden%2C+NJ&ItemPublisher=Victor%2C+%5Bbetween+1908+and+1913%5D&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b164368322&Site=LPAMRAMI&Title=Carmen.+%5BVotre+toast%5D" ] }, "sort": [ @@ -7536,114 +7377,137 @@ }, { "_index": "resources-2024-10-22", - "_id": "b12004445", - "_score": 524.9346, + "_id": "b16436832", + "_score": 527.9625, "_source": { "extent": [ - "124 p. ;" + "on 1 side of 1 sound disc : analog, 78 rpm, mono. ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Victor: 4074; matrix no.: B1105.", + "type": "bf:Note" + }, + { + "noteType": "Language", + "label": "Sung in French.", + "type": "bf:Note" + } ], "nyplSource": [ "sierra-nypl" ], + "subjectLiteral_exploded": [ + "Operas", + "Operas -- Excerpts" + ], "numItemDatesParsed": [ 0 ], "publisherLiteral": [ - "Kneipp" + "Victor" ], "language": [ { - "id": "lang:ger", - "label": "German" + "id": "lang:fre", + "label": "French" } ], "numItemsTotal": [ 1 ], "createdYear": [ - 1993 + 1908 + ], + "dateEndString": [ + "1913" + ], + "buildingLocationIds": [ + "pa" ], "title": [ - "Mein Lieblings-Toast : 300 heisse Tips für Toast-Fans" + "Carmen. [Votre toast]" ], "type": [ "nypl:Item" ], "shelfMark": [ - "JFD 94-21395" + "*LO 338" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1993" + "1908" ], "creatorLiteral": [ - "Heindel, Gabriele." + "Bizet, Georges, 1838-1875." ], "numElectronicResources": [ 0 ], + "contributorLiteral": [ + "Gogorza, Emilio de, 1872-1949.", + "Victor Orchestra. prf" + ], "dateStartYear": [ - 1993 + 1908 ], "idOclc": [ - "31256373", - "NYPGR31256373-B" + "71232236" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "JFD 94-21395" + "value": "*LO 338" }, { "type": "nypl:Bnumber", - "value": "12004445" - }, - { - "type": "bf:Isbn", - "value": "3900696349" + "value": "16436832" }, { "type": "nypl:Oclc", - "value": "31256373" + "value": "71232236" }, { - "type": "nypl:Oclc", - "value": "NYPGR31256373-B" + "type": "bf:Identifier", + "value": "4074 Victor" }, { "type": "bf:Identifier", - "value": "(OCoLC)31256373" + "value": "B1105 Victor" }, { "type": "bf:Identifier", - "value": "LC 199410" + "value": "(WaOLN)M010000216" } ], - "updatedAt": 1711150297035, - "publicationStatement": [ - "Leoben : Kneipp, 1993." + "uniformTitle": [ + "Carmen. Chanson du toréador" ], - "idIsbn": [ - "3900696349" + "dateEndYear": [ + 1913 + ], + "updatedAt": 1712868747443, + "publicationStatement": [ + "Camden, NJ : Victor, [between 1908 and 1913]" ], "identifier": [ - "urn:shelfmark:JFD 94-21395", - "urn:bnum:12004445", - "urn:isbn:3900696349", - "urn:oclc:31256373", - "urn:oclc:NYPGR31256373-B", - "urn:identifier:(OCoLC)31256373", - "urn:identifier:LC 199410" + "urn:shelfmark:*LO 338", + "urn:bnum:16436832", + "urn:oclc:71232236", + "urn:identifier:4074 Victor", + "urn:identifier:B1105 Victor", + "urn:identifier:(WaOLN)M010000216" ], "numCheckinCardItems": [ 0 ], "materialType": [ { - "id": "resourcetypes:txt", - "label": "Text" + "id": "resourcetypes:aud", + "label": "Audio" } ], "carrierType": [ @@ -7653,7 +7517,7 @@ } ], "dateString": [ - "1993" + "1908" ], "mediaType": [ { @@ -7661,12 +7525,15 @@ "label": "unmediated" } ], + "subjectLiteral": [ + "Operas -- Excerpts." + ], "titleDisplay": [ - "Mein Lieblings-Toast : 300 heisse Tips für Toast-Fans / Gabriele Heindel." + "Carmen. Toreador song [sound recording] = [Votre toast] / Bizet." ], - "uri": "b12004445", + "uri": "b16436832", "placeOfPublication": [ - "Leoben" + "Camden, NJ" ], "issuance": [ { @@ -7674,16 +7541,21 @@ "label": "monograph/item" } ], - "dimensions": [ - "21 cm." + "titleAlt": [ + "Carmen. Chanson du toréador", + "Toreador song", + "Votre toast" ], - "idIsbn_clean": [ - "3900696349" + "dimensions": [ + "10 in." ] }, "sort": [ - 524.9346, - "b12004445" + 527.9625, + "b16436832" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { @@ -7696,92 +7568,86 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "b12004445", + "_id": "b16436832", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:shelfmark:*LO 338 [Disc]", + "urn:barcode:33433070578319" + ], + "physicalLocation": [ + "*LO 338 [Disc]" + ], + "shelfMark_sort": "a*LO 338 [Disc]", + "catalogItemType_packed": [ + "catalogItemType:12||musical sound recording" + ], "accessMessage": [ { "id": "accessMessage:1", "label": "Use in library" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status_packed": [ + "status:a||Available" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Bizet%2C+Georges%2C+1838-1875.&CallNumber=*LO+338+%5BDisc%5D&Date=1908&Form=30&Genre=musical+sound+recording&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db16436832&ItemISxN=i172397315&ItemNumber=33433070578319&ItemPlace=Camden%2C+NJ&ItemPublisher=Victor%2C+%5Bbetween+1908+and+1913%5D&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b164368322&Site=LPAMRAMI&Title=Carmen.+%5BVotre+toast%5D" ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Text" + "shelfMark": [ + "*LO 338 [Disc]" ], - "holdingLocation": [ + "uri": "i17239731", + "identifierV2": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "type": "bf:ShelfMark", + "value": "*LO 338 [Disc]" + }, + { + "type": "bf:Barcode", + "value": "33433070578319" } ], "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "loc:pah22||Performing Arts Research Collections - Recorded Sound" ], "idBarcode": [ - "33433041530118" + "33433070578319" ], - "identifier": [ - "urn:shelfmark:JFD 94-21395", - "urn:barcode:33433041530118" + "requestable": [ + false ], - "identifierV2": [ - { - "value": "JFD 94-21395", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433041530118", - "type": "bf:Barcode" + "id": "catalogItemType:12", + "label": "musical sound recording" } ], - "owner": [ + "formatLiteral": [ + "Audio" + ], + "holdingLocation": [ { - "id": "orgs:1101", - "label": "General Research Division" + "id": "loc:pah22", + "label": "Performing Arts Research Collections - Recorded Sound" } ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "JFD 94-21395" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFD 94-21395" - ], - "shelfMark_sort": "aJFD 94-021395", "status": [ { "id": "status:a", "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13317173" + } + ] }, "sort": [ null @@ -7794,11 +7660,11 @@ }, { "_index": "resources-2024-10-22", - "_id": "b13131869", - "_score": 518.1914, + "_id": "b12004445", + "_score": 524.87006, "_source": { "extent": [ - "242 p. ;" + "124 p. ;" ], "nyplSource": [ "sierra-nypl" @@ -7807,69 +7673,96 @@ 0 ], "publisherLiteral": [ - "Kingston Press" + "Kneipp" ], "language": [ { - "id": "lang:eng", - "label": "English" + "id": "lang:ger", + "label": "German" } ], "numItemsTotal": [ 1 ], "createdYear": [ - 1920 + 1993 + ], + "buildingLocationIds": [ + "ma" ], "title": [ - "The royal toast" + "Mein Lieblings-Toast : 300 heisse Tips für Toast-Fans" ], "type": [ "nypl:Item" ], "shelfMark": [ - "NCM (Back, K. J. Royal toast)" + "JFD 94-21395" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1920" + "1993" ], "creatorLiteral": [ - "Australianus." + "Heindel, Gabriele." ], "numElectronicResources": [ 0 ], "dateStartYear": [ - 1920 + 1993 ], "idOclc": [ - "18297389" + "31256373", + "NYPGR31256373-B" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "NCM (Back, K. J. Royal toast)" + "value": "JFD 94-21395" }, { "type": "nypl:Bnumber", - "value": "13131869" + "value": "12004445" + }, + { + "type": "bf:Isbn", + "value": "3900696349" }, { "type": "nypl:Oclc", - "value": "18297389" + "value": "31256373" + }, + { + "type": "nypl:Oclc", + "value": "NYPGR31256373-B" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)31256373" + }, + { + "type": "bf:Identifier", + "value": "LC 199410" } ], - "updatedAt": 1711048347990, + "updatedAt": 1711150297035, "publicationStatement": [ - "Sydney [N.S.W.] : Kingston Press, 1920." + "Leoben : Kneipp, 1993." + ], + "idIsbn": [ + "3900696349" ], "identifier": [ - "urn:shelfmark:NCM (Back, K. J. Royal toast)", - "urn:bnum:13131869", - "urn:oclc:18297389" + "urn:shelfmark:JFD 94-21395", + "urn:bnum:12004445", + "urn:isbn:3900696349", + "urn:oclc:31256373", + "urn:oclc:NYPGR31256373-B", + "urn:identifier:(OCoLC)31256373", + "urn:identifier:LC 199410" ], "numCheckinCardItems": [ 0 @@ -7887,7 +7780,7 @@ } ], "dateString": [ - "1920" + "1993" ], "mediaType": [ { @@ -7896,11 +7789,11 @@ } ], "titleDisplay": [ - "The royal toast / by \"Australianus\"." + "Mein Lieblings-Toast : 300 heisse Tips für Toast-Fans / Gabriele Heindel." ], - "uri": "b13131869", + "uri": "b12004445", "placeOfPublication": [ - "Sydney [N.S.W.]" + "Leoben" ], "issuance": [ { @@ -7909,12 +7802,18 @@ } ], "dimensions": [ - "19 cm." + "21 cm." + ], + "idIsbn_clean": [ + "3900696349" ] }, "sort": [ - 518.1914, - "b13131869" + 524.87006, + "b12004445" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { @@ -7927,95 +7826,92 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "b13131869", + "_id": "b12004445", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:32", - "label": "google project, book" + "id": "orgs:1101", + "label": "General Research Division" } ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" + "identifier": [ + "urn:shelfmark:JFD 94-21395", + "urn:barcode:33433041530118" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "JFD 94-21395" ], - "holdingLocation": [ + "shelfMark_sort": "aJFD 94-021395", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433112057363" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:NCM (Back, K. J. Royal toast)", - "urn:barcode:33433112057363" + "shelfMark": [ + "JFD 94-21395" ], + "uri": "i13317173", "identifierV2": [ { - "value": "NCM (Back, K. J. Royal toast)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFD 94-21395" }, { - "value": "33433112057363", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "type": "bf:Barcode", + "value": "33433041530118" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" ], - "physicalLocation": [ - "NCM (Back, K. J. Royal toast)" + "idBarcode": [ + "33433041530118" ], - "recapCustomerCode": [ - "NA" + "owner_packed": [ + "orgs:1101||General Research Division" ], "requestable": [ true ], - "shelfMark": [ - "NCM (Back, K. J. Royal toast)" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aNCM (Back, K. J. Royal toast)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16274064" + ] }, "sort": [ null @@ -8029,7 +7925,7 @@ { "_index": "resources-2024-10-22", "_id": "b10981311", - "_score": 517.82947, + "_score": 518.5518, "_source": { "extent": [ "1 miniature score (12 p.) ;" @@ -8084,6 +7980,9 @@ "dateEndString": [ "1980" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "A musical toast" ], @@ -8206,7 +8105,7 @@ ] }, "sort": [ - 517.82947, + 518.5518, "b10981311" ], "inner_hits": { @@ -8227,88 +8126,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:57", - "label": "printed music limited circ MaRLI" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JNF 87-27", + "urn:barcode:33433047232982" + ], + "physicalLocation": [ + "JNF 87-27" + ], + "shelfMark_sort": "aJNF 87-000027", "catalogItemType_packed": [ "catalogItemType:57||printed music limited circ MaRLI" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433047232982" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JNF 87-27", - "urn:barcode:33433047232982" + "shelfMark": [ + "JNF 87-27" ], + "uri": "i13956002", "identifierV2": [ { - "value": "JNF 87-27", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JNF 87-27" }, { - "value": "33433047232982", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433047232982" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433047232982" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JNF 87-27" + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:57", + "label": "printed music limited circ MaRLI" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NP" ], - "requestable": [ - true - ], - "shelfMark": [ - "JNF 87-27" - ], - "shelfMark_sort": "aJNF 87-000027", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13956002" + ] }, "sort": [ null @@ -8321,9 +8220,12 @@ }, { "_index": "resources-2024-10-22", - "_id": "b17174971", - "_score": 517.0674, + "_id": "b13131869", + "_score": 517.1082, "_source": { + "extent": [ + "242 p. ;" + ], "nyplSource": [ "sierra-nypl" ], @@ -8331,10 +8233,7 @@ 0 ], "publisherLiteral": [ - "Putnam" - ], - "description": [ - "Thomas always pretended his favorite menu was creamed angleworms on toast. Then one day when he also pretended he was sick enough to miss school, his family thought he deserved whatever he wanted for lunch." + "Kingston Press" ], "language": [ { @@ -8346,58 +8245,60 @@ 1 ], "createdYear": [ - 1969 + 1920 ], - "dateEndString": [ - "1942" + "buildingLocationIds": [ + "rc" ], "title": [ - "Angleworms on toast." + "The royal toast" ], "type": [ "nypl:Item" ], + "shelfMark": [ + "NCM (Back, K. J. Royal toast)" + ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1969" + "1920" ], "creatorLiteral": [ - "Kantor, MacKinlay, 1904-1977." - ], - "idLccn": [ - "68024523" + "Australianus." ], "numElectronicResources": [ 0 ], - "contributorLiteral": [ - "Wiese, Kurt, 1887-" - ], "dateStartYear": [ - 1969 + 1920 + ], + "idOclc": [ + "18297389" ], "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "NCM (Back, K. J. Royal toast)" + }, { "type": "nypl:Bnumber", - "value": "17174971" + "value": "13131869" }, { - "type": "bf:Lccn", - "value": "68024523" + "type": "nypl:Oclc", + "value": "18297389" } ], - "dateEndYear": [ - 1942 - ], - "updatedAt": 1711655200426, + "updatedAt": 1711048347990, "publicationStatement": [ - "New York : Putnam, [1969, c1942]" + "Sydney [N.S.W.] : Kingston Press, 1920." ], "identifier": [ - "urn:bnum:17174971", - "urn:lccn:68024523" + "urn:shelfmark:NCM (Back, K. J. Royal toast)", + "urn:bnum:13131869", + "urn:oclc:18297389" ], "numCheckinCardItems": [ 0 @@ -8415,7 +8316,7 @@ } ], "dateString": [ - "1969" + "1920" ], "mediaType": [ { @@ -8424,25 +8325,25 @@ } ], "titleDisplay": [ - "Angleworms on toast. Illustrated by Kurt Wiese." - ], - "uri": "b17174971", - "lccClassification": [ - "PZ7.K128 An5" + "The royal toast / by \"Australianus\"." ], + "uri": "b13131869", "placeOfPublication": [ - "New York" + "Sydney [N.S.W.]" ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } + ], + "dimensions": [ + "19 cm." ] }, "sort": [ - 517.0674, - "b17174971" + 517.1082, + "b13131869" ], "inner_hits": { "items": { @@ -8455,95 +8356,95 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "b17174971", + "_id": "b13131869", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "identifier": [ + "urn:shelfmark:NCM (Back, K. J. Royal toast)", + "urn:barcode:33433112057363" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "NCM (Back, K. J. Royal toast)" ], - "holdingLocation": [ + "shelfMark_sort": "aNCM (Back, K. J. Royal toast)", + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33333059683314" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:J FIC K", - "urn:barcode:33333059683314" + "shelfMark": [ + "NCM (Back, K. J. Royal toast)" ], + "uri": "i16274064", "identifierV2": [ { - "value": "J FIC K", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "NCM (Back, K. J. Royal toast)" }, { - "value": "33333059683314", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433112057363" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433112057363" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "J FIC K" - ], - "recapCustomerCode": [ - "NH" - ], "requestable": [ true ], - "shelfMark": [ - "J FIC K" + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aJ FIC K", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i22474239" + ] }, "sort": [ null @@ -8557,7 +8458,7 @@ { "_index": "resources-2024-10-22", "_id": "b13060795", - "_score": 515.3066, + "_score": 517.02386, "_source": { "extent": [ "29 p. col. illus." @@ -8593,6 +8494,9 @@ "createdYear": [ 1942 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Angleworms on toast" ], @@ -8688,9 +8592,12 @@ ] }, "sort": [ - 515.3066, + 517.02386, "b13060795" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -8709,79 +8616,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], "accessMessage_packed": [ "accessMessage:u||Supervised use" ], - "catalogItemType": [ - { - "id": "catalogItemType:66", - "label": "book, poor condition, non-MaRLI" - } + "identifier": [ + "urn:shelfmark:NAS (Kantor, M. Angleworms on toast)", + "urn:barcode:33433084609134" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "NAS (Kantor, M. Angleworms on toast)" ], + "shelfMark_sort": "aNAS (Kantor, M. Angleworms on toast)", "catalogItemType_packed": [ "catalogItemType:66||book, poor condition, non-MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:u", + "label": "Supervised use" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433084609134" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:NAS (Kantor, M. Angleworms on toast)", - "urn:barcode:33433084609134" + "shelfMark": [ + "NAS (Kantor, M. Angleworms on toast)" ], + "uri": "i16222433", "identifierV2": [ { - "value": "NAS (Kantor, M. Angleworms on toast)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "NAS (Kantor, M. Angleworms on toast)" }, { - "value": "33433084609134", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433084609134" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "NAS (Kantor, M. Angleworms on toast)" + "idBarcode": [ + "33433084609134" ], "requestable": [ true ], - "shelfMark": [ - "NAS (Kantor, M. Angleworms on toast)" + "catalogItemType": [ + { + "id": "catalogItemType:66", + "label": "book, poor condition, non-MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "aNAS (Kantor, M. Angleworms on toast)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16222433" + ] }, "sort": [ null @@ -8795,7 +8702,7 @@ { "_index": "resources-2024-10-22", "_id": "b11294632", - "_score": 514.90173, + "_score": 516.61816, "_source": { "extent": [ "xxi, 273 p. ;" @@ -8831,6 +8738,9 @@ "dateEndString": [ "1940" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Angels on toast" ], @@ -8964,9 +8874,12 @@ ] }, "sort": [ - 514.90173, + 516.61816, "b11294632" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -8985,14 +8898,57 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:shelfmark:JFD 90-6303", + "urn:barcode:33433040606604" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "JFD 90-6303" + ], + "shelfMark_sort": "aJFD 90-006303", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], "accessMessage": [ { "id": "accessMessage:1", "label": "Use in library" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JFD 90-6303" + ], + "uri": "i13160245", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFD 90-6303" + }, + { + "type": "bf:Barcode", + "value": "33433040606604" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433040606604" + ], + "requestable": [ + true ], "catalogItemType": [ { @@ -9000,64 +8956,259 @@ "label": "book, limited circ, MaRLI" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], "formatLiteral": [ "Text" ], - "holdingLocation": [ + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b17174971", + "_score": 515.98706, + "_source": { + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Putnam" + ], + "description": [ + "Thomas always pretended his favorite menu was creamed angleworms on toast. Then one day when he also pretended he was sick enough to miss school, his family thought he deserved whatever he wanted for lunch." + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 1 + ], + "createdYear": [ + 1969 + ], + "dateEndString": [ + "1942" + ], + "buildingLocationIds": [ + "rc" + ], + "title": [ + "Angleworms on toast." + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "1969" + ], + "creatorLiteral": [ + "Kantor, MacKinlay, 1904-1977." + ], + "idLccn": [ + "68024523" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Wiese, Kurt, 1887-" + ], + "dateStartYear": [ + 1969 + ], + "identifierV2": [ + { + "type": "nypl:Bnumber", + "value": "17174971" + }, + { + "type": "bf:Lccn", + "value": "68024523" + } + ], + "dateEndYear": [ + 1942 + ], + "updatedAt": 1711655200426, + "publicationStatement": [ + "New York : Putnam, [1969, c1942]" + ], + "identifier": [ + "urn:bnum:17174971", + "urn:lccn:68024523" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "1969" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "titleDisplay": [ + "Angleworms on toast. Illustrated by Kurt Wiese." + ], + "uri": "b17174971", + "lccClassification": [ + "PZ7.K128 An5" + ], + "placeOfPublication": [ + "New York" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ] + }, + "sort": [ + 515.98706, + "b17174971" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 1, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b17174971", + "_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:J FIC K", + "urn:barcode:33333059683314" + ], + "physicalLocation": [ + "J FIC K" + ], + "shelfMark_sort": "aJ FIC K", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433040606604" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFD 90-6303", - "urn:barcode:33433040606604" + "shelfMark": [ + "J FIC K" ], + "uri": "i22474239", "identifierV2": [ { - "value": "JFD 90-6303", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "J FIC K" }, { - "value": "33433040606604", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33333059683314" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" ], - "physicalLocation": [ - "JFD 90-6303" + "idBarcode": [ + "33333059683314" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "JFD 90-6303" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NH" ], - "shelfMark_sort": "aJFD 90-006303", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13160245" + ] }, "sort": [ null @@ -9071,7 +9222,7 @@ { "_index": "resources-2024-10-22", "_id": "cb15861113", - "_score": 509.2913, + "_score": 510.4879, "_source": { "extent": [ "288 pages ;" @@ -9097,6 +9248,9 @@ "createdYear": [ 2022 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Sex on toast" ], @@ -9229,7 +9383,7 @@ ] }, "sort": [ - 509.2913, + 510.4879, "cb15861113" ], "inner_hits": { @@ -9250,79 +9404,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0002", + "label": "Columbia University Libraries" } ], + "identifier": [ + "urn:shelfmark:PR6113.I5865 S39 2022g", + "urn:barcode:CU27972887" + ], + "physicalLocation": [ + "PR6113.I5865 S39 2022g" + ], + "shelfMark_sort": "aPR6113.I5865 S39 2022g", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "idBarcode": [ - "CU27972887" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:PR6113.I5865 S39 2022g", - "urn:barcode:CU27972887" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "PR6113.I5865 S39 2022g" ], + "uri": "ci10035633", "identifierV2": [ { - "value": "PR6113.I5865 S39 2022g", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PR6113.I5865 S39 2022g" }, { - "value": "CU27972887", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "CU27972887" } ], - "owner": [ - { - "id": "orgs:0002", - "label": "Columbia University Libraries" - } + "idBarcode": [ + "CU27972887" ], "owner_packed": [ "orgs:0002||Columbia University Libraries" ], - "physicalLocation": [ - "PR6113.I5865 S39 2022g" - ], - "recapCustomerCode": [ - "CU" - ], "requestable": [ true ], - "shelfMark": [ - "PR6113.I5865 S39 2022g" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "CU" ], - "shelfMark_sort": "aPR6113.I5865 S39 2022g", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "ci10035633" + ] }, "sort": [ null @@ -9336,7 +9490,7 @@ { "_index": "resources-2024-10-22", "_id": "cb1869694", - "_score": 508.82623, + "_score": 510.02188, "_source": { "extent": [ "2 volumes ;" @@ -9356,6 +9510,9 @@ "createdYear": [ 1908 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -9456,7 +9613,7 @@ ] }, "sort": [ - 508.82623, + 510.02188, "cb1869694" ], "inner_hits": { @@ -9477,75 +9634,75 @@ }, "_score": null, "_source": { - "uri": "ci2345977", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:1002217392" + ], + "physicalLocation": [ + "812R79 Y" ], + "shelfMark_sort": "a812R79 Y v.000001", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "ci2345977", "shelfMark": [ "812R79 Y v.1" ], "identifierV2": [ { - "value": "812R79 Y v.1", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "812R79 Y v.1" }, { "type": "bf:Barcode", "value": "1002217392" } ], - "physicalLocation": [ - "812R79 Y" - ], "enumerationChronology": [ "v.1" ], - "recapCustomerCode": [ - "CU" - ], - "identifier": [ - "urn:barcode:1002217392" - ], "idBarcode": [ "1002217392" ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "shelfMark_sort": "a812R79 Y v.000001" + "recapCustomerCode": [ + "CU" + ] }, "sort": [ null @@ -9560,75 +9717,75 @@ }, "_score": null, "_source": { - "uri": "ci2345976", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:1002217449" + ], + "physicalLocation": [ + "812R79 Y" ], + "shelfMark_sort": "a812R79 Y v.000002", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "ci2345976", "shelfMark": [ "812R79 Y v.2" ], "identifierV2": [ { - "value": "812R79 Y v.2", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "812R79 Y v.2" }, { "type": "bf:Barcode", "value": "1002217449" } ], - "physicalLocation": [ - "812R79 Y" - ], "enumerationChronology": [ - "v.2" - ], - "recapCustomerCode": [ - "CU" - ], - "identifier": [ - "urn:barcode:1002217449" + "v.2" ], "idBarcode": [ "1002217449" ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "shelfMark_sort": "a812R79 Y v.000002" + "recapCustomerCode": [ + "CU" + ] }, "sort": [ null @@ -9642,7 +9799,7 @@ { "_index": "resources-2024-10-22", "_id": "b22904468", - "_score": 504.2571, + "_score": 505.05713, "_source": { "extent": [ "189 pages : color illustrations ;" @@ -9682,6 +9839,9 @@ "createdYear": [ 2022 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Bliss on toast : 75 simple recipes" ], @@ -9831,9 +9991,12 @@ ] }, "sort": [ - 504.2571, + 505.05713, "b22904468" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -9852,85 +10015,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFD 22-2706", + "urn:barcode:33433135837288" + ], + "physicalLocation": [ + "JFD 22-2706" + ], + "shelfMark_sort": "aJFD 22-002706", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433135837288" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFD 22-2706", - "urn:barcode:33433135837288" + "shelfMark": [ + "JFD 22-2706" ], + "uri": "i39826201", "identifierV2": [ { - "value": "JFD 22-2706", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFD 22-2706" }, { - "value": "33433135837288", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433135837288" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433135837288" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFD 22-2706" - ], "requestable": [ true ], - "shelfMark": [ - "JFD 22-2706" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFD 22-002706", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i39826201" + ] }, "sort": [ null @@ -9944,7 +10107,7 @@ { "_index": "resources-2024-10-22", "_id": "hb990094818300203941", - "_score": 501.27667, + "_score": 500.78717, "_source": { "extent": [ "64 p. : ill. ;" @@ -10108,7 +10271,7 @@ ] }, "sort": [ - 501.27667, + 500.78717, "hb990094818300203941" ], "inner_hits": { @@ -10215,18 +10378,11 @@ { "_index": "resources-2024-10-22", "_id": "b22067378", - "_score": 493.88086, + "_score": 495.4289, "_source": { "extent": [ "<1> envelope (photographic prints) : b&w ;" ], - "genreForm": [ - "Photographic prints." - ], - "identifier": [ - "urn:shelfmark:*T-Pho B (Toast of the town (Television program))", - "urn:bnum:22067378" - ], "note": [ { "noteType": "Note", @@ -10255,10 +10411,49 @@ "Lowe, Joan", "Goodall, Jean" ], - "numCheckinCardItems": [ + "numItemDatesParsed": [ 0 ], - "numItemDatesParsed": [ + "numItemsTotal": [ + 1 + ], + "buildingLocationIds": [ + "pa" + ], + "title": [ + "Toast of the town (Television program)" + ], + "type": [ + "nypl:Item" + ], + "shelfMark": [ + "*T-Pho B (Toast of the town (Television program))" + ], + "numItemVolumesParsed": [ + 0 + ], + "numElectronicResources": [ + 0 + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*T-Pho B (Toast of the town (Television program))" + }, + { + "type": "nypl:Bnumber", + "value": "22067378" + } + ], + "updatedAt": 1718671320346, + "genreForm": [ + "Photographic prints." + ], + "identifier": [ + "urn:shelfmark:*T-Pho B (Toast of the town (Television program))", + "urn:bnum:22067378" + ], + "numCheckinCardItems": [ 0 ], "materialType": [ @@ -10279,9 +10474,6 @@ "label": "unmediated" } ], - "numItemsTotal": [ - 1 - ], "subjectLiteral": [ "Benzell, Mimi.", "Lawrence, Gertrude.", @@ -10300,35 +10492,10 @@ "Lowe, Joan.", "Goodall, Jean." ], - "title": [ - "Toast of the town (Television program)" - ], "titleDisplay": [ "Toast of the town (Television program) : photographs, 1951-1953." ], - "type": [ - "nypl:Item" - ], - "shelfMark": [ - "*T-Pho B (Toast of the town (Television program))" - ], "uri": "b22067378", - "numItemVolumesParsed": [ - 0 - ], - "numElectronicResources": [ - 0 - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*T-Pho B (Toast of the town (Television program))" - }, - { - "type": "nypl:Bnumber", - "value": "22067378" - } - ], "issuance": [ { "id": "urn:biblevel:c", @@ -10337,13 +10504,15 @@ ], "dimensions": [ "25 x 20 cm. or smaller." - ], - "updatedAt": 1718671320346 + ] }, "sort": [ - 493.88086, + 495.4289, "b22067378" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -10362,31 +10531,47 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "identifier": [ + "urn:shelfmark:*T-Pho B (Toast of the town (Television program))", + "urn:barcode:33433117780357" + ], + "physicalLocation": [ + "*T-Pho B (Toast of the town (Television program))" + ], + "shelfMark_sort": "a*T-Pho B (Toast of the town (Television program))", + "catalogItemType_packed": [ + "catalogItemType:15||flat graphic" + ], "accessMessage": [ { "id": "accessMessage:u", "label": "Supervised use" } ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" + "status_packed": [ + "status:a||Available" ], - "catalogItemType": [ - { - "id": "catalogItemType:15", - "label": "flat graphic" - } + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*T-Pho+B+%28Toast+of+the+town+%28Television+program%29%29&Form=30&Genre=flat+graphic&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db22067378&ItemISxN=i377321837&ItemNumber=33433117780357&Location=Performing+Arts+Theatre+Division&ReferenceNumber=b220673780&Site=LPATH&Title=Toast+of+the+town+%28Television+program%29+%3A+photographs%2C+1951-1953." ], - "catalogItemType_packed": [ - "catalogItemType:15||flat graphic" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Still image" + "shelfMark": [ + "*T-Pho B (Toast of the town (Television program))" ], - "holdingLocation": [ + "uri": "i37732183", + "identifierV2": [ { - "id": "loc:pat38", - "label": "Performing Arts Research Collections - Theatre" + "type": "bf:ShelfMark", + "value": "*T-Pho B (Toast of the town (Television program))" + }, + { + "type": "bf:Barcode", + "value": "33433117780357" } ], "holdingLocation_packed": [ @@ -10395,45 +10580,29 @@ "idBarcode": [ "33433117780357" ], - "identifier": [ - "urn:shelfmark:*T-Pho B (Toast of the town (Television program))", - "urn:barcode:33433117780357" + "requestable": [ + false ], - "identifierV2": [ - { - "value": "*T-Pho B (Toast of the town (Television program))", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433117780357", - "type": "bf:Barcode" + "id": "catalogItemType:15", + "label": "flat graphic" } ], - "physicalLocation": [ - "*T-Pho B (Toast of the town (Television program))" - ], - "requestable": [ - false + "formatLiteral": [ + "Still image" ], - "shelfMark": [ - "*T-Pho B (Toast of the town (Television program))" + "holdingLocation": [ + { + "id": "loc:pat38", + "label": "Performing Arts Research Collections - Theatre" + } ], - "shelfMark_sort": "a*T-Pho B (Toast of the town (Television program))", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37732183", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=*T-Pho+B+%28Toast+of+the+town+%28Television+program%29%29&Form=30&Genre=flat+graphic&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db22067378&ItemISxN=i377321837&ItemNumber=33433117780357&Location=Performing+Arts+Theatre+Division&ReferenceNumber=b220673780&Site=LPATH&Title=Toast+of+the+town+%28Television+program%29+%3A+photographs%2C+1951-1953." ] }, "sort": [ @@ -10447,29 +10616,21 @@ }, { "_index": "resources-2024-10-22", - "_id": "b12227432", - "_score": 492.29807, + "_id": "b10038245", + "_score": 493.61115, "_source": { - "note": [ - { - "noteType": "Note", - "label": "Review of the New York City Ballet in Peter Martins' Sleeping beauty, New York State Theatre, April 24, 1991.", - "type": "bf:Note" - } - ], - "partOf": [ - "Dance and dancers. London. June/July 1991, p. 33-36. ill." + "extent": [ + "176 p. illus." ], "nyplSource": [ "sierra-nypl" ], - "subjectLiteral_exploded": [ - "Martins, Peter, 1946-", - "New York City Ballet" - ], "numItemDatesParsed": [ 0 ], + "publisherLiteral": [ + "Knopf" + ], "language": [ { "id": "lang:eng", @@ -10477,68 +10638,81 @@ } ], "numItemsTotal": [ - 0 + 1 ], "createdYear": [ - 1991 + 1971 + ], + "buildingLocationIds": [ + "ma" ], "title": [ - "A toast to Beauty." + "Burnt toast; a novel." ], "type": [ "nypl:Item" ], "shelfMark": [ - "*MGZA" + "JFD 71-3298" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1991" + "1971" ], "creatorLiteral": [ - "Barnes, Clive, 1927-2008." + "Gould, Peter." + ], + "idLccn": [ + "70147880" ], "numElectronicResources": [ 0 ], "dateStartYear": [ - 1991 + 1971 ], "idOclc": [ - "NYPY916066942-B" + "NYPG710603184-B" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "*MGZA" + "value": "JFD 71-3298" }, { "type": "nypl:Bnumber", - "value": "12227432" + "value": "10038245" }, { "type": "nypl:Oclc", - "value": "NYPY916066942-B" + "value": "NYPG710603184-B" + }, + { + "type": "bf:Lccn", + "value": "70147880" }, { "type": "bf:Identifier", - "value": "(NN-PD)916066942" + "value": "NN710603184" }, { "type": "bf:Identifier", - "value": "(WaOLN)nyp2214263" + "value": "(WaOLN)nyp0038376" } ], - "popularity": 0, - "updatedAt": 1723129828477, + "updatedAt": 1711114284571, + "publicationStatement": [ + "New York, Knopf, 1971." + ], "identifier": [ - "urn:shelfmark:*MGZA", - "urn:bnum:12227432", - "urn:oclc:NYPY916066942-B", - "urn:identifier:(NN-PD)916066942", - "urn:identifier:(WaOLN)nyp2214263" + "urn:shelfmark:JFD 71-3298", + "urn:bnum:10038245", + "urn:oclc:NYPG710603184-B", + "urn:lccn:70147880", + "urn:identifier:NN710603184", + "urn:identifier:(WaOLN)nyp0038376" ], "numCheckinCardItems": [ 0 @@ -10556,7 +10730,7 @@ } ], "dateString": [ - "1991" + "1971" ], "mediaType": [ { @@ -10564,58 +10738,155 @@ "label": "unmediated" } ], - "subjectLiteral": [ - "Martins, Peter, 1946-", - "New York City Ballet." - ], "titleDisplay": [ - "A toast to Beauty." + "Burnt toast; a novel." + ], + "uri": "b10038245", + "placeOfPublication": [ + "New York" ], - "uri": "b12227432", "issuance": [ { - "id": "urn:biblevel:b", - "label": "serial component part" + "id": "urn:biblevel:m", + "label": "monograph/item" } + ], + "dimensions": [ + "21 cm." ] }, "sort": [ - 492.29807, - "b12227432" + 493.61115, + "b10038245" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { "hits": { "total": { - "value": 0, + "value": 1, "relation": "eq" }, "max_score": null, - "hits": [] + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10038245", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:shelfmark:JFD 71-3298", + "urn:barcode:33433038923789" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "JFD 71-3298" + ], + "shelfMark_sort": "aJFD 71-003298", + "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": [ + "JFD 71-3298" + ], + "uri": "i12867982", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFD 71-3298" + }, + { + "type": "bf:Barcode", + "value": "33433038923789" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433038923789" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] } } } }, { "_index": "resources-2024-10-22", - "_id": "b12687395", - "_score": 492.29807, + "_id": "b13147602", + "_score": 493.61115, "_source": { "extent": [ - "38 p." + "310 p." + ], + "note": [ + { + "noteType": "Note", + "label": "\"First edition.\"", + "type": "bf:Note" + } ], "nyplSource": [ "sierra-nypl" ], - "subjectLiteral_exploded": [ - "American poetry", - "United States", - "United States -- Politics and government", - "United States -- Politics and government -- 1901-1909" - ], "numItemDatesParsed": [ 0 ], + "publisherLiteral": [ + "Doubleday" + ], "language": [ { "id": "lang:eng", @@ -10626,62 +10897,76 @@ 1 ], "createdYear": [ - 1908 + 1941 + ], + "buildingLocationIds": [ + "ma" ], "title": [ - "Campaign verse and toast ..." + "A toast to tomorrow." ], "type": [ "nypl:Item" ], "shelfMark": [ - "IO (1908) (Rowe, W. H. Campaign verse and toast of Col. William H. Rowe)" + "NCW (Coles, M. Toast to tomorrow)" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1908" + "1941" ], "creatorLiteral": [ - "Rowe, William H., Jr." + "Coles, Manning." ], "numElectronicResources": [ 0 ], "dateStartYear": [ - 1908 + 1941 ], "idOclc": [ - "18495680" + "48802346", + "1370631" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "IO (1908) (Rowe, W. H. Campaign verse and toast of Col. William H. Rowe)" + "value": "NCW (Coles, M. Toast to tomorrow)" }, { "type": "nypl:Bnumber", - "value": "12687395" + "value": "13147602" }, { "type": "nypl:Oclc", - "value": "18495680" + "value": "48802346" + }, + { + "type": "nypl:Oclc", + "value": "1370631" }, { "type": "bf:Identifier", - "value": "(WaOLN)nyp2668468" + "value": "(WaOLN)nyp3125942" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)48802346" } ], - "updatedAt": 1711153062093, + "updatedAt": 1711302779644, "publicationStatement": [ - "Albany, 1908." + "Garden City, N.Y. Doubleday [1941]" ], "identifier": [ - "urn:shelfmark:IO (1908) (Rowe, W. H. Campaign verse and toast of Col. William H. Rowe)", - "urn:bnum:12687395", - "urn:oclc:18495680", - "urn:identifier:(WaOLN)nyp2668468" + "urn:shelfmark:NCW (Coles, M. Toast to tomorrow)", + "urn:bnum:13147602", + "urn:oclc:48802346", + "urn:oclc:1370631", + "urn:identifier:(WaOLN)nyp3125942", + "urn:identifier:(OCoLC)48802346" ], "numCheckinCardItems": [ 0 @@ -10699,7 +10984,7 @@ } ], "dateString": [ - "1908" + "1941" ], "mediaType": [ { @@ -10707,16 +10992,12 @@ "label": "unmediated" } ], - "subjectLiteral": [ - "American poetry.", - "United States -- Politics and government -- 1901-1909." - ], "titleDisplay": [ - "Campaign verse and toast ..." + "A toast to tomorrow." ], - "uri": "b12687395", + "uri": "b13147602", "placeOfPublication": [ - "Albany" + "Garden City, N.Y." ], "issuance": [ { @@ -10725,12 +11006,15 @@ } ], "dimensions": [ - "19 cm." + "21cm." ] }, "sort": [ - 492.29807, - "b12687395" + 493.61115, + "b13147602" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { @@ -10743,95 +11027,86 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "b12687395", + "_id": "b13147602", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:NCW (Coles, M. Toast to tomorrow)", + "urn:barcode:33433114070448" ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "m2CustomerCode": [ + "XA" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "NCW (Coles, M. Toast to tomorrow)" ], - "holdingLocation": [ + "shelfMark_sort": "aNCW (Coles, M. Toast to tomorrow)", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ { - "id": "loc:rcmg2", - "label": "Offsite" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:rcmg2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433021459502" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:IO (1908) (Rowe, W. H. Campaign verse and toast of Col. William H. Rowe)", - "urn:barcode:33433021459502" + "shelfMark": [ + "NCW (Coles, M. Toast to tomorrow)" ], + "uri": "i16287071", "identifierV2": [ { - "value": "IO (1908) (Rowe, W. H. Campaign verse and toast of Col. William H. Rowe)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "NCW (Coles, M. Toast to tomorrow)" }, { - "value": "33433021459502", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1105", - "label": "Irma and Paul Milstein Division of United States History, Local History and Genealogy" + "type": "bf:Barcode", + "value": "33433114070448" } ], - "owner_packed": [ - "orgs:1105||Irma and Paul Milstein Division of United States History, Local History and Genealogy" - ], - "physicalLocation": [ - "IO (1908) (Rowe, W. H. Campaign verse and toast of Col. William H. Rowe)" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "recapCustomerCode": [ - "NL" + "idBarcode": [ + "33433114070448" ], "requestable": [ true ], - "shelfMark": [ - "IO (1908) (Rowe, W. H. Campaign verse and toast of Col. William H. Rowe)" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "aIO (1908) (Rowe, W. H. Campaign verse and toast of Col. William H. Rowe)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11275520" + ] }, "sort": [ null @@ -10844,38 +11119,28 @@ }, { "_index": "resources-2024-10-22", - "_id": "b20569949", - "_score": 492.093, + "_id": "b12114589", + "_score": 492.61115, "_source": { - "extent": [ - "1 online resource." - ], "note": [ { "noteType": "Note", - "label": "Title from HTML t.p. (viewed May 1, 2009).", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access restricted to authorized users.", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "Mode of access: World Wide Web.", + "label": "Music only.", "type": "bf:Note" } ], + "partOf": [ + "Burchenal, Elizabeth. Folk-dance music. New York, c1908. p 46" + ], "nyplSource": [ "sierra-nypl" ], + "subjectLiteral_exploded": [ + "Gustafs skål (Dance)" + ], "numItemDatesParsed": [ 0 ], - "publisherLiteral": [ - "Alexander Street Press" - ], "language": [ { "id": "lang:eng", @@ -10886,74 +11151,70 @@ 0 ], "createdYear": [ - 2007 + 1908 ], + "buildingLocationIds": [], "title": [ - "Toast of New York (1937) shooting script" + "Gustafs skål (Gustave's toast)." ], "type": [ "nypl:Item" ], + "shelfMark": [ + "*MGS (General)" + ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "2007" - ], - "creatorLiteral": [ - "Nichols, Dudley, 1895-1960." + "1908" ], "numElectronicResources": [ - 1 - ], - "seriesStatement": [ - "American film scripts online" - ], - "contributorLiteral": [ - "Josephson, Matthew, 1899-1978.", - "Twist, John, 1898-1976.", - "Sayre, Joel, 1900-1979." + 0 ], "dateStartYear": [ - 2007 + 1908 ], "idOclc": [ - "ssj0001177068" + "NYPY710261847-C" ], "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*MGS (General)" + }, { "type": "nypl:Bnumber", - "value": "20569949" + "value": "12114589" }, { "type": "nypl:Oclc", - "value": "ssj0001177068" + "value": "NYPY710261847-C" }, { "type": "bf:Identifier", - "value": "(WaSeSS)ssj0001177068" + "value": "(NN-PD)710261847" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp2101171" } ], - "uniformTitle": [ - "Toast of New York (1937 : Online)", - "American film scripts online." - ], - "updatedAt": 1711272493617, - "publicationStatement": [ - "Alexandria, VA : Alexander Street Press, 2007." - ], + "updatedAt": 1711037894806, "identifier": [ - "urn:bnum:20569949", - "urn:oclc:ssj0001177068", - "urn:identifier:(WaSeSS)ssj0001177068" + "urn:shelfmark:*MGS (General)", + "urn:bnum:12114589", + "urn:oclc:NYPY710261847-C", + "urn:identifier:(NN-PD)710261847", + "urn:identifier:(WaOLN)nyp2101171" ], "numCheckinCardItems": [ 0 ], "materialType": [ { - "id": "resourcetypes:txt", - "label": "Text" + "id": "resourcetypes:not", + "label": "Notated music" } ], "carrierType": [ @@ -10963,7 +11224,7 @@ } ], "dateString": [ - "2007" + "1908" ], "mediaType": [ { @@ -10971,32 +11232,23 @@ "label": "unmediated" } ], - "titleDisplay": [ - "Toast of New York (1937) [electronic resource] : shooting script / story by Matthew Josephson ; screenplay by Dudley Nichols, John Twist and Joel Sayre." - ], - "uri": "b20569949", - "electronicResources": [ - { - "label": "Available onsite at NYPL", - "url": "http://WU9FB9WH4A.search.serialssolutions.com/?V=1.0&L=WU9FB9WH4A&S=JCs&C=TC0001177068&T=marc&tab=BOOKS" - } + "subjectLiteral": [ + "Gustafs skål (Dance)" ], - "placeOfPublication": [ - "Alexandria, VA" + "titleDisplay": [ + "Gustafs skål (Gustave's toast)." ], + "uri": "b12114589", "issuance": [ { - "id": "urn:biblevel:m", - "label": "monograph/item" + "id": "urn:biblevel:a", + "label": "monograph component part" } - ], - "titleAlt": [ - "Toast of New York (1937 : Online)" ] }, "sort": [ - 492.093, - "b20569949" + 492.61115, + "b12114589" ], "inner_hits": { "items": { @@ -11013,11 +11265,18 @@ }, { "_index": "resources-2024-10-22", - "_id": "b10038245", - "_score": 491.95056, + "_id": "b21766784", + "_score": 492.39038, "_source": { "extent": [ - "176 p. illus." + "75 pages ;" + ], + "note": [ + { + "noteType": "Note", + "label": "Poems.", + "type": "bf:Note" + } ], "nyplSource": [ "sierra-nypl" @@ -11026,7 +11285,10 @@ 0 ], "publisherLiteral": [ - "Knopf" + "Quattro Poetry" + ], + "description": [ + "\"This new poetry collection by Corrado Paina explores the induced meditations and considerations that illness imposes upon a body and mind.\"--" ], "language": [ { @@ -11038,75 +11300,95 @@ 1 ], "createdYear": [ - 1971 + 2018 + ], + "buildingLocationIds": [ + "ma" ], "title": [ - "Burnt toast; a novel." + "A toast to illness" ], "type": [ "nypl:Item" ], "shelfMark": [ - "JFD 71-3298" + "JFD 19-3255" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1971" + "2018" ], "creatorLiteral": [ - "Gould, Peter." + "Paina, Corrado, 1954-" ], "idLccn": [ - "70147880" + "2018487509" ], "numElectronicResources": [ 0 ], "dateStartYear": [ - 1971 + 2018 ], "idOclc": [ - "NYPG710603184-B" + "1030339564" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "JFD 71-3298" + "value": "JFD 19-3255" }, { "type": "nypl:Bnumber", - "value": "10038245" + "value": "21766784" + }, + { + "type": "bf:Isbn", + "value": "9781988254616" + }, + { + "type": "bf:Isbn", + "value": "1988254612" }, { "type": "nypl:Oclc", - "value": "NYPG710603184-B" + "value": "1030339564" }, { "type": "bf:Lccn", - "value": "70147880" + "value": "2018487509" }, { "type": "bf:Identifier", - "value": "NN710603184" + "value": "(OCoLC)1030339564" }, { "type": "bf:Identifier", - "value": "(WaOLN)nyp0038376" + "value": "(OCoLC)1030484899" } ], - "updatedAt": 1711114284571, + "updatedAt": 1711251518653, "publicationStatement": [ - "New York, Knopf, 1971." + "Toronto, Canada : Quattro Poetry, 2018." + ], + "genreForm": [ + "Poetry." + ], + "idIsbn": [ + "9781988254616", + "1988254612" ], "identifier": [ - "urn:shelfmark:JFD 71-3298", - "urn:bnum:10038245", - "urn:oclc:NYPG710603184-B", - "urn:lccn:70147880", - "urn:identifier:NN710603184", - "urn:identifier:(WaOLN)nyp0038376" + "urn:shelfmark:JFD 19-3255", + "urn:bnum:21766784", + "urn:isbn:9781988254616", + "urn:isbn:1988254612", + "urn:oclc:1030339564", + "urn:lccn:2018487509", + "urn:identifier:(OCoLC)1030339564", + "urn:identifier:(OCoLC)1030484899" ], "numCheckinCardItems": [ 0 @@ -11124,7 +11406,7 @@ } ], "dateString": [ - "1971" + "2018" ], "mediaType": [ { @@ -11133,11 +11415,14 @@ } ], "titleDisplay": [ - "Burnt toast; a novel." + "A toast to illness / Corrado Paina." + ], + "uri": "b21766784", + "lccClassification": [ + "PR9199.4.P34 T63 2018" ], - "uri": "b10038245", "placeOfPublication": [ - "New York" + "Toronto, Canada" ], "issuance": [ { @@ -11146,12 +11431,19 @@ } ], "dimensions": [ - "21 cm." + "22 cm" + ], + "idIsbn_clean": [ + "9781988254616", + "1988254612" ] }, "sort": [ - 491.95056, - "b10038245" + 492.39038, + "b21766784" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { @@ -11164,86 +11456,92 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "b10038245", + "_id": "b21766784", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFD 19-3255", + "urn:barcode:33433129000943" + ], + "physicalLocation": [ + "JFD 19-3255" + ], + "shelfMark_sort": "aJFD 19-003255", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433038923789" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFD 71-3298", - "urn:barcode:33433038923789" + "shelfMark": [ + "JFD 19-3255" ], + "uri": "i37241733", "identifierV2": [ { - "value": "JFD 71-3298", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFD 19-3255" }, { - "value": "33433038923789", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433129000943" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" ], - "physicalLocation": [ - "JFD 71-3298" + "idBarcode": [ + "33433129000943" + ], + "owner_packed": [ + "orgs:1101||General Research Division" ], "requestable": [ true ], - "shelfMark": [ - "JFD 71-3298" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFD 71-003298", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12867982" + ] }, "sort": [ null @@ -11256,101 +11554,124 @@ }, { "_index": "resources-2024-10-22", - "_id": "b12114589", - "_score": 491.95056, + "_id": "b15877453", + "_score": 491.34808, "_source": { + "extent": [ + "1 sound disc : analog, 33 1/3 rpm, stereo. ;" + ], "note": [ { "noteType": "Note", - "label": "Music only.", + "label": "Alshire: ST-5074 (on container: S-5074).", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Selections from musicals arranged for orchestra.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "Program notes on container.", "type": "bf:Note" } ], - "partOf": [ - "Burchenal, Elizabeth. Folk-dance music. New York, c1908. p 46" - ], "nyplSource": [ "sierra-nypl" ], "subjectLiteral_exploded": [ - "Gustafs skål (Dance)" + "Musicals", + "Musicals -- Excerpts, Arranged", + "Orchestral music, Arranged" ], "numItemDatesParsed": [ 0 ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } + "publisherLiteral": [ + "Alshire" ], "numItemsTotal": [ - 0 + 1 ], "createdYear": [ - 1908 + 1966 + ], + "buildingLocationIds": [ + "pa" ], "title": [ - "Gustafs skål (Gustave's toast)." + "A toast to Broadway" ], "type": [ "nypl:Item" ], "shelfMark": [ - "*MGS (General)" + "*LZR 9189" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1908" + "1966" + ], + "creatorLiteral": [ + "101 Strings. prf" ], "numElectronicResources": [ 0 ], "dateStartYear": [ - 1908 + 1966 ], "idOclc": [ - "NYPY710261847-C" + "13323483" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "*MGS (General)" + "value": "*LZR 9189" }, { "type": "nypl:Bnumber", - "value": "12114589" + "value": "15877453" }, { "type": "nypl:Oclc", - "value": "NYPY710261847-C" + "value": "13323483" }, { "type": "bf:Identifier", - "value": "(NN-PD)710261847" + "value": "ST-5074 Alshire" }, { "type": "bf:Identifier", - "value": "(WaOLN)nyp2101171" + "value": "S-5074 Alshire" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)A310000041" } ], - "updatedAt": 1711037894806, + "updatedAt": 1712867127337, + "publicationStatement": [ + "Burbank, Calif. : Alshire, [1966?]" + ], "identifier": [ - "urn:shelfmark:*MGS (General)", - "urn:bnum:12114589", - "urn:oclc:NYPY710261847-C", - "urn:identifier:(NN-PD)710261847", - "urn:identifier:(WaOLN)nyp2101171" + "urn:shelfmark:*LZR 9189", + "urn:bnum:15877453", + "urn:oclc:13323483", + "urn:identifier:ST-5074 Alshire", + "urn:identifier:S-5074 Alshire", + "urn:identifier:(WaOLN)A310000041" ], "numCheckinCardItems": [ 0 ], "materialType": [ { - "id": "resourcetypes:not", - "label": "Notated music" + "id": "resourcetypes:aud", + "label": "Audio" } ], "carrierType": [ @@ -11360,7 +11681,7 @@ } ], "dateString": [ - "1908" + "1966" ], "mediaType": [ { @@ -11369,48 +11690,172 @@ } ], "subjectLiteral": [ - "Gustafs skål (Dance)" + "Musicals -- Excerpts, Arranged.", + "Orchestral music, Arranged." ], "titleDisplay": [ - "Gustafs skål (Gustave's toast)." + "A toast to Broadway [sound recording] / 101 Strings." + ], + "uri": "b15877453", + "placeOfPublication": [ + "Burbank, Calif." ], - "uri": "b12114589", "issuance": [ { - "id": "urn:biblevel:a", - "label": "monograph component part" + "id": "urn:biblevel:m", + "label": "monograph/item" } + ], + "titleAlt": [ + "8:40 curtain.", + "Small world.", + "Till there was you.", + "Just in time.", + "Promise me a rose.", + "Til tomorrow.", + "Hey there.", + "Climb every mountain.", + "I enjoy being a girl.", + "Tonight.", + "Aisle talk." + ], + "tableOfContents": [ + "8:40 curtain -- Small world -- Till there was you -- Just in time -- Promise me a rose -- Til tomorrow -- Hey there -- Climb every mountan -- I enjoy being a girl -- Tonight -- Aisle talk." + ], + "dimensions": [ + "12 in." ] }, "sort": [ - 491.95056, - "b12114589" + 491.34808, + "b15877453" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { "hits": { "total": { - "value": 0, + "value": 1, "relation": "eq" }, "max_score": null, - "hits": [] + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b15877453", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:shelfmark:*LZR 9189 [Disc]", + "urn:barcode:33433035395361" + ], + "physicalLocation": [ + "*LZR 9189 [Disc]" + ], + "shelfMark_sort": "a*LZR 9189 [Disc]", + "catalogItemType_packed": [ + "catalogItemType:12||musical sound recording" + ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=101+Strings.+prf&CallNumber=*LZR+9189+%5BDisc%5D&Date=1966&Form=30&Genre=musical+sound+recording&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db15877453&ItemISxN=i14661544x&ItemNumber=33433035395361&ItemPlace=Burbank%2C+Calif.&ItemPublisher=Alshire%2C+%5B1966%3F%5D&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b15877453x&Site=LPAMRAMI&Title=A+toast+to+Broadway" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*LZR 9189 [Disc]" + ], + "uri": "i14661544", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*LZR 9189 [Disc]" + }, + { + "type": "bf:Barcode", + "value": "33433035395361" + } + ], + "holdingLocation_packed": [ + "loc:pah22||Performing Arts Research Collections - Recorded Sound" + ], + "idBarcode": [ + "33433035395361" + ], + "requestable": [ + false + ], + "catalogItemType": [ + { + "id": "catalogItemType:12", + "label": "musical sound recording" + } + ], + "formatLiteral": [ + "Audio" + ], + "holdingLocation": [ + { + "id": "loc:pah22", + "label": "Performing Arts Research Collections - Recorded Sound" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] } } } }, { "_index": "resources-2024-10-22", - "_id": "b13147602", - "_score": 491.95056, + "_id": "b20569949", + "_score": 491.2833, "_source": { "extent": [ - "310 p." + "1 online resource." ], "note": [ { "noteType": "Note", - "label": "\"First edition.\"", + "label": "Title from HTML t.p. (viewed May 1, 2009).", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access restricted to authorized users.", + "type": "bf:Note" + }, + { + "noteType": "System Details", + "label": "Mode of access: World Wide Web.", "type": "bf:Note" } ], @@ -11421,7 +11866,7 @@ 0 ], "publisherLiteral": [ - "Doubleday" + "Alexander Street Press" ], "language": [ { @@ -11430,76 +11875,70 @@ } ], "numItemsTotal": [ - 1 + 0 ], "createdYear": [ - 1941 + 2007 ], + "buildingLocationIds": [], "title": [ - "A toast to tomorrow." + "Toast of New York (1937) shooting script" ], "type": [ "nypl:Item" ], - "shelfMark": [ - "NCW (Coles, M. Toast to tomorrow)" - ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1941" + "2007" ], "creatorLiteral": [ - "Coles, Manning." + "Nichols, Dudley, 1895-1960." ], "numElectronicResources": [ - 0 + 1 + ], + "seriesStatement": [ + "American film scripts online" + ], + "contributorLiteral": [ + "Josephson, Matthew, 1899-1978.", + "Twist, John, 1898-1976.", + "Sayre, Joel, 1900-1979." ], "dateStartYear": [ - 1941 + 2007 ], "idOclc": [ - "48802346", - "1370631" + "ssj0001177068" ], "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "NCW (Coles, M. Toast to tomorrow)" - }, { "type": "nypl:Bnumber", - "value": "13147602" - }, - { - "type": "nypl:Oclc", - "value": "48802346" + "value": "20569949" }, { "type": "nypl:Oclc", - "value": "1370631" - }, - { - "type": "bf:Identifier", - "value": "(WaOLN)nyp3125942" + "value": "ssj0001177068" }, { "type": "bf:Identifier", - "value": "(OCoLC)48802346" + "value": "(WaSeSS)ssj0001177068" } ], - "updatedAt": 1711302779644, + "uniformTitle": [ + "Toast of New York (1937 : Online)", + "American film scripts online." + ], + "updatedAt": 1711272493617, "publicationStatement": [ - "Garden City, N.Y. Doubleday [1941]" + "Alexandria, VA : Alexander Street Press, 2007." ], "identifier": [ - "urn:shelfmark:NCW (Coles, M. Toast to tomorrow)", - "urn:bnum:13147602", - "urn:oclc:48802346", - "urn:oclc:1370631", - "urn:identifier:(WaOLN)nyp3125942", - "urn:identifier:(OCoLC)48802346" + "urn:bnum:20569949", + "urn:oclc:ssj0001177068", + "urn:identifier:(WaSeSS)ssj0001177068" ], "numCheckinCardItems": [ 0 @@ -11517,7 +11956,7 @@ } ], "dateString": [ - "1941" + "2007" ], "mediaType": [ { @@ -11526,11 +11965,17 @@ } ], "titleDisplay": [ - "A toast to tomorrow." + "Toast of New York (1937) [electronic resource] : shooting script / story by Matthew Josephson ; screenplay by Dudley Nichols, John Twist and Joel Sayre." + ], + "uri": "b20569949", + "electronicResources": [ + { + "label": "Available onsite at NYPL", + "url": "http://WU9FB9WH4A.search.serialssolutions.com/?V=1.0&L=WU9FB9WH4A&S=JCs&C=TC0001177068&T=marc&tab=BOOKS" + } ], - "uri": "b13147602", "placeOfPublication": [ - "Garden City, N.Y." + "Alexandria, VA" ], "issuance": [ { @@ -11538,144 +11983,52 @@ "label": "monograph/item" } ], - "dimensions": [ - "21cm." + "titleAlt": [ + "Toast of New York (1937 : Online)" ] }, "sort": [ - 491.95056, - "b13147602" + 491.2833, + "b20569949" ], "inner_hits": { "items": { "hits": { "total": { - "value": 1, + "value": 0, "relation": "eq" }, "max_score": null, - "hits": [ - { - "_index": "resources-2024-10-22", - "_id": "b13147602", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433114070448" - ], - "identifier": [ - "urn:shelfmark:NCW (Coles, M. Toast to tomorrow)", - "urn:barcode:33433114070448" - ], - "identifierV2": [ - { - "value": "NCW (Coles, M. Toast to tomorrow)", - "type": "bf:ShelfMark" - }, - { - "value": "33433114070448", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "NCW (Coles, M. Toast to tomorrow)" - ], - "requestable": [ - true - ], - "shelfMark": [ - "NCW (Coles, M. Toast to tomorrow)" - ], - "shelfMark_sort": "aNCW (Coles, M. Toast to tomorrow)", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16287071" - }, - "sort": [ - null - ] - } - ] + "hits": [] } } } }, { "_index": "resources-2024-10-22", - "_id": "b14608801", - "_score": 491.66385, + "_id": "b12227432", + "_score": 491.26044, "_source": { - "extent": [ - "26 p." - ], "note": [ { "noteType": "Note", - "label": "Master microform held by: NN.", - "type": "bf:Note" - }, - { - "noteType": "Reproduction", - "label": "Microfilm.", + "label": "Review of the New York City Ballet in Peter Martins' Sleeping beauty, New York State Theatre, April 24, 1991.", "type": "bf:Note" } ], + "partOf": [ + "Dance and dancers. London. June/July 1991, p. 33-36. ill." + ], "nyplSource": [ "sierra-nypl" ], + "subjectLiteral_exploded": [ + "Martins, Peter, 1946-", + "New York City Ballet" + ], "numItemDatesParsed": [ 0 ], - "publisherLiteral": [ - "[s.n.]" - ], "language": [ { "id": "lang:eng", @@ -11686,71 +12039,66 @@ 0 ], "createdYear": [ - 1900 - ], - "dateEndString": [ - "1983" + 1991 ], + "buildingLocationIds": [], "title": [ - "Webster Davis on toast .." + "A toast to Beauty." ], "type": [ "nypl:Item" ], "shelfMark": [ - "*Z BNY p.v. 6, no. 13" + "*MGZA" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1900" + "1991" ], "creatorLiteral": [ - "Cloud, William F." - ], - "idLccn": [ - "nuc87422958" + "Barnes, Clive, 1927-2008." ], "numElectronicResources": [ 0 ], "dateStartYear": [ - 1900 + 1991 ], "idOclc": [ - "22073116" + "NYPY916066942-B" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "*Z BNY p.v. 6, no. 13" + "value": "*MGZA" }, { "type": "nypl:Bnumber", - "value": "14608801" + "value": "12227432" }, { "type": "nypl:Oclc", - "value": "22073116" + "value": "NYPY916066942-B" }, { - "type": "bf:Lccn", - "value": "nuc87422958" + "type": "bf:Identifier", + "value": "(NN-PD)916066942" + }, + { + "type": "bf:Identifier", + "value": "(WaOLN)nyp2214263" } ], - "dateEndYear": [ - 1983 - ], - "updatedAt": 1711075866746, - "publicationStatement": [ - "Kansas : [s.n.], 1900." - ], + "popularity": 0, + "updatedAt": 1723129828477, "identifier": [ - "urn:shelfmark:*Z BNY p.v. 6, no. 13", - "urn:bnum:14608801", - "urn:oclc:22073116", - "urn:lccn:nuc87422958" + "urn:shelfmark:*MGZA", + "urn:bnum:12227432", + "urn:oclc:NYPY916066942-B", + "urn:identifier:(NN-PD)916066942", + "urn:identifier:(WaOLN)nyp2214263" ], "numCheckinCardItems": [ 0 @@ -11768,7 +12116,7 @@ } ], "dateString": [ - "1900" + "1991" ], "mediaType": [ { @@ -11776,23 +12124,24 @@ "label": "unmediated" } ], - "titleDisplay": [ - "Webster Davis on toast .. [microform]." + "subjectLiteral": [ + "Martins, Peter, 1946-", + "New York City Ballet." ], - "uri": "b14608801", - "placeOfPublication": [ - "Kansas" + "titleDisplay": [ + "A toast to Beauty." ], + "uri": "b12227432", "issuance": [ { - "id": "urn:biblevel:m", - "label": "monograph/item" + "id": "urn:biblevel:b", + "label": "serial component part" } ] }, "sort": [ - 491.66385, - "b14608801" + 491.26044, + "b12227432" ], "inner_hits": { "items": { @@ -11809,234 +12158,101 @@ }, { "_index": "resources-2024-10-22", - "_id": "b22839633", - "_score": 491.0797, + "_id": "b12687395", + "_score": 491.26044, "_source": { "extent": [ - "1 online resource (1 sound file)" - ], - "note": [ - { - "noteType": "Language", - "label": "Sung in French.", - "type": "bf:Note" - } + "38 p." ], "nyplSource": [ "sierra-nypl" ], "subjectLiteral_exploded": [ - "Operas", - "Operas -- Excerpts", - "Songs (High voice) with orchestra", - "Orchestral music" + "American poetry", + "United States", + "United States -- Politics and government", + "United States -- Politics and government -- 1901-1909" ], "numItemDatesParsed": [ 0 ], - "publisherLiteral": [ - "ABC Classics" - ], "language": [ { - "id": "lang:fre", - "label": "French" + "id": "lang:eng", + "label": "English" } ], "numItemsTotal": [ - 0 + 1 ], "createdYear": [ - 2018 + 1908 + ], + "buildingLocationIds": [ + "rc" ], "title": [ - "A toast to Melba" + "Campaign verse and toast ..." ], "type": [ "nypl:Item" ], + "shelfMark": [ + "IO (1908) (Rowe, W. H. Campaign verse and toast of Col. William H. Rowe)" + ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "2018" + "1908" ], - "idLccn": [ - "AUAB01850190", - "AUAB01850191", - "AUAB01850192", - "AUAB01850193", - "AUAB01850194", - "AUAB01850195", - "AUAB01850196", - "AUAB01850197", - "AUAB01850198", - "AUAB01850199", - "AUAB01850200", - "AUAB01850201", - "AUAB01850202", - "AUAB01850203", - "AUAB01850204", - "AUAB01850205", - "AUAB01850206" + "creatorLiteral": [ + "Rowe, William H., Jr." ], "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Gore, Lorina", - "Letonja, Marko, 1961-", - "Gounod, Charles, 1818-1893.", - "Verdi, Giuseppe, 1813-1901.", - "Massenet, Jules, 1842-1912.", - "Bizet, Georges, 1838-1875.", - "Rimsky-Korsakov, Nikolay, 1844-1908.", - "Thomas, Ambroise, 1811-1896.", - "Duparc, Henri, 1848-1933.", - "Tasmanian Symphony Orchestra, instrumentalist" - ], - "addedAuthorTitle": [ - "Roméo et Juliette.", - "Rigoletto.", - "Faust.", - "Manon.", - "Mireille.", - "Pêcheurs de perles.", - "Sadko (Opera).", - "Mignon.", - "Chanson triste.", - "Don César de Bazan." + 0 ], "dateStartYear": [ - 2018 + 1908 ], "idOclc": [ - "1336891241" + "18495680" ], "identifierV2": [ { - "type": "nypl:Bnumber", - "value": "22839633" - }, - { - "type": "nypl:Oclc", - "value": "1336891241" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850190" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850191" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850192" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850193" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850194" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850195" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850196" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850197" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850198" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850199" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850200" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850201" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850202" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850203" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850204" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850205" + "type": "bf:ShelfMark", + "value": "IO (1908) (Rowe, W. H. Campaign verse and toast of Col. William H. Rowe)" }, { - "type": "bf:Lccn", - "value": "AUAB01850206" + "type": "nypl:Bnumber", + "value": "12687395" }, { - "type": "bf:Identifier", - "value": "028948163632 ABC Classics" + "type": "nypl:Oclc", + "value": "18495680" }, { "type": "bf:Identifier", - "value": "(OCoLC)1336891241" + "value": "(WaOLN)nyp2668468" } ], - "popularity": 0, - "updatedAt": 1729184884377, + "updatedAt": 1711153062093, "publicationStatement": [ - "[Australia] : ABC Classics, [2018]" - ], - "genreForm": [ - "Streaming audio." + "Albany, 1908." ], "identifier": [ - "urn:bnum:22839633", - "urn:oclc:1336891241", - "urn:lccn:AUAB01850190", - "urn:lccn:AUAB01850191", - "urn:lccn:AUAB01850192", - "urn:lccn:AUAB01850193", - "urn:lccn:AUAB01850194", - "urn:lccn:AUAB01850195", - "urn:lccn:AUAB01850196", - "urn:lccn:AUAB01850197", - "urn:lccn:AUAB01850198", - "urn:lccn:AUAB01850199", - "urn:lccn:AUAB01850200", - "urn:lccn:AUAB01850201", - "urn:lccn:AUAB01850202", - "urn:lccn:AUAB01850203", - "urn:lccn:AUAB01850204", - "urn:lccn:AUAB01850205", - "urn:lccn:AUAB01850206", - "urn:identifier:028948163632 ABC Classics", - "urn:identifier:(OCoLC)1336891241" + "urn:shelfmark:IO (1908) (Rowe, W. H. Campaign verse and toast of Col. William H. Rowe)", + "urn:bnum:12687395", + "urn:oclc:18495680", + "urn:identifier:(WaOLN)nyp2668468" ], "numCheckinCardItems": [ 0 ], "materialType": [ { - "id": "resourcetypes:aud", - "label": "Audio" + "id": "resourcetypes:txt", + "label": "Text" } ], "carrierType": [ @@ -12046,7 +12262,7 @@ } ], "dateString": [ - "2018" + "1908" ], "mediaType": [ { @@ -12055,22 +12271,15 @@ } ], "subjectLiteral": [ - "Operas -- Excerpts.", - "Songs (High voice) with orchestra.", - "Orchestral music." + "American poetry.", + "United States -- Politics and government -- 1901-1909." ], "titleDisplay": [ - "A toast to Melba / Lorina Gore." - ], - "uri": "b22839633", - "electronicResources": [ - { - "label": "Access Naxos Music Library", - "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=028948163632" - } + "Campaign verse and toast ..." ], + "uri": "b12687395", "placeOfPublication": [ - "[Australia]" + "Albany" ], "issuance": [ { @@ -12078,23 +12287,120 @@ "label": "monograph/item" } ], - "tableOfContents": [ - "Roméo et Juliette. Ah! Je veux vivre dans le reve / Gounod (3:38) -- Rigoletto. Caro nome / Verdi (5:07) -- Faust. Les nubiennes (2:46) ; Adagio (3:51) / Gounod -- Faust. O Dieu! Que de bijoux! / Gounod (4:53) -- Manon. Obeissons quand leur voix appelle / Massenet (3:07) -- Mireille. Heureux petit berger / Gounod (2:24) ; Faust. Danse antique (1:34) ; Variations de Cleopatre (1:41) / Gounod -- Les pêcheurs de perles. me voilà seule dans la nuit ; Comme autrefois dans la nuit sombre / Bizet (6:20) -- Sadko. Song of the Indian guest / Rimsky-Korsakov (3:47) -- Mignon. Oui, pour ce soir je suis reine des fees / Thomas (5:42) -- Faust. Les Troyens (2:39) ; Variations du Miroir (1:59) ; Danse de Phryne (2:53) / Gounod -- Chanson triste / Duparc (3:22) -- Don Cesar de Bazan. A Seville, belles senoras / Massenet (3:10)." + "dimensions": [ + "19 cm." ] }, "sort": [ - 491.0797, - "b22839633" + 491.26044, + "b12687395" ], "inner_hits": { "items": { "hits": { "total": { - "value": 0, + "value": 1, "relation": "eq" }, "max_score": null, - "hits": [] + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b12687395", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1105", + "label": "Irma and Paul Milstein Division of United States History, Local History and Genealogy" + } + ], + "identifier": [ + "urn:shelfmark:IO (1908) (Rowe, W. H. Campaign verse and toast of Col. William H. Rowe)", + "urn:barcode:33433021459502" + ], + "physicalLocation": [ + "IO (1908) (Rowe, W. H. Campaign verse and toast of Col. William H. Rowe)" + ], + "shelfMark_sort": "aIO (1908) (Rowe, W. H. Campaign verse and toast of Col. William H. Rowe)", + "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": [ + "IO (1908) (Rowe, W. H. Campaign verse and toast of Col. William H. Rowe)" + ], + "uri": "i11275520", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "IO (1908) (Rowe, W. H. Campaign verse and toast of Col. William H. Rowe)" + }, + { + "type": "bf:Barcode", + "value": "33433021459502" + } + ], + "holdingLocation_packed": [ + "loc:rcmg2||Offsite" + ], + "idBarcode": [ + "33433021459502" + ], + "owner_packed": [ + "orgs:1105||Irma and Paul Milstein Division of United States History, Local History and Genealogy" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmg2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + } + ] } } } diff --git a/test/fixtures/query-3cd09c0b3947abc6d077bd1dd619e9b3.json b/test/fixtures/query-3cd09c0b3947abc6d077bd1dd619e9b3.json index 80e02592..f9da6255 100644 --- a/test/fixtures/query-3cd09c0b3947abc6d077bd1dd619e9b3.json +++ b/test/fixtures/query-3cd09c0b3947abc6d077bd1dd619e9b3.json @@ -1,5 +1,5 @@ { - "took": 22, + "took": 23, "timed_out": false, "_shards": { "total": 2, @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.120333, + "max_score": 14.683935, "hits": [ { "_index": "resources-2024-10-22", "_id": "b10833141", - "_score": 15.120333, + "_score": 14.683935, "_source": { "extent": [ "volumes : illustrations ;" @@ -167,7 +167,7 @@ "value": "(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" } ], - "popularity": 1039, + "popularity": 1042, "uniformTitle": [ "New Yorker (New York, N.Y. : 1925)" ], @@ -1405,7 +1405,7 @@ "shelfMark": [ "*DA+ (New Yorker)" ], - "status": "Expected" + "status": "Arrived" }, { "coverage": "Vol. 100 No. 37 (Nov. 11, 2024)", @@ -1414,7 +1414,7 @@ "shelfMark": [ "*DA+ (New Yorker)" ], - "status": "Expected" + "status": "Arrived" }, { "coverage": "Vol. 100 No. 38 (Nov. 18, 2024)", @@ -1423,7 +1423,7 @@ "shelfMark": [ "*DA+ (New Yorker)" ], - "status": "Expected" + "status": "Arrived" }, { "coverage": "Vol. 100 No. 39 (Nov. 25, 2024)", @@ -1482,7 +1482,7 @@ ], "holdingStatement": [ "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--", - "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26)" + "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26); v. 100, no. 38 (2024-11-18)" ], "identifier": [ { @@ -1511,7 +1511,7 @@ "uri": "h1144777" } ], - "updatedAt": 1729702613931, + "updatedAt": 1731688335474, "publicationStatement": [ "New York : F-R Pub. Corp., 1925-", "[New York] : D. Carey", @@ -2125,12 +2125,12 @@ "shelfMark_sort": "a*DA+ (New Yorker)", "status": [ { - "id": "status:na", - "label": "Not available" + "id": "status:a", + "label": "Available" } ], "status_packed": [ - "status:na||Not available" + "status:a||Available" ], "type": [ "nypl:CheckinCardItem" @@ -2204,12 +2204,12 @@ "shelfMark_sort": "a*DA+ (New Yorker)", "status": [ { - "id": "status:na", - "label": "Not available" + "id": "status:a", + "label": "Available" } ], "status_packed": [ - "status:na||Not available" + "status:a||Available" ], "type": [ "nypl:CheckinCardItem" @@ -2283,12 +2283,12 @@ "shelfMark_sort": "a*DA+ (New Yorker)", "status": [ { - "id": "status:na", - "label": "Not available" + "id": "status:a", + "label": "Available" } ], "status_packed": [ - "status:na||Not available" + "status:a||Available" ], "type": [ "nypl:CheckinCardItem" @@ -9567,18 +9567,22 @@ }, { "key": "status:co||Loaned", - "doc_count": 11 + "doc_count": 12 }, { "key": "status:na||Not available", - "doc_count": 10 + "doc_count": 7 + }, + { + "key": "status:t||In transit", + "doc_count": 2 }, { "key": "status:m||Missing", "doc_count": 1 }, { - "key": "status:t||In transit", + "key": "status:oh||On Holdshelf", "doc_count": 1 } ] diff --git a/test/fixtures/query-3ed87b42da90b77094588269a1d55956.json b/test/fixtures/query-3ed87b42da90b77094588269a1d55956.json index f875805e..648a80fa 100644 --- a/test/fixtures/query-3ed87b42da90b77094588269a1d55956.json +++ b/test/fixtures/query-3ed87b42da90b77094588269a1d55956.json @@ -1,5 +1,5 @@ { - "took": 43, + "took": 39, "timed_out": false, "_shards": { "total": 2, @@ -46,6 +46,10 @@ "createdYear": [ 201 ], + "buildingLocationIds": [ + "ma", + "rc" + ], "parallelTitle": [ "‏כותר שאינו באותיות לטינית = зглавие руссий." ], @@ -760,97 +764,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v.1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:k||Check with staff" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "uri": "i37857771", + "identifierV2": [ { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + }, + { + "type": "bf:Barcode", + "value": "3333333333" } ], "holdingLocation_packed": [ "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" ], + "enumerationChronology": [ + "v.1" + ], "idBarcode": [ "3333333333" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ false ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "status": [ { "id": "status:k", "label": "Check with staff" } ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i37857771" + ] }, "sort": [ " 1-" @@ -865,88 +869,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1103", + "label": "Dorot Jewish Division" } ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" ], - "enumerationChronology": [ - "nothing" + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "catalogItemType_packed": [ + "catalogItemType:3||serial" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmf2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "44455533322211" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" ], + "uri": "i37857772", "identifierV2": [ { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" }, { - "value": "44455533322211", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "44455533322211" } ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "enumerationChronology": [ + "nothing" + ], + "idBarcode": [ + "44455533322211" ], "owner_packed": [ "orgs:1103||Dorot Jewish Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ true ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" + ] }, "sort": [ null diff --git a/test/fixtures/query-513a801a0bfc235c73d734df84d7864d.json b/test/fixtures/query-513a801a0bfc235c73d734df84d7864d.json index 827e0132..0adab959 100644 --- a/test/fixtures/query-513a801a0bfc235c73d734df84d7864d.json +++ b/test/fixtures/query-513a801a0bfc235c73d734df84d7864d.json @@ -1,5 +1,5 @@ { - "took": 2193, + "took": 1412, "timed_out": false, "_shards": { "total": 2, @@ -9,7 +9,7 @@ }, "hits": { "total": { - "value": 124, + "value": 126, "relation": "eq" }, "max_score": null, @@ -17,7 +17,7 @@ { "_index": "resources-2024-10-22", "_id": "b10024431", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "x, 242 p." @@ -58,6 +58,10 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "dateEndString": [ "1903" ], @@ -193,7 +197,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b10024431" ], "inner_hits": { @@ -393,7 +397,7 @@ { "_index": "resources-2024-10-22", "_id": "b10578369", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "243 p. illus." @@ -437,6 +441,10 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "sc", + "rc" + ], "title": [ "Race, class, and political consciousness" ], @@ -577,7 +585,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b10578369" ], "inner_hits": { @@ -598,85 +606,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc E 02-1201", + "urn:barcode:33433018580450" + ], + "physicalLocation": [ + "Sc E 02-1201" + ], + "shelfMark_sort": "aSc E 02-001201", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018580450" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc E 02-1201", - "urn:barcode:33433018580450" + "shelfMark": [ + "Sc E 02-1201" ], + "uri": "i11038931", "identifierV2": [ { - "value": "Sc E 02-1201", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 02-1201" }, { - "value": "33433018580450", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018580450" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433018580450" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 02-1201" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 02-1201" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc E 02-001201", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11038931" + ] }, "sort": [ null @@ -691,88 +699,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JLE 79-2381", + "urn:barcode:33433081059655" + ], + "physicalLocation": [ + "JLE 79-2381" + ], + "shelfMark_sort": "aJLE 79-002381", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433081059655" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JLE 79-2381", - "urn:barcode:33433081059655" + "shelfMark": [ + "JLE 79-2381" ], + "uri": "i11976916", "identifierV2": [ { - "value": "JLE 79-2381", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JLE 79-2381" }, { - "value": "33433081059655", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433081059655" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433081059655" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "JLE 79-2381" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "JLE 79-2381" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aJLE 79-002381", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11976916" + ] }, "sort": [ null @@ -786,7 +794,7 @@ { "_index": "resources-2024-10-22", "_id": "b10818236", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "112 p. : ill. ;" @@ -960,7 +968,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b10818236" ], "inner_hits": { @@ -1076,7 +1084,7 @@ { "_index": "resources-2024-10-22", "_id": "b10855482", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "62 p. ;" @@ -1112,6 +1120,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Ensayos sobre el Caribe" ], @@ -1237,7 +1248,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b10855482" ], "inner_hits": { @@ -1258,85 +1269,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:HNB 84-199", + "urn:barcode:33433099014460" + ], + "physicalLocation": [ + "HNB 84-199" + ], + "shelfMark_sort": "aHNB 84-000199", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433099014460" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:HNB 84-199", - "urn:barcode:33433099014460" + "shelfMark": [ + "HNB 84-199" ], + "uri": "i15810175", "identifierV2": [ { - "value": "HNB 84-199", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "HNB 84-199" }, { - "value": "33433099014460", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433099014460" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099014460" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "HNB 84-199" - ], "requestable": [ true ], - "shelfMark": [ - "HNB 84-199" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aHNB 84-000199", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15810175" + ] }, "sort": [ null @@ -1350,7 +1361,7 @@ { "_index": "resources-2024-10-22", "_id": "b10861449", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "185 p. : ill. ;" @@ -1383,6 +1394,9 @@ "createdYear": [ 1984 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "The year of miracle and grief" ], @@ -1509,7 +1523,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b10861449" ], "inner_hits": { @@ -1530,79 +1544,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "identifier": [ + "urn:shelfmark:**QDM 85-994", + "urn:barcode:33433059440952" ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "**QDM 85-994" + ], + "shelfMark_sort": "a**QDM 85-000994", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433059440952" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:**QDM 85-994", - "urn:barcode:33433059440952" + "shelfMark": [ + "**QDM 85-994" ], + "uri": "i13931350", "identifierV2": [ { - "value": "**QDM 85-994", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "**QDM 85-994" }, { - "value": "33433059440952", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433059440952" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "**QDM 85-994" + "idBarcode": [ + "33433059440952" ], "requestable": [ true ], - "shelfMark": [ - "**QDM 85-994" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a**QDM 85-000994", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13931350" + ] }, "sort": [ null @@ -1616,7 +1630,7 @@ { "_index": "resources-2024-10-22", "_id": "b11205007", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "496 p. ;" @@ -1646,6 +1660,9 @@ "createdYear": [ 1986 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Mitología cubana" ], @@ -1768,7 +1785,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b11205007" ], "inner_hits": { @@ -1881,7 +1898,7 @@ { "_index": "resources-2024-10-22", "_id": "b11280922", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "viii, 152 p. : chiefly color ill. ;" @@ -1919,6 +1936,10 @@ "createdYear": [ 1989 ], + "buildingLocationIds": [ + "rc", + "sc" + ], "type": [ "nypl:Item" ], @@ -2056,7 +2077,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b11280922" ], "inner_hits": { @@ -2077,81 +2098,81 @@ }, "_score": null, "_source": { - "uri": "i12658931", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:1105", "label": "Irma and Paul Milstein Division of United States History, Local History and Genealogy" } ], - "owner_packed": [ - "orgs:1105||Irma and Paul Milstein Division of United States History, Local History and Genealogy" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:barcode:33433100845084" + ], + "physicalLocation": [ + "ITC+ 90-2828" ], + "shelfMark_sort": "aITC+ 90-002828", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmg2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmg2||Offsite" + "status_packed": [ + "status:a||Available" ], + "uri": "i12658931", "shelfMark": [ "ITC+ 90-2828" ], "identifierV2": [ { - "value": "ITC+ 90-2828", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ITC+ 90-2828" }, { "type": "bf:Barcode", "value": "33433100845084" } ], - "physicalLocation": [ - "ITC+ 90-2828" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433100845084" + "holdingLocation_packed": [ + "loc:rcmg2||Offsite" ], "idBarcode": [ "33433100845084" ], + "owner_packed": [ + "orgs:1105||Irma and Paul Milstein Division of United States History, Local History and Genealogy" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmg2", + "label": "Offsite" + } ], - "shelfMark_sort": "aITC+ 90-002828" + "recapCustomerCode": [ + "NA" + ] }, "sort": [ null @@ -2166,78 +2187,78 @@ }, "_score": null, "_source": { - "uri": "i12658932", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:1114", "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], - "owner_packed": [ - "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + "accessMessage_packed": [ + "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "identifier": [ + "urn:barcode:33433018663926" + ], + "physicalLocation": [ + "Sc+ G 03-1" ], + "shelfMark_sort": "aSc+ G 03-000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], + "uri": "i12658932", "shelfMark": [ "Sc+ G 03-1" ], "identifierV2": [ { - "value": "Sc+ G 03-1", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc+ G 03-1" }, { "type": "bf:Barcode", "value": "33433018663926" } ], - "physicalLocation": [ - "Sc+ G 03-1" - ], - "identifier": [ - "urn:barcode:33433018663926" + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" ], "idBarcode": [ "33433018663926" ], + "owner_packed": [ + "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + ], "requestable": [ false ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "catalogItemType:2", + "label": "book non-circ" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "shelfMark_sort": "aSc+ G 03-000001" + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ] }, "sort": [ null @@ -2251,7 +2272,7 @@ { "_index": "resources-2024-10-22", "_id": "b11425862", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "xii, 353 p., [12] p. of plates : ill. ;" @@ -2283,6 +2304,9 @@ "createdYear": [ 1991 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -2418,7 +2442,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b11425862" ], "inner_hits": { @@ -2439,81 +2463,81 @@ }, "_score": null, "_source": { - "uri": "i12674670", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:1000", "label": "Stephen A. Schwarzman Building" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:barcode:33433036991341" + ], + "physicalLocation": [ + "JBE 91-972" ], + "shelfMark_sort": "aJBE 91-000972", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], + "uri": "i12674670", "shelfMark": [ "JBE 91-972" ], "identifierV2": [ { - "value": "JBE 91-972", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JBE 91-972" }, { "type": "bf:Barcode", "value": "33433036991341" } ], - "physicalLocation": [ - "JBE 91-972" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433036991341" + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" ], "idBarcode": [ "33433036991341" ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], - "shelfMark_sort": "aJBE 91-000972" + "recapCustomerCode": [ + "NA" + ] }, "sort": [ null @@ -2527,7 +2551,7 @@ { "_index": "resources-2024-10-22", "_id": "b11535326", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "479 p. ;" @@ -2565,6 +2589,10 @@ "createdYear": [ 1986 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Discursos escogidos, 1979-1983" ], @@ -2693,7 +2721,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b11535326" ], "inner_hits": { @@ -2714,85 +2742,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc D 01-1515", + "urn:barcode:33433059467153" + ], + "physicalLocation": [ + "Sc D 01-1515" + ], + "shelfMark_sort": "aSc D 01-001515", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433059467153" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc D 01-1515", - "urn:barcode:33433059467153" + "shelfMark": [ + "Sc D 01-1515" ], + "uri": "i10352589", "identifierV2": [ { - "value": "Sc D 01-1515", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc D 01-1515" }, { - "value": "33433059467153", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433059467153" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433059467153" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc D 01-1515" - ], "requestable": [ true ], - "shelfMark": [ - "Sc D 01-1515" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc D 01-001515", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10352589" + ] }, "sort": [ null @@ -2807,79 +2835,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:HRG 92-3767", + "urn:barcode:33433098321981" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "HRG 92-3767" ], + "shelfMark_sort": "aHRG 92-003767", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433098321981" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:HRG 92-3767", - "urn:barcode:33433098321981" + "shelfMark": [ + "HRG 92-3767" ], + "uri": "i10352588", "identifierV2": [ { - "value": "HRG 92-3767", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "HRG 92-3767" }, { - "value": "33433098321981", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433098321981" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "HRG 92-3767" + "idBarcode": [ + "33433098321981" ], "requestable": [ true ], - "shelfMark": [ - "HRG 92-3767" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "aHRG 92-003767", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10352588" + ] }, "sort": [ null @@ -2893,7 +2921,7 @@ { "_index": "resources-2024-10-22", "_id": "b11579218", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "190 p." @@ -2930,6 +2958,9 @@ "createdYear": [ 1957 ], + "buildingLocationIds": [ + "sc" + ], "title": [ "White man, listen!" ], @@ -3070,7 +3101,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b11579218" ], "inner_hits": { @@ -3276,7 +3307,7 @@ { "_index": "resources-2024-10-22", "_id": "b11687986", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "347 p. ;" @@ -3313,6 +3344,10 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "African writing today." ], @@ -3435,7 +3470,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b11687986" ], "inner_hits": { @@ -3456,85 +3491,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc 808.8-M (Mphahlele, E. African writing today)", + "urn:barcode:33433070028810" + ], + "physicalLocation": [ + "Sc 808.8-M (Mphahlele, E. African writing today)" + ], + "shelfMark_sort": "aSc 808.8-M (Mphahlele, E. African writing today)", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433070028810" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc 808.8-M (Mphahlele, E. African writing today)", - "urn:barcode:33433070028810" + "shelfMark": [ + "Sc 808.8-M (Mphahlele, E. African writing today)" ], + "uri": "i10398899", "identifierV2": [ { - "value": "Sc 808.8-M (Mphahlele, E. African writing today)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc 808.8-M (Mphahlele, E. African writing today)" }, { - "value": "33433070028810", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433070028810" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433070028810" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc 808.8-M (Mphahlele, E. African writing today)" - ], "requestable": [ true ], - "shelfMark": [ - "Sc 808.8-M (Mphahlele, E. African writing today)" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc 808.8-M (Mphahlele, E. African writing today)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10398899" + ] }, "sort": [ null @@ -3549,79 +3584,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:C-13 4965", + "urn:barcode:33433101446361" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "C-13 4965" + ], + "shelfMark_sort": "aC-13 004965", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433101446361" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:C-13 4965", - "urn:barcode:33433101446361" + "shelfMark": [ + "C-13 4965" ], + "uri": "i10398900", "identifierV2": [ { - "value": "C-13 4965", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "C-13 4965" }, { - "value": "33433101446361", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433101446361" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "C-13 4965" + "idBarcode": [ + "33433101446361" ], "requestable": [ true ], - "shelfMark": [ - "C-13 4965" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "aC-13 004965", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10398900" + ] }, "sort": [ null @@ -3635,7 +3670,7 @@ { "_index": "resources-2024-10-22", "_id": "b11798161", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "xii, 216 p. : map ;" @@ -3684,6 +3719,10 @@ "createdYear": [ 1993 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Imagining Ethiopia : struggles for history and identity in the Horn of Africa" ], @@ -3835,7 +3874,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b11798161" ], "inner_hits": { @@ -3856,85 +3895,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc E 02-1460", + "urn:barcode:33433017860945" + ], + "physicalLocation": [ + "Sc E 02-1460" + ], + "shelfMark_sort": "aSc E 02-001460", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433017860945" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc E 02-1460", - "urn:barcode:33433017860945" + "shelfMark": [ + "Sc E 02-1460" ], + "uri": "i11167482", "identifierV2": [ { - "value": "Sc E 02-1460", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 02-1460" }, { - "value": "33433017860945", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433017860945" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433017860945" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 02-1460" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 02-1460" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc E 02-001460", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11167482" + ] }, "sort": [ null @@ -3949,14 +3988,57 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:shelfmark:JFE 93-12431", + "urn:barcode:33433070285527" + ], + "m2CustomerCode": [ + "XF" + ], + "physicalLocation": [ + "JFE 93-12431" + ], + "shelfMark_sort": "aJFE 93-012431", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], "accessMessage": [ { "id": "accessMessage:1", "label": "Use in library" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JFE 93-12431" + ], + "uri": "i11167481", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 93-12431" + }, + { + "type": "bf:Barcode", + "value": "33433070285527" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433070285527" + ], + "requestable": [ + true ], "catalogItemType": [ { @@ -3964,9 +4046,6 @@ "label": "book, limited circ, MaRLI" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], "formatLiteral": [ "Text" ], @@ -3976,52 +4055,12 @@ "label": "Schwarzman Building M2 - General Research Room 315" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433070285527" - ], - "identifier": [ - "urn:shelfmark:JFE 93-12431", - "urn:barcode:33433070285527" - ], - "identifierV2": [ - { - "value": "JFE 93-12431", - "type": "bf:ShelfMark" - }, - { - "value": "33433070285527", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XF" - ], - "physicalLocation": [ - "JFE 93-12431" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFE 93-12431" - ], - "shelfMark_sort": "aJFE 93-012431", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11167481" + ] }, "sort": [ null @@ -4035,7 +4074,7 @@ { "_index": "resources-2024-10-22", "_id": "b11946223", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "xv, 454 p., [26] p. of plates : ill., geneal. tables ;" @@ -4088,12 +4127,17 @@ "createdYear": [ 1994 ], - "title": [ - "The House of Percy : honor, melancholy, and imagination in a Southern family" + "buildingLocationIds": [ + "sc", + "rc", + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "The House of Percy : honor, melancholy, and imagination in a Southern family" + ], "shelfMark": [ "JFE 94-15682" ], @@ -4121,9 +4165,6 @@ "donor": [ "Gift of New York Genealogical and Biographical Society." ], - "idOclc": [ - "28294789" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -4154,14 +4195,13 @@ "value": "(WaOLN)nyp1935774" } ], + "idOclc": [ + "28294789" + ], "updatedAt": 1711082115184, "publicationStatement": [ "New York : Oxford University Press, 1994." ], - "idIsbn": [ - "SECOND COPY GIFT FOR SCHOMBURG", - "0195056264 (alk. paper)" - ], "identifier": [ "urn:shelfmark:JFE 94-15682", "urn:bnum:11946223", @@ -4171,6 +4211,10 @@ "urn:lccn:93020690", "urn:identifier:(WaOLN)nyp1935774" ], + "idIsbn": [ + "SECOND COPY GIFT FOR SCHOMBURG", + "0195056264 (alk. paper)" + ], "numCheckinCardItems": [ 0 ], @@ -4228,7 +4272,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b11946223" ], "inner_hits": { @@ -4249,85 +4293,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc E 03-852", + "urn:barcode:33433018663819" + ], + "physicalLocation": [ + "Sc E 03-852" + ], + "shelfMark_sort": "aSc E 03-000852", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018663819" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc E 03-852", - "urn:barcode:33433018663819" + "shelfMark": [ + "Sc E 03-852" ], + "uri": "i12219973", "identifierV2": [ { - "value": "Sc E 03-852", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 03-852" }, { - "value": "33433018663819", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018663819" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433018663819" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 03-852" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 03-852" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc E 03-000852", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12219973" + ] }, "sort": [ null @@ -4342,88 +4386,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:65", - "label": "book, good condition, non-MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:NYGB G P 4127", + "urn:barcode:33433085765687" + ], + "physicalLocation": [ + "NYGB G P 4127" + ], + "shelfMark_sort": "aNYGB G P 004127", "catalogItemType_packed": [ "catalogItemType:65||book, good condition, non-MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcma2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433085765687" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:NYGB G P 4127", - "urn:barcode:33433085765687" + "shelfMark": [ + "NYGB G P 4127" ], + "uri": "i23219257", "identifierV2": [ { - "value": "NYGB G P 4127", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "NYGB G P 4127" }, { - "value": "33433085765687", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433085765687" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rcma2||Offsite" + ], + "idBarcode": [ + "33433085765687" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "NYGB G P 4127" - ], - "recapCustomerCode": [ - "NQ" - ], "requestable": [ true ], - "shelfMark": [ - "NYGB G P 4127" + "catalogItemType": [ + { + "id": "catalogItemType:65", + "label": "book, good condition, non-MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" ], - "shelfMark_sort": "aNYGB G P 004127", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i23219257" + ] }, "sort": [ null @@ -4438,85 +4482,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFE 94-15682", + "urn:barcode:33433078502899" + ], + "physicalLocation": [ + "JFE 94-15682" + ], + "shelfMark_sort": "aJFE 94-015682", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433078502899" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFE 94-15682", - "urn:barcode:33433078502899" + "shelfMark": [ + "JFE 94-15682" ], + "uri": "i12219972", "identifierV2": [ { - "value": "JFE 94-15682", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFE 94-15682" }, { - "value": "33433078502899", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433078502899" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078502899" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFE 94-15682" - ], "requestable": [ true ], - "shelfMark": [ - "JFE 94-15682" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFE 94-015682", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12219972" + ] }, "sort": [ null @@ -4530,7 +4574,7 @@ { "_index": "resources-2024-10-22", "_id": "b12005666", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "xv, 305 p., [6] p. of plates : ill., map ;" @@ -4580,6 +4624,10 @@ "createdYear": [ 1995 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Indians at Hampton Institute, 1877-1923" ], @@ -4716,7 +4764,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b12005666" ], "inner_hits": { @@ -4737,85 +4785,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc E 03-842", + "urn:barcode:33433018663934" + ], + "physicalLocation": [ + "Sc E 03-842" + ], + "shelfMark_sort": "aSc E 03-000842", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018663934" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc E 03-842", - "urn:barcode:33433018663934" + "shelfMark": [ + "Sc E 03-842" ], + "uri": "i12227995", "identifierV2": [ { - "value": "Sc E 03-842", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 03-842" }, { - "value": "33433018663934", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018663934" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433018663934" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 03-842" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 03-842" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc E 03-000842", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12227995" + ] }, "sort": [ null @@ -4830,85 +4878,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:HBC 95-2988", + "urn:barcode:33433062825967" + ], + "physicalLocation": [ + "HBC 95-2988" + ], + "shelfMark_sort": "aHBC 95-002988", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433062825967" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:HBC 95-2988", - "urn:barcode:33433062825967" + "shelfMark": [ + "HBC 95-2988" ], + "uri": "i12227994", "identifierV2": [ { - "value": "HBC 95-2988", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "HBC 95-2988" }, { - "value": "33433062825967", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433062825967" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433062825967" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "HBC 95-2988" - ], "requestable": [ true ], - "shelfMark": [ - "HBC 95-2988" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aHBC 95-002988", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12227994" + ] }, "sort": [ null @@ -4922,7 +4970,7 @@ { "_index": "resources-2024-10-22", "_id": "b12116006", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "viii, 194 p." @@ -4948,6 +4996,9 @@ "createdYear": [ 1964 ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Hello, Dolly! A musical comedy. Book by Michael Stewart based on The matchmaker by Thornton Wilder. Music and lyrics by Jerry Herman. Directed and choreographed by Gower Champion. Piano reduction by Robert H. Noeltner." ], @@ -5084,7 +5135,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b12116006" ], "inner_hits": { @@ -5105,85 +5156,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc F 02-543", + "urn:barcode:33433017883194" + ], + "physicalLocation": [ + "Sc F 02-543" + ], + "shelfMark_sort": "aSc F 02-000543", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433017883194" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc F 02-543", - "urn:barcode:33433017883194" + "shelfMark": [ + "Sc F 02-543" ], + "uri": "i11238198", "identifierV2": [ { - "value": "Sc F 02-543", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc F 02-543" }, { - "value": "33433017883194", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433017883194" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433017883194" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc F 02-543" - ], "requestable": [ true ], - "shelfMark": [ - "Sc F 02-543" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc F 02-000543", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11238198" + ] }, "sort": [ null @@ -5197,7 +5248,7 @@ { "_index": "resources-2024-10-22", "_id": "b12361250", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "342 p." @@ -5242,6 +5293,9 @@ "dateEndString": [ "1889" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Alcohol inside out from bottom principles facts for the millions." ], @@ -5360,7 +5414,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b12361250" ], "inner_hits": { @@ -5381,100 +5435,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*Z-7413 no. 1 no. 1-6", + "urn:barcode:33433107290128" + ], + "physicalLocation": [ + "*Z-7413 no. 1" + ], + "shelfMark_sort": "a*Z-7413 no. 000001 no. 1-6", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "enumerationChronology": [ - "no. 1-6" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*Z-7413 no. 1 no. 1-6" + ], + "uri": "i30164992", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*Z-7413 no. 1 no. 1-6" + }, + { + "type": "bf:Barcode", + "value": "33433107290128" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "no. 1-6" + ], "idBarcode": [ "33433107290128" ], - "identifier": [ - "urn:shelfmark:*Z-7413 no. 1 no. 1-6", - "urn:barcode:33433107290128" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*Z-7413 no. 1 no. 1-6", - "type": "bf:ShelfMark" - }, - { - "value": "33433107290128", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*Z-7413 no. 1" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*Z-7413 no. 1 no. 1-6" - ], - "shelfMark_sort": "a*Z-7413 no. 000001 no. 1-6", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 6 } - ], - "uri": "i30164992" + ] }, "sort": [ " 1-" @@ -5488,7 +5542,7 @@ { "_index": "resources-2024-10-22", "_id": "b12657791", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "211 p. illus., ports." @@ -5518,6 +5572,9 @@ "createdYear": [ 1945 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Histoire d'Haïti, à l'usage des candidates au certificat d'études primaires, d'après le Manuel d'histoire d'Haïti" ], @@ -5632,7 +5689,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b12657791" ], "inner_hits": { @@ -5653,77 +5710,77 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:HPB (Brothers of Christian Instruction. Histoire d'Haiti)" + ], + "physicalLocation": [ + "HPB (Brothers of Christian Instruction. Histoire d'Haiti)" + ], + "shelfMark_sort": "aHPB (Brothers of Christian Instruction. Histoire d'Haiti)", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:HPB (Brothers of Christian Instruction. Histoire d'Haiti)" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "HPB (Brothers of Christian Instruction. Histoire d'Haiti)" ], + "uri": "i16166841", "identifierV2": [ { - "value": "HPB (Brothers of Christian Instruction. Histoire d'Haiti)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "HPB (Brothers of Christian Instruction. Histoire d'Haiti)" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "HPB (Brothers of Christian Instruction. Histoire d'Haiti)" - ], "requestable": [ true ], - "shelfMark": [ - "HPB (Brothers of Christian Instruction. Histoire d'Haiti)" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aHPB (Brothers of Christian Instruction. Histoire d'Haiti)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16166841" + ] }, "sort": [ null @@ -5737,7 +5794,7 @@ { "_index": "resources-2024-10-22", "_id": "b12763093", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "viii, 114 p. : maps ;" @@ -5774,6 +5831,10 @@ "createdYear": [ 1963 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Africa past and present" ], @@ -5880,7 +5941,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b12763093" ], "inner_hits": { @@ -5901,97 +5962,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:61", - "label": "pamphlet volumes, bound with" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:C-12 9885 no. 1-8", + "urn:barcode:33433110584525" + ], + "physicalLocation": [ + "C-12 9885" + ], + "shelfMark_sort": "aC-12 9885 no. 000001-8", "catalogItemType_packed": [ "catalogItemType:61||pamphlet volumes, bound with" ], - "enumerationChronology": [ - "no. 1-8" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "C-12 9885 no. 1-8" + ], + "uri": "i31319399", + "identifierV2": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "type": "bf:ShelfMark", + "value": "C-12 9885 no. 1-8" + }, + { + "type": "bf:Barcode", + "value": "33433110584525" } ], "holdingLocation_packed": [ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], + "enumerationChronology": [ + "no. 1-8" + ], "idBarcode": [ "33433110584525" ], - "identifier": [ - "urn:shelfmark:C-12 9885 no. 1-8", - "urn:barcode:33433110584525" - ], - "identifierV2": [ - { - "value": "C-12 9885 no. 1-8", - "type": "bf:ShelfMark" - }, - { - "value": "33433110584525", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "C-12 9885" - ], "requestable": [ true ], - "shelfMark": [ - "C-12 9885 no. 1-8" + "catalogItemType": [ + { + "id": "catalogItemType:61", + "label": "pamphlet volumes, bound with" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aC-12 9885 no. 000001-8", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 8 } - ], - "uri": "i31319399" + ] }, "sort": [ " 1-" @@ -6006,85 +6067,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc C 03-369", + "urn:barcode:33433018555486" + ], + "physicalLocation": [ + "Sc C 03-369" + ], + "shelfMark_sort": "aSc C 03-000369", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018555486" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc C 03-369", - "urn:barcode:33433018555486" + "shelfMark": [ + "Sc C 03-369" ], + "uri": "i13435623", "identifierV2": [ { - "value": "Sc C 03-369", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc C 03-369" }, { - "value": "33433018555486", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018555486" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433018555486" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc C 03-369" - ], "requestable": [ true ], - "shelfMark": [ - "Sc C 03-369" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc C 03-000369", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13435623" + ] }, "sort": [ null @@ -6098,7 +6159,7 @@ { "_index": "resources-2024-10-22", "_id": "b13638125", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "141 p. : ill. ;" @@ -6261,7 +6322,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b13638125" ], "inner_hits": { @@ -6467,7 +6528,7 @@ { "_index": "resources-2024-10-22", "_id": "b13957410", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "286 p. : ill. ;" @@ -6508,6 +6569,10 @@ "createdYear": [ 1998 ], + "buildingLocationIds": [ + "sc", + "rc" + ], "title": [ "Rockers, jazzbos & visionaries" ], @@ -6639,7 +6704,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b13957410" ], "inner_hits": { @@ -6660,85 +6725,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc E 03-1387", + "urn:barcode:33433058173984" + ], + "physicalLocation": [ + "Sc E 03-1387" + ], + "shelfMark_sort": "aSc E 03-001387", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058173984" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc E 03-1387", - "urn:barcode:33433058173984" + "shelfMark": [ + "Sc E 03-1387" ], + "uri": "i14440557", "identifierV2": [ { - "value": "Sc E 03-1387", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 03-1387" }, { - "value": "33433058173984", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058173984" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433058173984" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 03-1387" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 03-1387" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc E 03-001387", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14440557" + ] }, "sort": [ null @@ -6753,88 +6818,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JME 99-57", + "urn:barcode:33433047473644" + ], + "physicalLocation": [ + "JME 99-57" + ], + "shelfMark_sort": "aJME 99-000057", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433047473644" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JME 99-57", - "urn:barcode:33433047473644" + "shelfMark": [ + "JME 99-57" ], + "uri": "i14440556", "identifierV2": [ { - "value": "JME 99-57", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JME 99-57" }, { - "value": "33433047473644", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433047473644" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433047473644" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JME 99-57" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JME 99-57" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJME 99-000057", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14440556" + ] }, "sort": [ null @@ -6848,7 +6913,7 @@ { "_index": "resources-2024-10-22", "_id": "b14192476", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "xvii, 264 p. : ill. ;" @@ -6893,6 +6958,9 @@ "createdYear": [ 1999 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "French colonial empire and the Popular Front : hope and disillusion" ], @@ -7037,7 +7105,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b14192476" ], "inner_hits": { @@ -7058,85 +7126,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFD 99-10935", + "urn:barcode:33433042458608" + ], + "physicalLocation": [ + "JFD 99-10935" + ], + "shelfMark_sort": "aJFD 99-010935", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433042458608" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFD 99-10935", - "urn:barcode:33433042458608" + "shelfMark": [ + "JFD 99-10935" ], + "uri": "i13675402", "identifierV2": [ { - "value": "JFD 99-10935", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFD 99-10935" }, { - "value": "33433042458608", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433042458608" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433042458608" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFD 99-10935" - ], "requestable": [ true ], - "shelfMark": [ - "JFD 99-10935" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFD 99-010935", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13675402" + ] }, "sort": [ null @@ -7150,7 +7218,7 @@ { "_index": "resources-2024-10-22", "_id": "b15021954", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "xlii, 567 p. ;" @@ -7188,6 +7256,10 @@ "createdYear": [ 2000 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Historical dictionary of Equatorial Guinea" ], @@ -7320,7 +7392,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b15021954" ], "inner_hits": { @@ -7341,85 +7413,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:-", - "label": "No restrictions" - } - ], "accessMessage_packed": [ "accessMessage:-||No restrictions" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)", + "urn:barcode:33433015882909" + ], + "physicalLocation": [ + "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)" + ], + "shelfMark_sort": "aSc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff1", - "label": "Schomburg Center - Research & Reference - Open Shelf" + "id": "accessMessage:-", + "label": "No restrictions" } ], - "holdingLocation_packed": [ - "loc:scff1||Schomburg Center - Research & Reference - Open Shelf" + "status_packed": [ + "status:o||Use in library" ], - "idBarcode": [ - "33433015882909" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)", - "urn:barcode:33433015882909" + "shelfMark": [ + "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)" ], + "uri": "i10908907", "identifierV2": [ { - "value": "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)" }, { - "value": "33433015882909", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015882909" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff1||Schomburg Center - Research & Reference - Open Shelf" + ], + "idBarcode": [ + "33433015882909" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)" - ], "requestable": [ false ], - "shelfMark": [ - "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff1", + "label": "Schomburg Center - Research & Reference - Open Shelf" + } ], - "shelfMark_sort": "aSc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)", "status": [ { "id": "status:o", "label": "Use in library" } - ], - "status_packed": [ - "status:o||Use in library" - ], - "type": [ - "bf:Item" - ], - "uri": "i10908907" + ] }, "sort": [ null @@ -7434,85 +7506,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:-", - "label": "No restrictions" - } - ], "accessMessage_packed": [ "accessMessage:-||No restrictions" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:*R-RMRR DT620.15 .L57 2000", + "urn:barcode:33433071345189" + ], + "physicalLocation": [ + "*R-RMRR DT620.15 .L57 2000" + ], + "shelfMark_sort": "a*R-RMRR DT620.15 .L57 002000", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" + "id": "accessMessage:-", + "label": "No restrictions" } ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + "status_packed": [ + "status:o||Use in library" ], - "idBarcode": [ - "33433071345189" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*R-RMRR DT620.15 .L57 2000", - "urn:barcode:33433071345189" + "shelfMark": [ + "*R-RMRR DT620.15 .L57 2000" ], + "uri": "i10908906", "identifierV2": [ { - "value": "*R-RMRR DT620.15 .L57 2000", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*R-RMRR DT620.15 .L57 2000" }, { - "value": "33433071345189", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433071345189" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "idBarcode": [ + "33433071345189" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "*R-RMRR DT620.15 .L57 2000" - ], "requestable": [ false ], - "shelfMark": [ - "*R-RMRR DT620.15 .L57 2000" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } ], - "shelfMark_sort": "a*R-RMRR DT620.15 .L57 002000", "status": [ { "id": "status:o", "label": "Use in library" } - ], - "status_packed": [ - "status:o||Use in library" - ], - "type": [ - "bf:Item" - ], - "uri": "i10908906" + ] }, "sort": [ null @@ -7526,7 +7598,7 @@ { "_index": "resources-2024-10-22", "_id": "b15340973", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "v." @@ -7564,6 +7636,9 @@ "dateEndString": [ "uuuu" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Verslag over het bestuur en den zakentoestand der Stad." ], @@ -7672,7 +7747,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b15340973" ], "inner_hits": { @@ -7693,21 +7768,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937", + "urn:barcode:33433014295111" + ], + "physicalLocation": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" + ], + "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-001937", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -7717,76 +7794,74 @@ "lte": "1937" } ], - "enumerationChronology": [ - "1936-1937" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1936" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937" + ], + "uri": "i11694436", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937" + }, + { + "type": "bf:Barcode", + "value": "33433014295111" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "1936-1937" + ], "idBarcode": [ "33433014295111" ], - "identifier": [ - "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937", - "urn:barcode:33433014295111" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937", - "type": "bf:ShelfMark" - }, - { - "value": "33433014295111", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937" - ], - "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-001937", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11694436" + ] }, "sort": [ " -1936" @@ -7801,21 +7876,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935", + "urn:barcode:33433014295129" + ], + "physicalLocation": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" + ], + "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-001935", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -7825,76 +7902,74 @@ "lte": "1935" } ], - "enumerationChronology": [ - "1932-1935" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1932" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935" + ], + "uri": "i11694435", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935" + }, + { + "type": "bf:Barcode", + "value": "33433014295129" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "1932-1935" + ], "idBarcode": [ "33433014295129" ], - "identifier": [ - "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935", - "urn:barcode:33433014295129" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935", - "type": "bf:ShelfMark" - }, - { - "value": "33433014295129", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935" - ], - "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-001935", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11694435" + ] }, "sort": [ " -1932" @@ -7909,21 +7984,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931", + "urn:barcode:33433014295137" + ], + "physicalLocation": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" + ], + "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-001931", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -7933,76 +8010,74 @@ "lte": "1931" } ], - "enumerationChronology": [ - "1930-1931" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1930" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931" + ], + "uri": "i11694434", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931" + }, + { + "type": "bf:Barcode", + "value": "33433014295137" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "1930-1931" + ], "idBarcode": [ "33433014295137" ], - "identifier": [ - "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931", - "urn:barcode:33433014295137" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931", - "type": "bf:ShelfMark" - }, - { - "value": "33433014295137", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931" - ], - "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-001931", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11694434" + ] }, "sort": [ " -1930" @@ -8016,7 +8091,7 @@ { "_index": "resources-2024-10-22", "_id": "b15393792", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "vii, 196 p. : map ;" @@ -8061,6 +8136,10 @@ "createdYear": [ 2001 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Civil blood : a Civil War mystery" ], @@ -8197,7 +8276,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b15393792" ], "inner_hits": { @@ -8218,85 +8297,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc E 03-795", + "urn:barcode:33433018585681" + ], + "physicalLocation": [ + "Sc E 03-795" + ], + "shelfMark_sort": "aSc E 03-000795", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018585681" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc E 03-795", - "urn:barcode:33433018585681" + "shelfMark": [ + "Sc E 03-795" ], + "uri": "i14562818", "identifierV2": [ { - "value": "Sc E 03-795", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 03-795" }, { - "value": "33433018585681", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018585681" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433018585681" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 03-795" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 03-795" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc E 03-000795", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14562818" + ] }, "sort": [ null @@ -8311,85 +8390,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFE 02-14816", + "urn:barcode:33433030975449" + ], + "physicalLocation": [ + "JFE 02-14816" + ], + "shelfMark_sort": "aJFE 02-014816", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433030975449" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFE 02-14816", - "urn:barcode:33433030975449" + "shelfMark": [ + "JFE 02-14816" ], + "uri": "i11756968", "identifierV2": [ { - "value": "JFE 02-14816", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFE 02-14816" }, { - "value": "33433030975449", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433030975449" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433030975449" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFE 02-14816" - ], "requestable": [ true ], - "shelfMark": [ - "JFE 02-14816" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFE 02-014816", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11756968" + ] }, "sort": [ null @@ -8404,85 +8483,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFE 02-14816", + "urn:barcode:33433018426258" + ], + "physicalLocation": [ + "JFE 02-14816" + ], + "shelfMark_sort": "aJFE 02-014816", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018426258" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFE 02-14816", - "urn:barcode:33433018426258" + "shelfMark": [ + "JFE 02-14816" ], + "uri": "i11756967", "identifierV2": [ { - "value": "JFE 02-14816", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFE 02-14816" }, { - "value": "33433018426258", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018426258" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433018426258" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFE 02-14816" - ], "requestable": [ true ], - "shelfMark": [ - "JFE 02-14816" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFE 02-014816", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11756967" + ] }, "sort": [ null @@ -8496,7 +8575,7 @@ { "_index": "resources-2024-10-22", "_id": "b15568526", - "_score": 279.4066, + "_score": 279.10864, "_ignored": [ "title.keyword", "title.keywordLowercased", @@ -8549,6 +8628,9 @@ "createdYear": [ 2000 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "So︠t︡sialʹni ta politychni nauky u Spivdru︠z︡hnosti nezale︠z︡hnykh der︠z︡hav (SND) : dopovidi druhoï robochoï zustrichi, Kyïv, 23-24 veresn︠i︡a 1999 r. = Social and political sciences in the Commonwealth of Independent states (CIS) : proceedings of the Second Workshop, Kyiv, September, 23-24, 1999" ], @@ -8671,7 +8753,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b15568526" ], "inner_hits": { @@ -8692,88 +8774,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*QGA 03-2333", + "urn:barcode:33433031887841" + ], + "physicalLocation": [ + "*QGA 03-2333" + ], + "shelfMark_sort": "a*QGA 03-002333", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433031887841" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*QGA 03-2333", - "urn:barcode:33433031887841" + "shelfMark": [ + "*QGA 03-2333" ], + "uri": "i12462040", "identifierV2": [ { - "value": "*QGA 03-2333", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*QGA 03-2333" }, { - "value": "33433031887841", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433031887841" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433031887841" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*QGA 03-2333" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*QGA 03-2333" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*QGA 03-002333", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12462040" + ] }, "sort": [ null @@ -8787,7 +8869,7 @@ { "_index": "resources-2024-10-22", "_id": "b15727834", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "xv, 336 p. : ill. ;" @@ -8831,12 +8913,15 @@ "createdYear": [ 2003 ], - "title": [ - "I never walked alone : the autobiography of an American singer" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "I never walked alone : the autobiography of an American singer" + ], "shelfMark": [ "JME 03-511" ], @@ -8861,9 +8946,6 @@ "dateStartYear": [ 2003 ], - "idOclc": [ - "vendor" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -8890,14 +8972,13 @@ "value": "2003002601" } ], + "idOclc": [ + "vendor" + ], "updatedAt": 1711013255913, "publicationStatement": [ "Hoboken, N.J. : John Wiley & Sons, c2003." ], - "idIsbn": [ - "GIFT REC'D AT SCH.", - "0471209910 (Cloth)" - ], "identifier": [ "urn:shelfmark:JME 03-511", "urn:bnum:15727834", @@ -8906,6 +8987,10 @@ "urn:oclc:vendor", "urn:lccn:2003002601" ], + "idIsbn": [ + "GIFT REC'D AT SCH.", + "0471209910 (Cloth)" + ], "numCheckinCardItems": [ 0 ], @@ -8962,7 +9047,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b15727834" ], "inner_hits": { @@ -8983,88 +9068,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JME 03-511", + "urn:barcode:33433035597842" + ], + "physicalLocation": [ + "JME 03-511" + ], + "shelfMark_sort": "aJME 03-000511", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433035597842" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JME 03-511", - "urn:barcode:33433035597842" + "shelfMark": [ + "JME 03-511" ], + "uri": "i12826752", "identifierV2": [ { - "value": "JME 03-511", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JME 03-511" }, { - "value": "33433035597842", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433035597842" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433035597842" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JME 03-511" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JME 03-511" - ], - "shelfMark_sort": "aJME 03-000511", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "uri": "i12826752" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -9078,7 +9163,7 @@ { "_index": "resources-2024-10-22", "_id": "b16081816", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "511 p." @@ -9116,6 +9201,9 @@ "createdYear": [ 1952 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Trudy I. V. Stalina o ︠i︡azykoznanii i voprosy istoricheskogo materializma." ], @@ -9243,7 +9331,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b16081816" ], "inner_hits": { @@ -9264,79 +9352,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*QGF (Aleksandrov, G. Trudy)", + "urn:barcode:33433070398676" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*QGF (Aleksandrov, G. Trudy)" ], + "shelfMark_sort": "a*QGF (Aleksandrov, G. Trudy)", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433070398676" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*QGF (Aleksandrov, G. Trudy)", - "urn:barcode:33433070398676" + "shelfMark": [ + "*QGF (Aleksandrov, G. Trudy)" ], + "uri": "i15492993", "identifierV2": [ { - "value": "*QGF (Aleksandrov, G. Trudy)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*QGF (Aleksandrov, G. Trudy)" }, { - "value": "33433070398676", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433070398676" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*QGF (Aleksandrov, G. Trudy)" + "idBarcode": [ + "33433070398676" ], "requestable": [ true ], - "shelfMark": [ - "*QGF (Aleksandrov, G. Trudy)" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*QGF (Aleksandrov, G. Trudy)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15492993" + ] }, "sort": [ null @@ -9350,7 +9438,7 @@ { "_index": "resources-2024-10-22", "_id": "b18845012", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "199 p. : ill. ;" @@ -9400,12 +9488,15 @@ "createdYear": [ 2010 ], - "title": [ - "Salvador Dalí : Les chants de Maldoror, 1934" + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Salvador Dalí : Les chants de Maldoror, 1934" + ], "shelfMark": [ "MDG (Dali) 11-2416" ], @@ -9430,11 +9521,6 @@ "dateStartYear": [ 2010 ], - "idOclc": [ - "671870008", - "0671870008", - "it 60710530" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -9465,14 +9551,16 @@ "value": "(OCoLC)0671870008" } ], + "idOclc": [ + "671870008", + "0671870008", + "it 60710530" + ], "popularity": 0, "updatedAt": 1729181297739, "publicationStatement": [ "[Figueres, Spain] : Distribucions d'Art Surrealista, 2010." ], - "idIsbn": [ - "" - ], "identifier": [ "urn:shelfmark:MDG (Dali) 11-2416", "urn:bnum:18845012", @@ -9482,6 +9570,9 @@ "urn:oclc:it 60710530", "urn:identifier:(OCoLC)0671870008" ], + "idIsbn": [ + "" + ], "numCheckinCardItems": [ 0 ], @@ -9540,7 +9631,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b18845012" ], "inner_hits": { @@ -9561,87 +9652,87 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1112", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection" } ], + "identifier": [ + "urn:shelfmark:MDG (Dali) 11-2416", + "urn:barcode:33433090594536" + ], + "physicalLocation": [ + "MDG (Dali) 11-2416" + ], + "shelfMark_sort": "aMDG (Dali) 11-002416", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mauu2", - "label": "Schwarzman Building - Print Collection Room 308" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mauu2||Schwarzman Building - Print Collection Room 308" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090594536" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=MDG+%28Dali%29+11-2416&Date=2010&Form=30&Genre=book+non-circ&ItemEdition=1.+ed.&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db18845012&ItemISxN=i262430988&ItemNumber=33433090594536&ItemPlace=%5BFigueres%2C+Spain%5D&ItemPublisher=Distribucions+d%27Art+Surrealista%2C+2010.&Location=Schwarzman+Prints+and+Photographs+Division&ReferenceNumber=b188450129&Site=SASPR&Title=Salvador+Dal%C3%AD+%3A+Les+chants+de+Maldoror%2C+1934" ], - "identifier": [ - "urn:shelfmark:MDG (Dali) 11-2416", - "urn:barcode:33433090594536" + "type": [ + "bf:Item" ], + "shelfMark": [ + "MDG (Dali) 11-2416" + ], + "uri": "i26243098", "identifierV2": [ { - "value": "MDG (Dali) 11-2416", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "MDG (Dali) 11-2416" }, { - "value": "33433090594536", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090594536" } ], - "owner": [ - { - "id": "orgs:1112", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection" - } + "holdingLocation_packed": [ + "loc:mauu2||Schwarzman Building - Print Collection Room 308" + ], + "idBarcode": [ + "33433090594536" ], "owner_packed": [ "orgs:1112||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection" ], - "physicalLocation": [ - "MDG (Dali) 11-2416" - ], "requestable": [ false ], - "shelfMark": [ - "MDG (Dali) 11-2416" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mauu2", + "label": "Schwarzman Building - Print Collection Room 308" + } ], - "shelfMark_sort": "aMDG (Dali) 11-002416", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i26243098", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=MDG+%28Dali%29+11-2416&Date=2010&Form=30&Genre=book+non-circ&ItemEdition=1.+ed.&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db18845012&ItemISxN=i262430988&ItemNumber=33433090594536&ItemPlace=%5BFigueres%2C+Spain%5D&ItemPublisher=Distribucions+d%27Art+Surrealista%2C+2010.&Location=Schwarzman+Prints+and+Photographs+Division&ReferenceNumber=b188450129&Site=SASPR&Title=Salvador+Dal%C3%AD+%3A+Les+chants+de+Maldoror%2C+1934" ] }, "sort": [ @@ -9656,7 +9747,7 @@ { "_index": "resources-2024-10-22", "_id": "b18883794", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "134 p. : ill. (some col.) ;" @@ -9695,12 +9786,15 @@ "createdYear": [ 2010 ], - "title": [ - "Le château Brethous : Camblanes-et-Meynac" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Le château Brethous : Camblanes-et-Meynac" + ], "shelfMark": [ "ReCAP 10-23065" ], @@ -9713,21 +9807,18 @@ "creatorLiteral": [ "Dupont, Aurélie." ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Châteaux viticoles de l'Entre-deux-Mers" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Coste, Laurent, 1961-" ], "dateStartYear": [ 2010 ], - "idOclc": [ - "666251824" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -9754,6 +9845,9 @@ "value": "(OCoLC)666251824" } ], + "idOclc": [ + "666251824" + ], "uniformTitle": [ "Châteaux viticoles de l'Entre-deux-Mers." ], @@ -9761,9 +9855,6 @@ "publicationStatement": [ "[Lignan-de-Bordeaux] : Société archéologique et historique du canton de Créon, 2010." ], - "idIsbn": [ - "(pbk.)" - ], "identifier": [ "urn:shelfmark:ReCAP 10-23065", "urn:bnum:18883794", @@ -9772,6 +9863,9 @@ "urn:identifier:(AUXAM)AAL0493710-0001", "urn:identifier:(OCoLC)666251824" ], + "idIsbn": [ + "(pbk.)" + ], "numCheckinCardItems": [ 0 ], @@ -9827,7 +9921,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b18883794" ], "inner_hits": { @@ -9848,88 +9942,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "identifier": [ + "urn:shelfmark:ReCAP 10-23065", + "urn:barcode:33433090205430" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "ReCAP 10-23065" ], - "holdingLocation": [ + "shelfMark_sort": "aReCAP 10-023065", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090205430" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 10-23065", - "urn:barcode:33433090205430" + "shelfMark": [ + "ReCAP 10-23065" ], + "uri": "i26247203", "identifierV2": [ { - "value": "ReCAP 10-23065", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 10-23065" }, { - "value": "33433090205430", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090205430" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433090205430" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 10-23065" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 10-23065" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 10-023065", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i26247203" + ] }, "sort": [ null @@ -9943,7 +10037,7 @@ { "_index": "resources-2024-10-22", "_id": "b18890661", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "318 p. : ill., maps ;" @@ -9983,6 +10077,9 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Xivray-et-Marvoisin (Meuse) et ses familles de 1695 à 1933 : documents d'archives, documents privés" ], @@ -10108,7 +10205,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b18890661" ], "inner_hits": { @@ -10129,88 +10226,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 10-23290", + "urn:barcode:33433090203732" + ], + "physicalLocation": [ + "ReCAP 10-23290" + ], + "shelfMark_sort": "aReCAP 10-023290", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090203732" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 10-23290", - "urn:barcode:33433090203732" + "shelfMark": [ + "ReCAP 10-23290" ], + "uri": "i26309432", "identifierV2": [ { - "value": "ReCAP 10-23290", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 10-23290" }, { - "value": "33433090203732", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090203732" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433090203732" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 10-23290" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 10-23290" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 10-023290", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i26309432" + ] }, "sort": [ null @@ -10224,7 +10321,7 @@ { "_index": "resources-2024-10-22", "_id": "b18894005", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "200 p. : ill., maps ;" @@ -10269,6 +10366,9 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "La Révolution française dans le \"pays vallée de la Sarthe\", 1789-1800" ], @@ -10398,7 +10498,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b18894005" ], "inner_hits": { @@ -10419,88 +10519,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 10-24397", + "urn:barcode:33433090192968" + ], + "physicalLocation": [ + "ReCAP 10-24397" + ], + "shelfMark_sort": "aReCAP 10-024397", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090192968" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 10-24397", - "urn:barcode:33433090192968" + "shelfMark": [ + "ReCAP 10-24397" ], + "uri": "i26348705", "identifierV2": [ { - "value": "ReCAP 10-24397", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 10-24397" }, { - "value": "33433090192968", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090192968" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433090192968" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 10-24397" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 10-24397" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 10-024397", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i26348705" + ] }, "sort": [ null @@ -10514,7 +10614,7 @@ { "_index": "resources-2024-10-22", "_id": "b19274772", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "86 p. : ill. ;" @@ -10548,7 +10648,10 @@ "createdYear": [ 2009 ], - "title": [ + "buildingLocationIds": [ + "rc" + ], + "title": [ "Au-dessus des djebels : aéronefs de l'armée de l'Air en AFN, 1945-1967 : moyens aériens engagés par l'armée de l'Air lors des opérations de pacification en 5ème RA" ], "type": [ @@ -10668,7 +10771,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19274772" ], "inner_hits": { @@ -10689,88 +10792,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 11-51203", + "urn:barcode:33433090183157" + ], + "physicalLocation": [ + "ReCAP 11-51203" + ], + "shelfMark_sort": "aReCAP 11-051203", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090183157" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 11-51203", - "urn:barcode:33433090183157" + "shelfMark": [ + "ReCAP 11-51203" ], + "uri": "i27468941", "identifierV2": [ { - "value": "ReCAP 11-51203", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 11-51203" }, { - "value": "33433090183157", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090183157" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433090183157" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 11-51203" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 11-51203" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 11-051203", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i27468941" + ] }, "sort": [ null @@ -10784,7 +10887,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626695", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "v. ;" @@ -10824,15 +10927,18 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "ma" + ], "dateEndString": [ "9999" ], - "title": [ - "Mariages et décès franco-belges dans l'Avesnois" - ], "type": [ "nypl:Item" ], + "title": [ + "Mariages et décès franco-belges dans l'Avesnois" + ], "shelfMark": [ "ReCAP 12-24738" ], @@ -10845,12 +10951,12 @@ "creatorLiteral": [ "Dubois, Lucette." ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Histoire en Sambre-Avesnois ; no 65" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Immereschts, Charles.", "Cercle historique et généalogique de Berlaimont." @@ -10858,9 +10964,6 @@ "dateStartYear": [ 2010 ], - "idOclc": [ - "670409914" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -10883,6 +10986,9 @@ "value": "(OCoLC)670409914" } ], + "idOclc": [ + "670409914" + ], "dateEndYear": [ 9999 ], @@ -10890,9 +10996,6 @@ "publicationStatement": [ "Berlaimont : Cercle historique et généalogique de Berlaimont, 2010-" ], - "idIsbn": [ - "(pbk.)" - ], "identifier": [ "urn:shelfmark:ReCAP 12-24738", "urn:bnum:19626695", @@ -10900,6 +11003,9 @@ "urn:oclc:670409914", "urn:identifier:(OCoLC)670409914" ], + "idIsbn": [ + "(pbk.)" + ], "numCheckinCardItems": [ 0 ], @@ -10954,7 +11060,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19626695" ], "inner_hits": { @@ -10975,91 +11081,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:ReCAP 12-24738 v. 1", + "urn:barcode:33433094173238" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "ReCAP 12-24738" + ], + "shelfMark_sort": "aReCAP 12-24738 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "ReCAP 12-24738 v. 1" + ], + "uri": "i28867446", + "identifierV2": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "type": "bf:ShelfMark", + "value": "ReCAP 12-24738 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433094173238" } ], "holdingLocation_packed": [ "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433094173238" ], - "identifier": [ - "urn:shelfmark:ReCAP 12-24738 v. 1", - "urn:barcode:33433094173238" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "ReCAP 12-24738 v. 1", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433094173238", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "ReCAP 12-24738" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "ReCAP 12-24738 v. 1" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "aReCAP 12-24738 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i28867446" + ] }, "sort": [ " 1-" @@ -11073,7 +11179,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626711", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "169 p. ;" @@ -11125,6 +11231,9 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Niederroedern : les baptêmes, 1704-1789" ], @@ -11249,7 +11358,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19626711" ], "inner_hits": { @@ -11270,88 +11379,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 12-51511", + "urn:barcode:33433094173394" + ], + "physicalLocation": [ + "ReCAP 12-51511" + ], + "shelfMark_sort": "aReCAP 12-051511", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433094173394" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 12-51511", - "urn:barcode:33433094173394" + "shelfMark": [ + "ReCAP 12-51511" ], + "uri": "i28732651", "identifierV2": [ { - "value": "ReCAP 12-51511", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 12-51511" }, { - "value": "33433094173394", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433094173394" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433094173394" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 12-51511" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 12-51511" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 12-051511", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28732651" + ] }, "sort": [ null @@ -11365,7 +11474,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626731", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "ii, 87 p. : charts ;" @@ -11412,12 +11521,15 @@ "createdYear": [ 2010 ], - "title": [ - "Nomain, Nord : B. M. S., 1683-1694" + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Nomain, Nord : B. M. S., 1683-1694" + ], "shelfMark": [ "ReCAP 12-51523" ], @@ -11430,21 +11542,18 @@ "creatorLiteral": [ "Malnar, Jacky." ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Publication (Centre d'études généalogiques du Douaisis) ; no 209" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Centre d'études généalogiques du Douaisis." ], "dateStartYear": [ 2010 ], - "idOclc": [ - "670409919" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -11467,6 +11576,9 @@ "value": "(OCoLC)670409919" } ], + "idOclc": [ + "670409919" + ], "uniformTitle": [ "Publication (Centre d'études généalogiques du Douaisis) ; no 209." ], @@ -11475,9 +11587,6 @@ "publicationStatement": [ "Douai : Centre d'études généalogiques du Douaisis, [2010]." ], - "idIsbn": [ - "(pbk.)" - ], "identifier": [ "urn:shelfmark:ReCAP 12-51523", "urn:bnum:19626731", @@ -11485,6 +11594,9 @@ "urn:oclc:670409919", "urn:identifier:(OCoLC)670409919" ], + "idIsbn": [ + "(pbk.)" + ], "numCheckinCardItems": [ 0 ], @@ -11525,15 +11637,15 @@ "placeOfPublication": [ "Douai" ], + "titleAlt": [ + "Nomain, Nord : baptêmes, mariages, sépultures, 1683-1694" + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Nomain, Nord : baptêmes, mariages, sépultures, 1683-1694" - ], "dimensions": [ "30 cm." ], @@ -11542,7 +11654,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19626731" ], "inner_hits": { @@ -11563,79 +11675,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:ReCAP 12-51523", + "urn:barcode:33433094173451" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "ReCAP 12-51523" + ], + "shelfMark_sort": "aReCAP 12-051523", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433094173451" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 12-51523", - "urn:barcode:33433094173451" + "shelfMark": [ + "ReCAP 12-51523" ], + "uri": "i28732700", "identifierV2": [ { - "value": "ReCAP 12-51523", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 12-51523" }, { - "value": "33433094173451", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433094173451" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "ReCAP 12-51523" + "idBarcode": [ + "33433094173451" ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 12-51523" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "aReCAP 12-051523", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28732700" + ] }, "sort": [ null @@ -11649,7 +11761,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626820", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "231 p. ; " @@ -11675,6 +11787,7 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [], "title": [ "Wingen, les naissances" ], @@ -11781,7 +11894,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19626820" ], "inner_hits": { @@ -11800,7 +11913,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626821", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "172 p. ; " @@ -11826,6 +11939,7 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [], "title": [ "Wingen, les décès" ], @@ -11932,7 +12046,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19626821" ], "inner_hits": { @@ -11951,7 +12065,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626822", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "137 p. ; " @@ -11977,6 +12091,7 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [], "title": [ "Wingen, les naissances" ], @@ -12083,7 +12198,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19626822" ], "inner_hits": { @@ -12102,7 +12217,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626833", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "107 p. ;" @@ -12145,6 +12260,9 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Hoffen : les mariages, 1793-1910" ], @@ -12268,7 +12386,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19626833" ], "inner_hits": { @@ -12289,88 +12407,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 12-51536", + "urn:barcode:33433094175514" + ], + "physicalLocation": [ + "ReCAP 12-51536" + ], + "shelfMark_sort": "aReCAP 12-051536", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433094175514" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 12-51536", - "urn:barcode:33433094175514" + "shelfMark": [ + "ReCAP 12-51536" ], + "uri": "i28732751", "identifierV2": [ { - "value": "ReCAP 12-51536", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 12-51536" }, { - "value": "33433094175514", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433094175514" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433094175514" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 12-51536" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 12-51536" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 12-051536", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28732751" + ] }, "sort": [ null @@ -12384,7 +12502,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626836", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "19, 98 p. ;" @@ -12435,6 +12553,9 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Schoenenbourg : Les sépultures, 1685-1792" ], @@ -12559,7 +12680,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b19626836" ], "inner_hits": { @@ -12580,88 +12701,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 12-51548", + "urn:barcode:33433094173683" + ], + "physicalLocation": [ + "ReCAP 12-51548" + ], + "shelfMark_sort": "aReCAP 12-051548", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433094173683" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 12-51548", - "urn:barcode:33433094173683" + "shelfMark": [ + "ReCAP 12-51548" ], + "uri": "i28732754", "identifierV2": [ { - "value": "ReCAP 12-51548", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 12-51548" }, { - "value": "33433094173683", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433094173683" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433094173683" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 12-51548" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 12-51548" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 12-051548", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28732754" + ] }, "sort": [ null @@ -12675,50 +12796,14 @@ { "_index": "resources-2024-10-22", "_id": "b19797207", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "2 volumes : illustrations ;" ], - "parallelDisplayField": [ - { - "fieldName": "publicationStatement", - "index": 0, - "value": "Москва ; Краснодар ; Санкт Петербург : Лань : Планета музыки, 2013." - }, - { - "fieldName": "placeOfPublication", - "index": 0, - "value": "Москва ; Краснодар ; Санкт Петербург" - }, - { - "fieldName": "tableOfContents", - "index": 0, - "value": "Том 1: История: как всё начиналось; Мастера российского джаза -- Том 2: Мастера российского джаза (продолжение); Поколение XXI века: куда идём?; Проблемы и решения." - } - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (pages 537-538).", - "type": "bf:Note" - } - ], "nyplSource": [ "sierra-nypl" ], - "subjectLiteral_exploded": [ - "Jazz", - "Jazz -- Russia (Federation)", - "Jazz -- Russia (Federation) -- History", - "Jazz -- Russia (Federation) -- History -- 20th century", - "Jazz musicians", - "Jazz musicians -- Russia (Federation)", - "Jazz musicians -- Russia (Federation) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], "publisherLiteral": [ "Lanʹ : Planeta muzyki" ], @@ -12731,46 +12816,27 @@ "label": "Russian" } ], - "numItemsTotal": [ - 2 - ], "createdYear": [ 2013 ], + "buildingLocationIds": [ + "rc" + ], "parallelTitle": [ "Российский джаз : в двух томах" ], - "title": [ - "Rossiĭskiĭ dzhaz : v dvukh tomakh" - ], "type": [ "nypl:Item" ], "shelfMark": [ "JMD 14-169" ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "2013" - ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Mir kulʹtury, istorii i filosofii" ], - "contributorLiteral": [ - "Filipʹeva, A.", - "Moshkov, Kirill, 1968-" - ], "dateStartYear": [ 2013 ], - "idOclc": [ - "857364582" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -12830,10 +12896,6 @@ "value": "(OCoLC)857364582" } ], - "uniformTitle": [ - "Seri︠i︡a \"Mir kulʹtury, istorii i filosofii.\"" - ], - "popularity": 2, "parallelUniformTitle": [ "Серия \"Мир культуры, истории и философии.\"" ], @@ -12841,17 +12903,6 @@ "publicationStatement": [ "Moskva ; Krasnodar ; Sankt Peterburg : Lanʹ : Planeta muzyki, 2013." ], - "idIsbn": [ - "9785811414475 (v.1) (Izd-vo Lanʹ)", - "5811414471 (v.1) (Izd-vo Lanʹ)", - "9785919380801 (v. 1) (Izd-vo Planeta Muzyki)", - "5919380802 (v. 1) (Izd-vo Planeta Muzyki)", - "9785811414482 (v. 2) (Izd-vo Lanʹ)", - "581141448X (v. 2) (Izd-vo Lanʹ)", - "", - "9785919380818 (v. 2) (Izd-vo Planeta Muzyki)", - "5919380810 (v. 2) (Izd-vo Planeta Muzyki)" - ], "identifier": [ "urn:shelfmark:JMD 14-169", "urn:bnum:19797207", @@ -12868,24 +12919,6 @@ "urn:oclc:857364582", "urn:identifier:(OCoLC)857364582" ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "2013" - ], "mediaType": [ { "id": "mediatypes:n", @@ -12896,169 +12929,260 @@ "Jazz -- Russia (Federation) -- History -- 20th century.", "Jazz musicians -- Russia (Federation) -- Biography." ], - "titleDisplay": [ - "Rossiĭskiĭ dzhaz : v dvukh tomakh / pod redak︠t︡sieĭ K. Moshkova i A. Filipʹevoĭ." - ], - "uri": "b19797207", "lccClassification": [ "ML3509.R8 R677 2013" ], - "parallelContributorLiteral": [ - "Филипьева, А.", - "Мошков, Кирилл, 1968-" - ], "parallelSeriesStatement": [ "Мир культуры, истории и философии" ], - "parallelTitleDisplay": [ - "Российский джаз : в двух томах / под редакцией К. Мошкова и А. Филипьевой." + "titleAlt": [ + "Russian jazz : ninety years of history" ], - "placeOfPublication": [ - "Moskva ; Krasnodar ; Sankt Peterburg" + "tableOfContents": [ + "Tom 1: Istori︠i︡a: kak vsë nachinalosʹ; Mastera rossiĭskogo dzhaza -- Tom 2: Mastera rossiĭskogo dzhaza (prodolzhenie); Pokolenie XXI veka: kuda idëm?; Problemy i resheni︠i︡a." ], - "issuance": [ + "parallelDisplayField": [ { - "id": "urn:biblevel:m", - "label": "monograph/item" + "fieldName": "publicationStatement", + "index": 0, + "value": "Москва ; Краснодар ; Санкт Петербург : Лань : Планета музыки, 2013." + }, + { + "fieldName": "placeOfPublication", + "index": 0, + "value": "Москва ; Краснодар ; Санкт Петербург" + }, + { + "fieldName": "tableOfContents", + "index": 0, + "value": "Том 1: История: как всё начиналось; Мастера российского джаза -- Том 2: Мастера российского джаза (продолжение); Поколение XXI века: куда идём?; Проблемы и решения." } ], - "titleAlt": [ - "Russian jazz : ninety years of history" + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (pages 537-538).", + "type": "bf:Note" + } ], - "tableOfContents": [ - "Tom 1: Istori︠i︡a: kak vsë nachinalosʹ; Mastera rossiĭskogo dzhaza -- Tom 2: Mastera rossiĭskogo dzhaza (prodolzhenie); Pokolenie XXI veka: kuda idëm?; Problemy i resheni︠i︡a." + "subjectLiteral_exploded": [ + "Jazz", + "Jazz -- Russia (Federation)", + "Jazz -- Russia (Federation) -- History", + "Jazz -- Russia (Federation) -- History -- 20th century", + "Jazz musicians", + "Jazz musicians -- Russia (Federation)", + "Jazz musicians -- Russia (Federation) -- Biography" ], - "dimensions": [ - "21 cm." + "numItemDatesParsed": [ + 0 ], - "idIsbn_clean": [ - "97858114144751", - "58114144711", - "97859193808011", - "59193808021", - "97858114144822", - "581141448X2", - "", - "97859193808182", - "59193808102" - ] - }, - "sort": [ - 279.4066, - "b19797207" - ], - "inner_hits": { - "items": { - "hits": { - "total": { - "value": 2, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-10-22", - "_id": "b19797207", - "_nested": { - "field": "items", + "numItemsTotal": [ + 2 + ], + "title": [ + "Rossiĭskiĭ dzhaz : v dvukh tomakh" + ], + "numItemVolumesParsed": [ + 2 + ], + "createdString": [ + "2013" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Filipʹeva, A.", + "Moshkov, Kirill, 1968-" + ], + "idOclc": [ + "857364582" + ], + "uniformTitle": [ + "Seri︠i︡a \"Mir kulʹtury, istorii i filosofii.\"" + ], + "popularity": 2, + "idIsbn": [ + "9785811414475 (v.1) (Izd-vo Lanʹ)", + "5811414471 (v.1) (Izd-vo Lanʹ)", + "9785919380801 (v. 1) (Izd-vo Planeta Muzyki)", + "5919380802 (v. 1) (Izd-vo Planeta Muzyki)", + "9785811414482 (v. 2) (Izd-vo Lanʹ)", + "581141448X (v. 2) (Izd-vo Lanʹ)", + "", + "9785919380818 (v. 2) (Izd-vo Planeta Muzyki)", + "5919380810 (v. 2) (Izd-vo Planeta Muzyki)" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "2013" + ], + "titleDisplay": [ + "Rossiĭskiĭ dzhaz : v dvukh tomakh / pod redak︠t︡sieĭ K. Moshkova i A. Filipʹevoĭ." + ], + "uri": "b19797207", + "parallelContributorLiteral": [ + "Филипьева, А.", + "Мошков, Кирилл, 1968-" + ], + "parallelTitleDisplay": [ + "Российский джаз : в двух томах / под редакцией К. Мошкова и А. Филипьевой." + ], + "placeOfPublication": [ + "Moskva ; Krasnodar ; Sankt Peterburg" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "21 cm." + ], + "idIsbn_clean": [ + "97858114144751", + "58114144711", + "97859193808011", + "59193808021", + "97858114144822", + "581141448X2", + "", + "97859193808182", + "59193808102" + ] + }, + "sort": [ + 279.10864, + "b19797207" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 2, + "relation": "eq" + }, + "max_score": null, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b19797207", + "_nested": { + "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMD 14-169 v. 2", + "urn:barcode:33433111774158" + ], + "physicalLocation": [ + "JMD 14-169" + ], + "shelfMark_sort": "aJMD 14-169 v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JMD 14-169 v. 2" + ], + "uri": "i31438752", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMD 14-169 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433111774158" } ], "holdingLocation_packed": [ "loc:rcpm2||Offsite" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433111774158" ], - "identifier": [ - "urn:shelfmark:JMD 14-169 v. 2", - "urn:barcode:33433111774158" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMD 14-169 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433111774158", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JMD 14-169" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMD 14-169 v. 2" - ], - "shelfMark_sort": "aJMD 14-169 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i31438752" + ] }, "sort": [ " 2-" @@ -13073,100 +13197,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMD 14-169 v. 1", + "urn:barcode:33433111774166" + ], + "physicalLocation": [ + "JMD 14-169" + ], + "shelfMark_sort": "aJMD 14-169 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JMD 14-169 v. 1" + ], + "uri": "i31438751", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMD 14-169 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433111774166" } ], "holdingLocation_packed": [ "loc:rcpm2||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433111774166" ], - "identifier": [ - "urn:shelfmark:JMD 14-169 v. 1", - "urn:barcode:33433111774166" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMD 14-169 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433111774166", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JMD 14-169" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMD 14-169 v. 1" - ], - "shelfMark_sort": "aJMD 14-169 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i31438751" + ] }, "sort": [ " 1-" @@ -13180,7 +13304,7 @@ { "_index": "resources-2024-10-22", "_id": "b20518533", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "248 p. : ill. (some col.), charts (some col.) ;" @@ -13234,6 +13358,9 @@ "createdYear": [ 2013 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "France-Brésil, échanges intellectuels et artistiques : repères historiques et prospectifs" ], @@ -13357,7 +13484,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "b20518533" ], "inner_hits": { @@ -13378,88 +13505,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 15-60536", + "urn:barcode:33433112874940" + ], + "physicalLocation": [ + "ReCAP 15-60536" + ], + "shelfMark_sort": "aReCAP 15-060536", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433112874940" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 15-60536", - "urn:barcode:33433112874940" + "shelfMark": [ + "ReCAP 15-60536" ], + "uri": "i32505166", "identifierV2": [ { - "value": "ReCAP 15-60536", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 15-60536" }, { - "value": "33433112874940", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433112874940" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433112874940" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 15-60536" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 15-60536" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 15-060536", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i32505166" + ] }, "sort": [ null @@ -13473,7 +13600,7 @@ { "_index": "resources-2024-10-22", "_id": "b20613060", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "93 pages ;" @@ -13510,6 +13637,7 @@ "createdYear": [ 2013 ], + "buildingLocationIds": [], "title": [ "Evreii din România : [Matineul de duminică, 2 - 17 februarie 2013]" ], @@ -13576,7 +13704,159 @@ } ], "dateString": [ - "2013" + "2013" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jews.", + "Romania." + ], + "titleDisplay": [ + "Evreii din România : [Matineul de duminică, 2 - 17 februarie 2013] / Ileana Buculei." + ], + "uri": "b20613060", + "placeOfPublication": [ + "Bucureşti" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm" + ], + "idIsbn_clean": [ + "" + ] + }, + "sort": [ + 279.10864, + "b20613060" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 0, + "relation": "eq" + }, + "max_score": null, + "hits": [] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b23380112", + "_score": 279.10864, + "_source": { + "extent": [ + "85 pages : illustrations ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tierra Nueva" + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "numItemsTotal": [ + 0 + ], + "createdYear": [ + 2023 + ], + "buildingLocationIds": [], + "title": [ + "Historia de San Joaquín de Omaguas : rescate de un linaje asombroso" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "2023" + ], + "creatorLiteral": [ + "Vílchez Vela, Percy, 1960-" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 2023 + ], + "idOclc": [ + "00019739" + ], + "identifierV2": [ + { + "type": "nypl:Bnumber", + "value": "23380112" + }, + { + "type": "bf:Isbn", + "value": "9786124142765" + }, + { + "type": "bf:Isbn", + "value": "i" + }, + { + "type": "nypl:Oclc", + "value": "00019739" + } + ], + "popularity": 0, + "updatedAt": 1722431001509, + "publicationStatement": [ + "Iquitos, Perú : Tierra Nueva, 2023." + ], + "idIsbn": [ + "9786124142765", + "i" + ], + "identifier": [ + "urn:bnum:23380112", + "urn:isbn:9786124142765", + "urn:isbn:i", + "urn:oclc:00019739" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "2023" ], "mediaType": [ { @@ -13584,16 +13864,12 @@ "label": "unmediated" } ], - "subjectLiteral": [ - "Jews.", - "Romania." - ], "titleDisplay": [ - "Evreii din România : [Matineul de duminică, 2 - 17 februarie 2013] / Ileana Buculei." + "Historia de San Joaquín de Omaguas : rescate de un linaje asombroso / Percy Vílchez Vela." ], - "uri": "b20613060", + "uri": "b23380112", "placeOfPublication": [ - "Bucureşti" + "Iquitos, Perú" ], "issuance": [ { @@ -13602,15 +13878,16 @@ } ], "dimensions": [ - "22 cm" + "18 cm" ], "idIsbn_clean": [ + "9786124142765", "" ] }, "sort": [ - 279.4066, - "b20613060" + 279.10864, + "b23380112" ], "inner_hits": { "items": { @@ -13627,35 +13904,42 @@ }, { "_index": "resources-2024-10-22", - "_id": "b23380112", - "_score": 279.4066, + "_id": "b23454022", + "_score": 279.10864, "_source": { "extent": [ - "85 pages : illustrations ;" + "30, 2 unnumbered pages : illustrations ;" ], "nyplSource": [ "sierra-nypl" ], + "subjectLiteral_exploded": [ + "Tykocin (Poland)", + "Tykocin (Poland) -- History", + "Tykocin (Poland) -- History -- 17th century", + "Tykocin (Poland) -- History -- 17th century -- Historical comic books, stripes, etc" + ], "numItemDatesParsed": [ 0 ], "publisherLiteral": [ - "Tierra Nueva" + "Wydawnictwo Podlaski Młyn" ], "language": [ { - "id": "lang:spa", - "label": "Spanish" + "id": "lang:pol", + "label": "Polish" } ], "numItemsTotal": [ 0 ], + "buildingLocationIds": [], "createdYear": [ - 2023 + 2012 ], "title": [ - "Historia de San Joaquín de Omaguas : rescate de un linaje asombroso" + "Zdobycie Tykocina : 1657" ], "type": [ "nypl:Item" @@ -13664,52 +13948,54 @@ 0 ], "createdString": [ - "2023" - ], - "creatorLiteral": [ - "Vílchez Vela, Percy, 1960-" + "2012" ], "numElectronicResources": [ 0 ], + "contributorLiteral": [ + "Rudawski, Adam", + "Lebiedzińska, Kamila", + "Busłowski, Andrzej" + ], "dateStartYear": [ - 2023 + 2012 ], "idOclc": [ - "00019739" + "lx2024105775" ], "identifierV2": [ { "type": "nypl:Bnumber", - "value": "23380112" + "value": "23454022" }, { "type": "bf:Isbn", - "value": "9786124142765" + "value": "[without ISBN] ;" }, { - "type": "bf:Isbn", - "value": "i" + "type": "nypl:Oclc", + "value": "lx2024105775" }, { - "type": "nypl:Oclc", - "value": "00019739" + "type": "bf:Identifier", + "value": "(PlWaKWL)nr2145725974" } ], "popularity": 0, - "updatedAt": 1722431001509, + "updatedAt": 1730481867767, "publicationStatement": [ - "Iquitos, Perú : Tierra Nueva, 2023." + "Tykocin : Wydawnictwo Podlaski Młyn, 2012.", + "©2012" ], "idIsbn": [ - "9786124142765", - "i" + "[without ISBN] ;" ], "identifier": [ - "urn:bnum:23380112", - "urn:isbn:9786124142765", - "urn:isbn:i", - "urn:oclc:00019739" + "urn:bnum:23454022", + "urn:isbn:[without ISBN] ;", + "urn:oclc:lx2024105775", + "urn:identifier:(PlWaKWL)nr2145725974" ], "numCheckinCardItems": [ 0 @@ -13727,7 +14013,7 @@ } ], "dateString": [ - "2023" + "2012" ], "mediaType": [ { @@ -13735,12 +14021,18 @@ "label": "unmediated" } ], + "subjectLiteral": [ + "Tykocin (Poland) -- History -- 17th century -- Historical comic books, stripes, etc." + ], "titleDisplay": [ - "Historia de San Joaquín de Omaguas : rescate de un linaje asombroso / Percy Vílchez Vela." + "Zdobycie Tykocina : 1657 / scenariusz: Adam Rudawski; rysunki: Kamila Lebiedzińska, Andrzej Busłowski." + ], + "uri": "b23454022", + "lccClassification": [ + "PN6790.P63.4 Z36 2012" ], - "uri": "b23380112", "placeOfPublication": [ - "Iquitos, Perú" + "Tykocin" ], "issuance": [ { @@ -13749,16 +14041,15 @@ } ], "dimensions": [ - "18 cm" + "24 cm." ], "idIsbn_clean": [ - "9786124142765", "" ] }, "sort": [ - 279.4066, - "b23380112" + 279.10864, + "b23454022" ], "inner_hits": { "items": { @@ -13776,7 +14067,7 @@ { "_index": "resources-2024-10-22", "_id": "cb10558328", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "2 volumes ;" @@ -13826,27 +14117,30 @@ "createdYear": [ 2013 ], + "buildingLocationIds": [ + "rc" + ], "parallelTitle": [ "Российский джаз : в двух томах" ], - "title": [ - "Rossiĭskiĭ dzhaz : v dvukh tomakh" - ], "type": [ "nypl:Item" ], + "title": [ + "Rossiĭskiĭ dzhaz : v dvukh tomakh" + ], "numItemVolumesParsed": [ 0 ], "createdString": [ "2013" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Mir kulʹtury, istorii i filosofii" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Filipʹeva, A.", "Moshkov, Kirill, 1968-" @@ -13854,11 +14148,6 @@ "dateStartYear": [ 2013 ], - "idOclc": [ - "ocn857364582", - "857364582", - "SCSB-5718665" - ], "identifierV2": [ { "type": "nypl:Bnumber", @@ -13934,6 +14223,11 @@ "value": "10558328" } ], + "idOclc": [ + "ocn857364582", + "857364582", + "SCSB-5718665" + ], "uniformTitle": [ "Serii︠a︡ \"Mir kulʹtury, istorii i filosofii.\"" ], @@ -13944,17 +14238,6 @@ "publicationStatement": [ "Moskva ; Krasnodar ; Sankt Peterburg : Lanʹ : Planeta muzyki, 2013." ], - "idIsbn": [ - "9785811414475 (v.1) (Izd-vo Lanʹ)", - "5811414471 (v.1) (Izd-vo Lanʹ)", - "9785919380801 (v. 1) (Izd-vo Planeta Muzyki)", - "5919380802 (v. 1) (Izd-vo Planeta Muzyki)", - "9785811414482 (v. 2) (Izd-vo Lanʹ)", - "581141448X (v. 2) (Izd-vo Lanʹ)", - "", - "9785919380818 (v. 2) (Izd-vo Planeta Muzyki)", - "5919380810 (v. 2) (Izd-vo Planeta Muzyki)" - ], "identifier": [ "urn:bnum:10558328", "urn:isbn:9785811414475 (v.1) (Izd-vo Lanʹ)", @@ -13975,6 +14258,17 @@ "urn:identifier:(NNC)10558328", "urn:identifier:10558328" ], + "idIsbn": [ + "9785811414475 (v.1) (Izd-vo Lanʹ)", + "5811414471 (v.1) (Izd-vo Lanʹ)", + "9785919380801 (v. 1) (Izd-vo Planeta Muzyki)", + "5919380802 (v. 1) (Izd-vo Planeta Muzyki)", + "9785811414482 (v. 2) (Izd-vo Lanʹ)", + "581141448X (v. 2) (Izd-vo Lanʹ)", + "", + "9785919380818 (v. 2) (Izd-vo Planeta Muzyki)", + "5919380810 (v. 2) (Izd-vo Planeta Muzyki)" + ], "numCheckinCardItems": [ 0 ], @@ -14045,7 +14339,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "cb10558328" ], "inner_hits": { @@ -14066,82 +14360,82 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0002", + "label": "Columbia University Libraries" } ], + "identifier": [ + "urn:shelfmark:ML3509.R8 R677 2013g t.2", + "urn:barcode:CU23199733" + ], + "physicalLocation": [ + "ML3509.R8 R677 2013g" + ], + "shelfMark_sort": "aML3509.R8 R677 2013g t.000002", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "enumerationChronology": [ - "t.2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "formatLiteral": [ - "Text" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "CU23199733" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ML3509.R8 R677 2013g t.2", - "urn:barcode:CU23199733" + "shelfMark": [ + "ML3509.R8 R677 2013g t.2" ], + "uri": "ci8385547", "identifierV2": [ { - "value": "ML3509.R8 R677 2013g t.2", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ML3509.R8 R677 2013g t.2" }, { - "value": "CU23199733", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "CU23199733" } ], - "owner": [ - { - "id": "orgs:0002", - "label": "Columbia University Libraries" - } + "enumerationChronology": [ + "t.2" + ], + "idBarcode": [ + "CU23199733" ], "owner_packed": [ "orgs:0002||Columbia University Libraries" ], - "physicalLocation": [ - "ML3509.R8 R677 2013g" - ], - "recapCustomerCode": [ - "CU" - ], "requestable": [ true ], - "shelfMark": [ - "ML3509.R8 R677 2013g t.2" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "CU" ], - "shelfMark_sort": "aML3509.R8 R677 2013g t.000002", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "ci8385547" + ] }, "sort": [ null @@ -14156,82 +14450,82 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0002", + "label": "Columbia University Libraries" } ], + "identifier": [ + "urn:shelfmark:ML3509.R8 R677 2013g t.1", + "urn:barcode:CU23199741" + ], + "physicalLocation": [ + "ML3509.R8 R677 2013g" + ], + "shelfMark_sort": "aML3509.R8 R677 2013g t.000001", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "enumerationChronology": [ - "t.1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "formatLiteral": [ - "Text" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "CU23199741" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ML3509.R8 R677 2013g t.1", - "urn:barcode:CU23199741" + "shelfMark": [ + "ML3509.R8 R677 2013g t.1" ], + "uri": "ci8385546", "identifierV2": [ { - "value": "ML3509.R8 R677 2013g t.1", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ML3509.R8 R677 2013g t.1" }, { - "value": "CU23199741", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "CU23199741" } ], - "owner": [ - { - "id": "orgs:0002", - "label": "Columbia University Libraries" - } + "enumerationChronology": [ + "t.1" + ], + "idBarcode": [ + "CU23199741" ], "owner_packed": [ "orgs:0002||Columbia University Libraries" ], - "physicalLocation": [ - "ML3509.R8 R677 2013g" + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" ], "recapCustomerCode": [ "CU" ], - "requestable": [ - true - ], - "shelfMark": [ - "ML3509.R8 R677 2013g t.1" - ], - "shelfMark_sort": "aML3509.R8 R677 2013g t.000001", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "ci8385546" + ] }, "sort": [ null @@ -14245,7 +14539,7 @@ { "_index": "resources-2024-10-22", "_id": "cb131516", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "xii, 71 p. ;" @@ -14375,7 +14669,7 @@ ] }, "sort": [ - 279.4066, + 279.10864, "cb131516" ], "inner_hits": { @@ -14468,7 +14762,7 @@ { "_index": "resources-2024-10-22", "_id": "cb469529", - "_score": 279.4066, + "_score": 279.10864, "_source": { "extent": [ "48 p. : ill., maps (some col.) ;" @@ -14545,253 +14839,13 @@ "label": "unmediated" } ], - "subjectLiteral": [ - "City planning -- Ontario -- Toronto." - ], - "titleDisplay": [ - "Plan for Yorkville : draft proposals / presented for the public discussion by the City of Toronto Planning Board." - ], - "uri": "cb469529", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Toronto :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - 279.4066, - "cb469529" - ], - "inner_hits": { - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-10-22", - "_id": "cb469529", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:0002", - "label": "Columbia University Libraries" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:AR52190137" - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "ci713317", - "shelfMark": [ - "AA9130 T63 T6356" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "AA9130 T63 T6356" - }, - { - "type": "bf:Barcode", - "value": "AR52190137" - } - ], - "idBarcode": [ - "AR52190137" - ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-10-22", - "_id": "cb70235", - "_score": 279.4066, - "_source": { - "extent": [ - "312 p. ;" - ], - "nyplSource": [ - "recap-cul" - ], - "publisherLiteral": [ - "American Novelists' Cooperative Publications," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1977 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Rabbi : a tale of the waning year / Stanley Sultan." - ], - "creatorLiteral": [ - "Sultan, Stanley." - ], - "createdString": [ - "1977" - ], - "idLccn": [ - " 77010052 " - ], - "dateStartYear": [ - 1977 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "70235" - }, - { - "type": "bf:Isbn", - "value": "(pbk.)" - }, - { - "type": "bf:Lccn", - "value": " 77010052 " - }, - { - "type": "nypl:Oclc", - "value": "3168797" - }, - { - "type": "nypl:Oclc", - "value": "ocm03168797" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)3168797" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm03168797" - }, - { - "type": "bf:Identifier", - "value": "(CStRLIN)NYCG82-B13057" - }, - { - "type": "bf:Identifier", - "value": "(NNC)70235" - } - ], - "idOclc": [ - "3168797", - "ocm03168797" - ], - "holdings": [], - "updatedAt": 1639675654859, - "publicationStatement": [ - "West Whately, Mass. : American Novelists' Cooperative Publications, c1977." - ], - "identifier": [ - "urn:bnum:70235", - "urn:isbn:(pbk.)", - "urn:lccn: 77010052 ", - "urn:oclc:3168797", - "urn:oclc:ocm03168797", - "urn:undefined:(OCoLC)3168797", - "urn:undefined:(OCoLC)ocm03168797", - "urn:undefined:(CStRLIN)NYCG82-B13057", - "urn:undefined:(NNC)70235" - ], - "idIsbn": [ - "(pbk.)" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1977" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "titleDisplay": [ - "Rabbi : a tale of the waning year / Stanley Sultan." + "subjectLiteral": [ + "City planning -- Ontario -- Toronto." ], - "uri": "cb70235", - "lccClassification": [ - "PZ4.S9532 Rab PS3569.U3597" + "titleDisplay": [ + "Plan for Yorkville : draft proposals / presented for the public discussion by the City of Toronto Planning Board." ], + "uri": "cb469529", "numItems": [ 1 ], @@ -14799,7 +14853,7 @@ 1 ], "placeOfPublication": [ - "West Whately, Mass. :" + "Toronto :" ], "issuance": [ { @@ -14808,12 +14862,12 @@ } ], "dimensions": [ - "23 cm." + "28 cm." ] }, "sort": [ - 279.4066, - "cb70235" + 279.10864, + "cb469529" ], "inner_hits": { "items": { @@ -14826,76 +14880,72 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "cb70235", + "_id": "cb469529", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "uri": "ci106279", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:AR52190137" ], "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "ci713317", "shelfMark": [ - "PS3569.U3597 R3" + "AA9130 T63 T6356" ], "identifierV2": [ { - "value": "PS3569.U3597 R3", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "AA9130 T63 T6356" }, { "type": "bf:Barcode", - "value": "CU54669421" + "value": "AR52190137" } ], - "physicalLocation": [ - "PS3569.U3597 R3" - ], - "identifier": [ - "urn:barcode:CU54669421" - ], "idBarcode": [ - "CU54669421" + "AR52190137" + ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aPS3569.U3597 R000003" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -14908,174 +14958,108 @@ }, { "_index": "resources-2024-10-22", - "_id": "pb99102451453506421", - "_score": 279.4066, + "_id": "cb70235", + "_score": 279.10864, "_source": { "extent": [ - "99 pages : many color illustrations ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes biography and list of works (pages 95-97)", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes biography and list of works (pages 95-97).", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Text in English and Swedish.", - "type": "bf:Note" - } + "312 p. ;" ], "nyplSource": [ - "recap-pul" - ], - "subjectLiteral_exploded": [ - "Wåhlstrand, Gunnel, 1974-", - "Artists", - "Artists -- Sweden", - "Artists -- Sweden -- Exhibitions", - "Artists -- Sweden -- Biography", - "Ink painting", - "Ink painting -- Sweden", - "Ink painting -- Sweden -- Exhibitions", - "Painting, Swedish", - "Painting, Swedish -- 21st century", - "Painting, Swedish -- 21st century -- Exhibitions" - ], - "numItemDatesParsed": [ - 0 + "recap-cul" ], "publisherLiteral": [ - "Art and Theory" - ], - "description": [ - "Swedish artist Gunnel Wåhlstrand (b. 1974) creates extraordinary large-scale ink wash paintings featuring monumental landscapes, compelling portraits and serene interiors with intriguing compositions. The point of departure for Wåhlstrand's work was a box of family photographs, the only connection that she had to her father while growing up. To fill the silence surrounding his life and disappearance, she began to use these photographs: enlarging the image, delving into every detail and using her imagination to complete any information that is lacking or obscured. Each work takes months to complete, as the ink washes are applied in successive layers, gradually filling the white paper through a process that the artist likens to a slowly developing photograph. This book assembles all of the artist's works, including an interview with the artist and a text by Lars Norén." + "American Novelists' Cooperative Publications," ], "language": [ { - "id": "lang:mul", - "label": "Multiple languages" + "id": "lang:eng", + "label": "English" } ], - "numItemsTotal": [ - 1 - ], "createdYear": [ - 2017 + 1977 ], - "title": [ - "Gunnel Wåhlstrand" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], - "numItemVolumesParsed": [ - 0 + "title": [ + "Rabbi : a tale of the waning year / Stanley Sultan." + ], + "creatorLiteral": [ + "Sultan, Stanley." ], "createdString": [ - "2017" + "1977" ], "idLccn": [ - "2017367481" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Magasin 3 Stockholm konsthalls utställningskatalog ; no. 45" - ], - "contributorLiteral": [ - "Klintenberg Gedda, Ellen, 1989-", - "Lindblad, Jennifer", - "Neuman, David." + " 77010052 " ], "dateStartYear": [ - 2017 - ], - "idOclc": [ - "ocn988900729", - "SCSB-8795832" + 1977 ], "identifierV2": [ { "type": "nypl:Bnumber", - "value": "99102451453506421" - }, - { - "type": "bf:Isbn", - "value": "C (book trade edition : cl.)" + "value": "70235" }, { "type": "bf:Isbn", - "value": "9789188031440" + "value": "(pbk.)" }, { - "type": "bf:Isbn", - "value": "9188031446" + "type": "bf:Lccn", + "value": " 77010052 " }, { "type": "nypl:Oclc", - "value": "ocn988900729" + "value": "3168797" }, { "type": "nypl:Oclc", - "value": "SCSB-8795832" - }, - { - "type": "bf:Lccn", - "value": "2017367481" - }, - { - "type": "bf:Identifier", - "value": "(NL-AmEBA)NTS250337" + "value": "ocm03168797" }, { "type": "bf:Identifier", - "value": "(NjP)10245145-princetondb" + "value": "(OCoLC)3168797" }, { "type": "bf:Identifier", - "value": "(OCoLC)ocn988900729" + "value": "(OCoLC)ocm03168797" }, { "type": "bf:Identifier", - "value": "(OCoLC)981545584 (OCoLC)981867608" + "value": "(CStRLIN)NYCG82-B13057" }, { "type": "bf:Identifier", - "value": "(NjP)Voyager10245145" + "value": "(NNC)70235" } ], - "updatedAt": 1715301569503, - "publicationStatement": [ - "Stockholm : Art and Theory, [2017]" + "idOclc": [ + "3168797", + "ocm03168797" ], - "idIsbn": [ - "C (book trade edition : cl.)", - "9789188031440", - "9188031446" + "holdings": [], + "updatedAt": 1639675654859, + "publicationStatement": [ + "West Whately, Mass. : American Novelists' Cooperative Publications, c1977." ], "identifier": [ - "urn:bnum:99102451453506421", - "urn:isbn:C (book trade edition : cl.)", - "urn:isbn:9789188031440", - "urn:isbn:9188031446", - "urn:oclc:ocn988900729", - "urn:oclc:SCSB-8795832", - "urn:lccn:2017367481", - "urn:identifier:(NL-AmEBA)NTS250337", - "urn:identifier:(NjP)10245145-princetondb", - "urn:identifier:(OCoLC)ocn988900729", - "urn:identifier:(OCoLC)981545584 (OCoLC)981867608", - "urn:identifier:(NjP)Voyager10245145" + "urn:bnum:70235", + "urn:isbn:(pbk.)", + "urn:lccn: 77010052 ", + "urn:oclc:3168797", + "urn:oclc:ocm03168797", + "urn:undefined:(OCoLC)3168797", + "urn:undefined:(OCoLC)ocm03168797", + "urn:undefined:(CStRLIN)NYCG82-B13057", + "urn:undefined:(NNC)70235" ], - "numCheckinCardItems": [ - 0 + "idIsbn": [ + "(pbk.)" ], "materialType": [ { @@ -15090,30 +15074,29 @@ } ], "dateString": [ - "2017" + "1977" ], "mediaType": [ { - "id": "mediatypes:undefined", + "id": "mediatypes:n", "label": "unmediated" } ], - "subjectLiteral": [ - "Wåhlstrand, Gunnel, 1974-", - "Artists -- Sweden -- Exhibitions.", - "Artists -- Sweden -- Biography.", - "Ink painting -- Sweden -- Exhibitions.", - "Painting, Swedish -- 21st century -- Exhibitions." - ], "titleDisplay": [ - "Gunnel Wåhlstrand / editors: Ellen Klintenberg Gedda, Jennifer Lindblad ; texts: David Neuman [and 3 others] ; translation: Karin Altenberg, Robin Robertson, Suzanne Cheadle Martin." + "Rabbi : a tale of the waning year / Stanley Sultan." ], - "uri": "pb99102451453506421", + "uri": "cb70235", "lccClassification": [ - "N7088.6 .A45 2009" + "PZ4.S9532 Rab PS3569.U3597" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 ], "placeOfPublication": [ - "Stockholm" + "West Whately, Mass. :" ], "issuance": [ { @@ -15122,17 +15105,12 @@ } ], "dimensions": [ - "37 cm." - ], - "idIsbn_clean": [ - "", - "9789188031440", - "9188031446" + "23 cm." ] }, "sort": [ - 279.4066, - "pb99102451453506421" + 279.10864, + "cb70235" ], "inner_hits": { "items": { @@ -15145,86 +15123,76 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "pb99102451453506421", + "_id": "cb70235", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ + "owner": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "orgs:0002", + "label": "Columbia University Libraries" } ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:CU54669421" + ], + "physicalLocation": [ + "PS3569.U3597 R3" ], + "shelfMark_sort": "aPS3569.U3597 R000003", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } ], - "idBarcode": [ - "32101101205050" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:N7088.6 .A45 2009q Oversize", - "urn:barcode:32101101205050" + "uri": "ci106279", + "shelfMark": [ + "PS3569.U3597 R3" ], "identifierV2": [ { - "value": "N7088.6 .A45 2009q Oversize", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PS3569.U3597 R3" }, { - "value": "32101101205050", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "CU54669421" } ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } + "idBarcode": [ + "CU54669421" ], "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "physicalLocation": [ - "N7088.6 .A45 2009q Oversize" - ], - "recapCustomerCode": [ - "PJ" + "orgs:0002||Columbia University Libraries" ], "requestable": [ true ], - "shelfMark": [ - "N7088.6 .A45 2009q Oversize" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } ], - "shelfMark_sort": "aN7088.6 .A45 2009q Oversize", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23627289630006421" + ] }, "sort": [ null @@ -15237,21 +15205,26 @@ }, { "_index": "resources-2024-10-22", - "_id": "pb99117348353506421", - "_score": 279.4066, + "_id": "pb99102451453506421", + "_score": 279.10864, "_source": { "extent": [ - "589 pages ;" + "99 pages : many color illustrations ;" ], "note": [ + { + "noteType": "Note", + "label": "Includes biography and list of works (pages 95-97)", + "type": "bf:Note" + }, { "noteType": "Bibliography", - "label": "Includes bibliographical references and index.", + "label": "Includes biography and list of works (pages 95-97).", "type": "bf:Note" }, { "noteType": "Language", - "label": "Summary in English.", + "label": "Text in English and Swedish.", "type": "bf:Note" } ], @@ -15259,41 +15232,44 @@ "recap-pul" ], "subjectLiteral_exploded": [ - "1900-1999", - "Lithuanian literature", - "Lithuanian literature -- 20th century", - "Lithuanian literature -- 20th century -- History and criticism", - "Lithuanian literature -- 21st century", - "Lithuanian literature -- 21st century -- History and criticism", - "Lithuanian literature -- Themes, motives", - "Christianity and literature", - "Littérature lituanienne", - "Littérature lituanienne -- 21e siècle", - "Littérature lituanienne -- 21e siècle -- Histoire et critique", - "Christianisme et littérature", - "Christianity in literature", - "Religion in literature" + "Wåhlstrand, Gunnel, 1974-", + "Artists", + "Artists -- Sweden", + "Artists -- Sweden -- Exhibitions", + "Artists -- Sweden -- Biography", + "Ink painting", + "Ink painting -- Sweden", + "Ink painting -- Sweden -- Exhibitions", + "Painting, Swedish", + "Painting, Swedish -- 21st century", + "Painting, Swedish -- 21st century -- Exhibitions" ], "numItemDatesParsed": [ 0 ], "publisherLiteral": [ - "Vilniaus universiteto leidykla" + "Art and Theory" + ], + "description": [ + "Swedish artist Gunnel Wåhlstrand (b. 1974) creates extraordinary large-scale ink wash paintings featuring monumental landscapes, compelling portraits and serene interiors with intriguing compositions. The point of departure for Wåhlstrand's work was a box of family photographs, the only connection that she had to her father while growing up. To fill the silence surrounding his life and disappearance, she began to use these photographs: enlarging the image, delving into every detail and using her imagination to complete any information that is lacking or obscured. Each work takes months to complete, as the ink washes are applied in successive layers, gradually filling the white paper through a process that the artist likens to a slowly developing photograph. This book assembles all of the artist's works, including an interview with the artist and a text by Lars Norén." ], "language": [ { - "id": "lang:lit", - "label": "Lithuanian" + "id": "lang:mul", + "label": "Multiple languages" } ], "numItemsTotal": [ 1 ], "createdYear": [ - 2018 + 2017 + ], + "buildingLocationIds": [ + "rc" ], "title": [ - "Krikščionybė ir šiuolaikinė lietuvių literatūra : kolektyvinė monografija" + "Gunnel Wåhlstrand" ], "type": [ "nypl:Item" @@ -15302,89 +15278,101 @@ 0 ], "createdString": [ - "2018" - ], - "creatorLiteral": [ - "Čiočytė, Dalia" + "2017" ], "idLccn": [ - "2019374346" + "2017367481" ], "numElectronicResources": [ 0 ], + "seriesStatement": [ + "Magasin 3 Stockholm konsthalls utställningskatalog ; no. 45" + ], "contributorLiteral": [ - "Gustaitienė, Asta", - "Jakaitė, Dalia", - "Marijus Šidlauskas" + "Klintenberg Gedda, Ellen, 1989-", + "Lindblad, Jennifer", + "Neuman, David." ], "dateStartYear": [ - 2018 + 2017 ], "idOclc": [ - "on1104012151", - "SCSB-14423727" + "ocn988900729", + "SCSB-8795832" ], "identifierV2": [ { "type": "nypl:Bnumber", - "value": "99117348353506421" + "value": "99102451453506421" + }, + { + "type": "bf:Isbn", + "value": "C (book trade edition : cl.)" }, { "type": "bf:Isbn", - "value": "c" + "value": "9789188031440" }, { "type": "bf:Isbn", - "value": "6090700703" + "value": "9188031446" }, { "type": "nypl:Oclc", - "value": "on1104012151" + "value": "ocn988900729" }, { "type": "nypl:Oclc", - "value": "SCSB-14423727" + "value": "SCSB-8795832" }, { "type": "bf:Lccn", - "value": "2019374346" + "value": "2017367481" + }, + { + "type": "bf:Identifier", + "value": "(NL-AmEBA)NTS250337" + }, + { + "type": "bf:Identifier", + "value": "(NjP)10245145-princetondb" }, { "type": "bf:Identifier", - "value": "(NjP)11734835-princetondb" + "value": "(OCoLC)ocn988900729" }, { "type": "bf:Identifier", - "value": "(OCoLC)on1104012151" + "value": "(OCoLC)981545584 (OCoLC)981867608" }, { "type": "bf:Identifier", - "value": "(NjP)Voyager11734835" + "value": "(NjP)Voyager10245145" } ], - "popularity": 0, - "updatedAt": 1723256848705, + "updatedAt": 1715301569503, "publicationStatement": [ - "Vilnius : Vilniaus universiteto leidykla, 2018." - ], - "genreForm": [ - "Criticism, interpretation, etc." + "Stockholm : Art and Theory, [2017]" ], "idIsbn": [ - "c", - "6090700703" + "C (book trade edition : cl.)", + "9789188031440", + "9188031446" ], "identifier": [ - "urn:bnum:99117348353506421", - "urn:isbn:c", - "urn:isbn:6090700703", - "urn:oclc:on1104012151", - "urn:oclc:SCSB-14423727", - "urn:lccn:2019374346", - "urn:identifier:(NjP)11734835-princetondb", - "urn:identifier:(OCoLC)on1104012151", - "urn:identifier:(NjP)Voyager11734835" + "urn:bnum:99102451453506421", + "urn:isbn:C (book trade edition : cl.)", + "urn:isbn:9789188031440", + "urn:isbn:9188031446", + "urn:oclc:ocn988900729", + "urn:oclc:SCSB-8795832", + "urn:lccn:2017367481", + "urn:identifier:(NL-AmEBA)NTS250337", + "urn:identifier:(NjP)10245145-princetondb", + "urn:identifier:(OCoLC)ocn988900729", + "urn:identifier:(OCoLC)981545584 (OCoLC)981867608", + "urn:identifier:(NjP)Voyager10245145" ], "numCheckinCardItems": [ 0 @@ -15402,35 +15390,30 @@ } ], "dateString": [ - "2018" + "2017" ], "mediaType": [ { - "id": "mediatypes:n", + "id": "mediatypes:undefined", "label": "unmediated" } ], "subjectLiteral": [ - "1900-1999", - "Lithuanian literature -- 20th century -- History and criticism.", - "Lithuanian literature -- 21st century -- History and criticism.", - "Lithuanian literature -- Themes, motives.", - "Christianity and literature.", - "Littérature lituanienne -- 21e siècle -- Histoire et critique.", - "Christianisme et littérature.", - "Christianity in literature.", - "Lithuanian literature.", - "Religion in literature." + "Wåhlstrand, Gunnel, 1974-", + "Artists -- Sweden -- Exhibitions.", + "Artists -- Sweden -- Biography.", + "Ink painting -- Sweden -- Exhibitions.", + "Painting, Swedish -- 21st century -- Exhibitions." ], "titleDisplay": [ - "Krikščionybė ir šiuolaikinė lietuvių literatūra : kolektyvinė monografija / Dalia Čiočytė (sudarytoja), Asta Gustaitienė, Dalia Jakaitė, Marijus Šidlauskas." + "Gunnel Wåhlstrand / editors: Ellen Klintenberg Gedda, Jennifer Lindblad ; texts: David Neuman [and 3 others] ; translation: Karin Altenberg, Robin Robertson, Suzanne Cheadle Martin." ], - "uri": "pb99117348353506421", + "uri": "pb99102451453506421", "lccClassification": [ - "PG8711.5 .C56 2018" + "N7088.6 .A45 2009" ], "placeOfPublication": [ - "Vilnius" + "Stockholm" ], "issuance": [ { @@ -15439,16 +15422,17 @@ } ], "dimensions": [ - "24 cm" + "37 cm." ], "idIsbn_clean": [ "", - "6090700703" + "9789188031440", + "9188031446" ] }, "sort": [ - 279.4066, - "pb99117348353506421" + 279.10864, + "pb99102451453506421" ], "inner_hits": { "items": { @@ -15461,86 +15445,86 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "pb99117348353506421", + "_id": "pb99102451453506421", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0003", + "label": "Princeton University Library" } ], + "identifier": [ + "urn:shelfmark:N7088.6 .A45 2009q Oversize", + "urn:barcode:32101101205050" + ], + "physicalLocation": [ + "N7088.6 .A45 2009q Oversize" + ], + "shelfMark_sort": "aN7088.6 .A45 2009q Oversize", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } ], - "idBarcode": [ - "32101105449811" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:PG8711.5 .C56 2018", - "urn:barcode:32101105449811" + "type": [ + "bf:Item" ], + "shelfMark": [ + "N7088.6 .A45 2009q Oversize" + ], + "uri": "pi23627289630006421", "identifierV2": [ { - "value": "PG8711.5 .C56 2018", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "N7088.6 .A45 2009q Oversize" }, { - "value": "32101105449811", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "32101101205050" } ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } + "idBarcode": [ + "32101101205050" ], "owner_packed": [ "orgs:0003||Princeton University Library" ], - "physicalLocation": [ - "PG8711.5 .C56 2018" - ], - "recapCustomerCode": [ - "PA" - ], "requestable": [ true ], - "shelfMark": [ - "PG8711.5 .C56 2018" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "PJ" ], - "shelfMark_sort": "aPG8711.5 .C56 002018", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23672420920006421" + ] }, "sort": [ null diff --git a/test/fixtures/query-613faea3b2d4486d6900c2cc65743562.json b/test/fixtures/query-613faea3b2d4486d6900c2cc65743562.json index 6dc6f24f..8276188b 100644 --- a/test/fixtures/query-613faea3b2d4486d6900c2cc65743562.json +++ b/test/fixtures/query-613faea3b2d4486d6900c2cc65743562.json @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.631155, + "max_score": 15.73737, "hits": [ { "_index": "resources-2024-10-22", "_id": "b14937001", - "_score": 15.631155, + "_score": 15.73737, "_source": { "note": [ { @@ -60,6 +60,10 @@ "dateEndString": [ "1uuu" ], + "buildingLocationIds": [ + "rc", + "ma" + ], "title": [ "Morgenblatt für gebildete leser." ], @@ -538,21 +542,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", + "urn:barcode:33433088646033" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -562,76 +568,74 @@ "lte": "1933" } ], - "enumerationChronology": [ - "Jahrg. Mar.-May 1933" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1933" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + ], + "uri": "i28309666", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + }, + { + "type": "bf:Barcode", + "value": "33433088646033" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], "idBarcode": [ "33433088646033" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", - "urn:barcode:33433088646033" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", - "type": "bf:ShelfMark" - }, - { - "value": "33433088646033", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309666" + ] }, "sort": [ " -1933" @@ -646,21 +650,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "urn:barcode:33433088646041" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -670,76 +676,74 @@ "lte": "1861" } ], - "enumerationChronology": [ - "Jahrg. 1861" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1861" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "uri": "i28309668", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + }, + { + "type": "bf:Barcode", + "value": "33433088646041" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "Jahrg. 1861" + ], "idBarcode": [ "33433088646041" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", - "urn:barcode:33433088646041" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", - "type": "bf:ShelfMark" - }, - { - "value": "33433088646041", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309668" + ] }, "sort": [ " -1861" @@ -754,21 +758,20 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "urn:barcode:33433097964930" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -778,67 +781,68 @@ "lte": "1860" } ], - "enumerationChronology": [ - "Jahrg. 1860" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1860" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + ], + "uri": "i28543800", + "identifierV2": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + }, + { + "type": "bf:Barcode", + "value": "33433097964930" } ], "holdingLocation_packed": [ "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], + "enumerationChronology": [ + "Jahrg. 1860" + ], "idBarcode": [ "33433097964930" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", - "urn:barcode:33433097964930" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433097964930", - "type": "bf:Barcode" + "id": "catalogItemType:3", + "label": "serial" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28543800" + ] }, "sort": [ " -1860" @@ -853,21 +857,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "urn:barcode:33433096425198" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -877,76 +883,74 @@ "lte": "1855" } ], - "enumerationChronology": [ - "Jahrg. 49 (1855)" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1855" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "uri": "i28309648", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + }, + { + "type": "bf:Barcode", + "value": "33433096425198" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "Jahrg. 49 (1855)" + ], "idBarcode": [ "33433096425198" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", - "urn:barcode:33433096425198" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", - "type": "bf:ShelfMark" - }, - { - "value": "33433096425198", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309648" + ] }, "sort": [ " -1855" diff --git a/test/fixtures/query-650ef843e1c82cc8d5dc73e14f251cbf.json b/test/fixtures/query-650ef843e1c82cc8d5dc73e14f251cbf.json index 8db73331..c41dbc3b 100644 --- a/test/fixtures/query-650ef843e1c82cc8d5dc73e14f251cbf.json +++ b/test/fixtures/query-650ef843e1c82cc8d5dc73e14f251cbf.json @@ -1,5 +1,5 @@ { - "took": 684, + "took": 815, "timed_out": false, "_shards": { "total": 2, @@ -50,6 +50,9 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Dīwān Muḥammad al-ʻĪd Muḥammad ʻAlī Khalīfah." ], @@ -187,88 +190,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFA 82-5137", + "urn:barcode:33433002000671" + ], + "physicalLocation": [ + "*OFA 82-5137" + ], + "shelfMark_sort": "a*OFA 82-005137", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002000671" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFA 82-5137", - "urn:barcode:33433002000671" + "shelfMark": [ + "*OFA 82-5137" ], + "uri": "i10000042", "identifierV2": [ { - "value": "*OFA 82-5137", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFA 82-5137" }, { - "value": "33433002000671", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002000671" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002000671" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFA 82-5137" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFA 82-5137" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFA 82-005137", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000042" + ] }, "sort": [ null @@ -320,6 +323,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Caivacittāntac coṟpoḻivukaḷ." ], @@ -460,88 +466,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 82-5150", + "urn:barcode:33433001838949" + ], + "physicalLocation": [ + "*OLB 82-5150" + ], + "shelfMark_sort": "a*OLB 82-005150", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001838949" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 82-5150", - "urn:barcode:33433001838949" + "shelfMark": [ + "*OLB 82-5150" ], + "uri": "i10000043", "identifierV2": [ { - "value": "*OLB 82-5150", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 82-5150" }, { - "value": "33433001838949", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001838949" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001838949" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 82-5150" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 82-5150" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 82-005150", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000043" + ] }, "sort": [ null @@ -592,6 +598,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Nakkīrar aruḷiya Tirumurukāṟṟuppaṭai; teḷivurai, viḷakkavuraikaḷuṭaṉ." ], @@ -738,88 +747,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 82-5148", + "urn:barcode:33433001838964" + ], + "physicalLocation": [ + "*OLB 82-5148" + ], + "shelfMark_sort": "a*OLB 82-005148", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001838964" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 82-5148", - "urn:barcode:33433001838964" + "shelfMark": [ + "*OLB 82-5148" ], + "uri": "i10000044", "identifierV2": [ { - "value": "*OLB 82-5148", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 82-5148" }, { - "value": "33433001838964", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001838964" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001838964" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 82-5148" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 82-5148" - ], - "shelfMark_sort": "a*OLB 82-005148", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "uri": "i10000044" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -866,6 +875,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Nallakati : kuṟunāval" ], @@ -1003,88 +1015,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 82-5149", + "urn:barcode:33433001838956" + ], + "physicalLocation": [ + "*OLB 82-5149" + ], + "shelfMark_sort": "a*OLB 82-005149", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001838956" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 82-5149", - "urn:barcode:33433001838956" + "shelfMark": [ + "*OLB 82-5149" ], + "uri": "i10000045", "identifierV2": [ { - "value": "*OLB 82-5149", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 82-5149" }, { - "value": "33433001838956", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001838956" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001838956" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 82-5149" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 82-5149" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 82-005149", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000045" + ] }, "sort": [ null @@ -1144,6 +1156,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Paripāṭal tiṟaṉ." ], @@ -1281,88 +1296,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 82-5147", + "urn:barcode:33433001838972" + ], + "physicalLocation": [ + "*OLB 82-5147" + ], + "shelfMark_sort": "a*OLB 82-005147", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001838972" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 82-5147", - "urn:barcode:33433001838972" + "shelfMark": [ + "*OLB 82-5147" ], + "uri": "i10000046", "identifierV2": [ { - "value": "*OLB 82-5147", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 82-5147" }, { - "value": "33433001838972", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001838972" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001838972" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 82-5147" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 82-5147" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 82-005147", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000046" + ] }, "sort": [ null @@ -1409,6 +1424,9 @@ "createdYear": [ 1968 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Nīhārikā; Kalāpūrṇa sāmājika upanyāsa." ], @@ -1543,88 +1561,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTN 82-5146", + "urn:barcode:33433012457234" + ], + "physicalLocation": [ + "*OKTN 82-5146" + ], + "shelfMark_sort": "a*OKTN 82-005146", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433012457234" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTN 82-5146", - "urn:barcode:33433012457234" + "shelfMark": [ + "*OKTN 82-5146" ], + "uri": "i10942050", "identifierV2": [ { - "value": "*OKTN 82-5146", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTN 82-5146" }, { - "value": "33433012457234", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433012457234" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "*OKTN 82-5146" + "idBarcode": [ + "33433012457234" ], - "recapCustomerCode": [ - "NA" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "*OKTN 82-5146" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTN 82-005146", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942050" + ] }, "sort": [ null @@ -1701,12 +1719,16 @@ "createdYear": [ 2008 ], - "title": [ - "The romance of China : excursions to China in U.S. culture, 1776-1876" + "buildingLocationIds": [ + "ma", + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "The romance of China : excursions to China in U.S. culture, 1776-1876" + ], "shelfMark": [ "JFE 09-1362" ], @@ -1728,9 +1750,6 @@ "dateStartYear": [ 2008 ], - "idOclc": [ - "184821618" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -1761,15 +1780,14 @@ "value": "(OCoLC)184821618" } ], + "idOclc": [ + "184821618" + ], "popularity": 15, "updatedAt": 1722357197199, "publicationStatement": [ "New York : Columbia University Press, c2008." ], - "idIsbn": [ - "9780231130943 (cloth : alk. paper)", - "0231130945 (cloth : alk. paper)" - ], "identifier": [ "urn:shelfmark:JFE 09-1362", "urn:bnum:10000109", @@ -1779,6 +1797,10 @@ "urn:lccn:2008037637", "urn:identifier:(OCoLC)184821618" ], + "idIsbn": [ + "9780231130943 (cloth : alk. paper)", + "0231130945 (cloth : alk. paper)" + ], "numCheckinCardItems": [ 0 ], @@ -1864,85 +1886,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFE 09-1362", + "urn:barcode:33433084847221" + ], + "physicalLocation": [ + "JFE 09-1362" + ], + "shelfMark_sort": "aJFE 09-001362", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433084847221" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFE 09-1362", - "urn:barcode:33433084847221" + "shelfMark": [ + "JFE 09-1362" ], + "uri": "i23117386", "identifierV2": [ { - "value": "JFE 09-1362", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFE 09-1362" }, { - "value": "33433084847221", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433084847221" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084847221" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFE 09-1362" - ], "requestable": [ true ], - "shelfMark": [ - "JFE 09-1362" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFE 09-001362", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i23117386" + ] }, "sort": [ null @@ -1957,88 +1979,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLF 82-5145", + "urn:barcode:33433061318089" + ], + "physicalLocation": [ + "*OLF 82-5145" + ], + "shelfMark_sort": "a*OLF 82-005145", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061318089" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLF 82-5145", - "urn:barcode:33433061318089" + "shelfMark": [ + "*OLF 82-5145" ], + "uri": "i13783799", "identifierV2": [ { - "value": "*OLF 82-5145", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLF 82-5145" }, { - "value": "33433061318089", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061318089" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061318089" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLF 82-5145" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLF 82-5145" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLF 82-005145", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783799" + ] }, "sort": [ null @@ -2103,6 +2125,9 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Kuṟaḷ kaṇṭa poruḷvāḻvu" ], @@ -2243,88 +2268,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 82-5121", + "urn:barcode:33433001837818" + ], + "physicalLocation": [ + "*OLB 82-5121" + ], + "shelfMark_sort": "a*OLB 82-005121", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001837818" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 82-5121", - "urn:barcode:33433001837818" + "shelfMark": [ + "*OLB 82-5121" ], + "uri": "i10000047", "identifierV2": [ { - "value": "*OLB 82-5121", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 82-5121" }, { - "value": "33433001837818", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001837818" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001837818" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 82-5121" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 82-5121" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 82-005121", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000047" + ] }, "sort": [ null @@ -2374,6 +2399,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Taʻāmul fī al-Islām" ], @@ -2508,88 +2536,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OGM 82-5151", + "urn:barcode:33433001944218" + ], + "physicalLocation": [ + "*OGM 82-5151" + ], + "shelfMark_sort": "a*OGM 82-005151", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001944218" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGM 82-5151", - "urn:barcode:33433001944218" + "shelfMark": [ + "*OGM 82-5151" ], + "uri": "i10000048", "identifierV2": [ { - "value": "*OGM 82-5151", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGM 82-5151" }, { - "value": "33433001944218", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001944218" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001944218" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGM 82-5151" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGM 82-5151" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGM 82-005151", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000048" + ] }, "sort": [ null @@ -2645,6 +2673,9 @@ "createdYear": [ 1971 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Muḥāsib al-ḍarībī; dirāsah naẓarīyah taṭbīqīyah muqāranah maʻa al-tashrīʻ al-ḍarībī al-Lībī" ], @@ -2779,88 +2810,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFO 82-5122", + "urn:barcode:33433005586205" + ], + "physicalLocation": [ + "*OFO 82-5122" + ], + "shelfMark_sort": "a*OFO 82-005122", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433005586205" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFO 82-5122", - "urn:barcode:33433005586205" + "shelfMark": [ + "*OFO 82-5122" ], + "uri": "i10000049", "identifierV2": [ { - "value": "*OFO 82-5122", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFO 82-5122" }, { - "value": "33433005586205", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433005586205" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005586205" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFO 82-5122" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFO 82-5122" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFO 82-005122", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000049" + ] }, "sort": [ null @@ -3186,6 +3217,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Jang-i Īran va ʻIrāq" ], @@ -3312,88 +3346,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OMZ 82-5156", + "urn:barcode:33433014543452" + ], + "physicalLocation": [ + "*OMZ 82-5156" + ], + "shelfMark_sort": "a*OMZ 82-005156", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433014543452" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OMZ 82-5156", - "urn:barcode:33433014543452" + "shelfMark": [ + "*OMZ 82-5156" ], + "uri": "i10942051", "identifierV2": [ { - "value": "*OMZ 82-5156", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OMZ 82-5156" }, { - "value": "33433014543452", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433014543452" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014543452" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OMZ 82-5156" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OMZ 82-5156" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OMZ 82-005156", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942051" + ] }, "sort": [ null @@ -3453,6 +3487,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Ikhtilāfāt-i Īrān va ʻIrāq : dar khuṣūṣ-i haqq-i ḥākimīyat va ḥuqūq-i kishtīrānī-i du kishvar dar Arvand Rūd (Shaṭṭ al-ʻArab)" ], @@ -3579,88 +3616,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OMZ 82-5155", + "urn:barcode:33433014543445" + ], + "physicalLocation": [ + "*OMZ 82-5155" + ], + "shelfMark_sort": "a*OMZ 82-005155", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433014543445" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OMZ 82-5155", - "urn:barcode:33433014543445" + "shelfMark": [ + "*OMZ 82-5155" ], + "uri": "i10942052", "identifierV2": [ { - "value": "*OMZ 82-5155", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OMZ 82-5155" }, { - "value": "33433014543445", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433014543445" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014543445" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OMZ 82-5155" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OMZ 82-5155" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OMZ 82-005155", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942052" + ] }, "sort": [ null @@ -3713,12 +3750,15 @@ "createdYear": [ 1963 ], - "title": [ - "Tēvāra oḷineṟi, Cuntarar" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Tēvāra oḷineṟi, Cuntarar" + ], "shelfMark": [ "*OLB 82-5123" ], @@ -3734,12 +3774,12 @@ "idLccn": [ "75901411" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Kaḻaka veḷiyīṭu; 1139" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Cuntarar" ], @@ -3749,9 +3789,6 @@ "dateStartYear": [ 1963 ], - "idOclc": [ - "NYPG001000064-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -3778,6 +3815,9 @@ "value": "(WaOLN)nyp0200115" } ], + "idOclc": [ + "NYPG001000064-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -3861,88 +3901,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 82-5123", + "urn:barcode:33433001839004" + ], + "physicalLocation": [ + "*OLB 82-5123" + ], + "shelfMark_sort": "a*OLB 82-005123", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001839004" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 82-5123", - "urn:barcode:33433001839004" + "shelfMark": [ + "*OLB 82-5123" ], + "uri": "i10000051", "identifierV2": [ { - "value": "*OLB 82-5123", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 82-5123" }, { - "value": "33433001839004", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001839004" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001839004" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 82-5123" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 82-5123" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 82-005123", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000051" + ] }, "sort": [ null @@ -3997,6 +4037,9 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Difāʻ ʻan Abī Hurayrah" ], @@ -4134,88 +4177,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFS 82-5125", + "urn:barcode:33433014514537" + ], + "physicalLocation": [ + "*OFS 82-5125" + ], + "shelfMark_sort": "a*OFS 82-005125", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433014514537" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFS 82-5125", - "urn:barcode:33433014514537" + "shelfMark": [ + "*OFS 82-5125" ], + "uri": "i10000052", "identifierV2": [ { - "value": "*OFS 82-5125", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFS 82-5125" }, { - "value": "33433014514537", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433014514537" } ], - "owner": [ + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014514537" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OFS 82-5125" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OFS 82-5125" - ], - "shelfMark_sort": "a*OFS 82-005125", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000052" + ] }, "sort": [ null @@ -4274,6 +4317,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tārīkh al-ḥarakah al-ishtirākīyah fī Miṣr 1900-1925" ], @@ -4412,88 +4458,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFP 82-5152", + "urn:barcode:33433001937576" + ], + "physicalLocation": [ + "*OFP 82-5152" + ], + "shelfMark_sort": "a*OFP 82-005152", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001937576" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFP 82-5152", - "urn:barcode:33433001937576" + "shelfMark": [ + "*OFP 82-5152" ], + "uri": "i10000053", "identifierV2": [ { - "value": "*OFP 82-5152", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFP 82-5152" }, { - "value": "33433001937576", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001937576" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001937576" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFP 82-5152" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFP 82-5152" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFP 82-005152", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000053" + ] }, "sort": [ null @@ -4548,6 +4594,9 @@ "createdYear": [ 1971 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Aʻlāḥazrat kā fiqhī maqām" ], @@ -4682,88 +4731,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTY 82-5154", + "urn:barcode:33433011242736" + ], + "physicalLocation": [ + "*OKTY 82-5154" + ], + "shelfMark_sort": "a*OKTY 82-005154", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011242736" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTY 82-5154", - "urn:barcode:33433011242736" + "shelfMark": [ + "*OKTY 82-5154" ], + "uri": "i10000054", "identifierV2": [ { - "value": "*OKTY 82-5154", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTY 82-5154" }, { - "value": "33433011242736", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011242736" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011242736" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTY 82-5154" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKTY 82-5154" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTY 82-005154", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000054" + ] }, "sort": [ null @@ -4810,6 +4859,9 @@ "createdYear": [ 1968 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Aṇṇāviṉ navamaṇikaḷ." ], @@ -4947,31 +4999,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 82-5139", + "urn:barcode:33433001838998" + ], + "physicalLocation": [ + "*OLB 82-5139" + ], + "shelfMark_sort": "a*OLB 82-005139", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OLB 82-5139" + ], + "uri": "i10000055", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLB 82-5139" + }, + { + "type": "bf:Barcode", + "value": "33433001838998" } ], "holdingLocation_packed": [ @@ -4980,55 +5051,36 @@ "idBarcode": [ "33433001838998" ], - "identifier": [ - "urn:shelfmark:*OLB 82-5139", - "urn:barcode:33433001838998" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLB 82-5139", - "type": "bf:ShelfMark" - }, - { - "value": "33433001838998", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLB 82-5139" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLB 82-5139" - ], - "shelfMark_sort": "a*OLB 82-005139", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000055" + ] }, "sort": [ null @@ -5080,6 +5132,9 @@ "createdYear": [ 1963 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Natuna hāoẏā." ], @@ -5214,88 +5269,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKV 82-5138", + "urn:barcode:33433011167834" + ], + "physicalLocation": [ + "*OKV 82-5138" + ], + "shelfMark_sort": "a*OKV 82-005138", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011167834" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKV 82-5138", - "urn:barcode:33433011167834" + "shelfMark": [ + "*OKV 82-5138" ], + "uri": "i10000056", "identifierV2": [ { - "value": "*OKV 82-5138", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKV 82-5138" }, { - "value": "33433011167834", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011167834" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011167834" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKV 82-5138" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKV 82-5138" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKV 82-005138", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000056" + ] }, "sort": [ null @@ -5347,6 +5402,9 @@ "createdYear": [ 1966 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Sāhira Ludhyānavī aura unakī śāyarī." ], @@ -5487,88 +5545,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTX 82-5136", + "urn:barcode:33433004673145" + ], + "physicalLocation": [ + "*OKTX 82-5136" + ], + "shelfMark_sort": "a*OKTX 82-005136", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433004673145" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTX 82-5136", - "urn:barcode:33433004673145" + "shelfMark": [ + "*OKTX 82-5136" ], + "uri": "i10000057", "identifierV2": [ { - "value": "*OKTX 82-5136", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTX 82-5136" }, { - "value": "33433004673145", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433004673145" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433004673145" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTX 82-5136" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKTX 82-5136" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTX 82-005136", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000057" + ] }, "sort": [ null @@ -5615,6 +5673,9 @@ "createdYear": [ 1962 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Elomelo." ], @@ -5749,31 +5810,50 @@ }, "_score": null, "_source": { - "accessMessage": [ + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "identifier": [ + "urn:shelfmark:*OKV 82-5135", + "urn:barcode:33433011167826" ], - "catalogItemType": [ + "physicalLocation": [ + "*OKV 82-5135" + ], + "shelfMark_sort": "a*OKV 82-005135", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "status_packed": [ + "status:a||Available" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OKV 82-5135" + ], + "uri": "i10000058", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OKV 82-5135" + }, + { + "type": "bf:Barcode", + "value": "33433011167826" } ], "holdingLocation_packed": [ @@ -5782,55 +5862,36 @@ "idBarcode": [ "33433011167826" ], - "identifier": [ - "urn:shelfmark:*OKV 82-5135", - "urn:barcode:33433011167826" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OKV 82-5135", - "type": "bf:ShelfMark" - }, - { - "value": "33433011167826", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OKV 82-5135" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKV 82-5135" - ], - "shelfMark_sort": "a*OKV 82-005135", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000058" + ] }, "sort": [ null @@ -5882,6 +5943,9 @@ "createdYear": [ 1963 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Samudra śaṅkha." ], @@ -6016,88 +6080,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKV 82-5134", + "urn:barcode:33433011167818" + ], + "physicalLocation": [ + "*OKV 82-5134" + ], + "shelfMark_sort": "a*OKV 82-005134", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011167818" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKV 82-5134", - "urn:barcode:33433011167818" + "shelfMark": [ + "*OKV 82-5134" ], + "uri": "i10000059", "identifierV2": [ { - "value": "*OKV 82-5134", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKV 82-5134" }, { - "value": "33433011167818", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011167818" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011167818" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKV 82-5134" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKV 82-5134" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKV 82-005134", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000059" + ] }, "sort": [ null @@ -6156,6 +6220,9 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Shiʻr al-Yazīdīyīn" ], @@ -6294,88 +6361,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFS 82-3836", + "urn:barcode:33433014514172" + ], + "physicalLocation": [ + "*OFS 82-3836" + ], + "shelfMark_sort": "a*OFS 82-003836", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433014514172" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFS 82-3836", - "urn:barcode:33433014514172" + "shelfMark": [ + "*OFS 82-3836" ], + "uri": "i10000060", "identifierV2": [ { - "value": "*OFS 82-3836", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFS 82-3836" }, { - "value": "33433014514172", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433014514172" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014514172" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFS 82-3836" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFS 82-3836" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFS 82-003836", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000060" + ] }, "sort": [ null @@ -6425,6 +6492,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Śrī Ramaṇa Maharshi : eka saṃkshipta jīvanī : sacitra." ], @@ -6681,6 +6751,9 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tārīkh Lubnān al-ḥadīth" ], @@ -6818,88 +6891,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFP 82-3837", + "urn:barcode:33433001542319" + ], + "physicalLocation": [ + "*OFP 82-3837" + ], + "shelfMark_sort": "a*OFP 82-003837", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001542319" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFP 82-3837", - "urn:barcode:33433001542319" + "shelfMark": [ + "*OFP 82-3837" ], + "uri": "i10000061", "identifierV2": [ { - "value": "*OFP 82-3837", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFP 82-3837" }, { - "value": "33433001542319", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001542319" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001542319" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFP 82-3837" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFP 82-3837" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFP 82-003837", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000061" + ] }, "sort": [ null @@ -6949,6 +7022,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Lūrins kamā ʻaraftuh" ], @@ -7086,88 +7162,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFS 82-3903", + "urn:barcode:33433014514271" + ], + "physicalLocation": [ + "*OFS 82-3903" + ], + "shelfMark_sort": "a*OFS 82-003903", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433014514271" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFS 82-3903", - "urn:barcode:33433014514271" + "shelfMark": [ + "*OFS 82-3903" ], + "uri": "i10000062", "identifierV2": [ { - "value": "*OFS 82-3903", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFS 82-3903" }, { - "value": "33433014514271", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433014514271" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014514271" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFS 82-3903" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFS 82-3903" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFS 82-003903", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000062" + ] }, "sort": [ null @@ -7224,6 +7300,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Dīwān ʻAmr ibn Qamīʼah" ], @@ -7364,88 +7443,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OEM 82-3896", + "urn:barcode:33433002038218" + ], + "physicalLocation": [ + "*OEM 82-3896" + ], + "shelfMark_sort": "a*OEM 82-003896", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002038218" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OEM 82-3896", - "urn:barcode:33433002038218" + "shelfMark": [ + "*OEM 82-3896" ], + "uri": "i10000063", "identifierV2": [ { - "value": "*OEM 82-3896", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OEM 82-3896" }, { - "value": "33433002038218", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002038218" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002038218" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OEM 82-3896" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OEM 82-3896" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OEM 82-003896", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000063" + ] }, "sort": [ null @@ -7516,6 +7595,9 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Burhān fī wujūh al-bayān" ], @@ -7659,88 +7741,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OEQ 82-4707", + "urn:barcode:33433014519783" + ], + "physicalLocation": [ + "*OEQ 82-4707" + ], + "shelfMark_sort": "a*OEQ 82-004707", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433014519783" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OEQ 82-4707", - "urn:barcode:33433014519783" + "shelfMark": [ + "*OEQ 82-4707" ], + "uri": "i10000064", "identifierV2": [ { - "value": "*OEQ 82-4707", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OEQ 82-4707" }, { - "value": "33433014519783", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433014519783" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014519783" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OEQ 82-4707" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OEQ 82-4707" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OEQ 82-004707", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000064" + ] }, "sort": [ null @@ -7804,6 +7886,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "ʻAṣr al-Khalīfah al-Muqtadir billāh, 295-320 H / (907-932 M) : dirāsah fī aḥwāl al-ʻIrāq al-dākhilīyah" ], @@ -7940,88 +8025,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFM 82-4705", + "urn:barcode:33433014463446" + ], + "physicalLocation": [ + "*OFM 82-4705" + ], + "shelfMark_sort": "a*OFM 82-004705", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433014463446" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFM 82-4705", - "urn:barcode:33433014463446" + "shelfMark": [ + "*OFM 82-4705" ], + "uri": "i10000065", "identifierV2": [ { - "value": "*OFM 82-4705", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFM 82-4705" }, { - "value": "33433014463446", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433014463446" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014463446" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFM 82-4705" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFM 82-4705" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFM 82-004705", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000065" + ] }, "sort": [ null @@ -8076,6 +8161,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Suqūṭ Dawlat al-Muwaḥḥidīn" ], @@ -8205,31 +8293,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFO 82-4577", + "urn:barcode:33433005586346" + ], + "physicalLocation": [ + "*OFO 82-4577" + ], + "shelfMark_sort": "a*OFO 82-004577", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OFO 82-4577" + ], + "uri": "i10000066", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OFO 82-4577" + }, + { + "type": "bf:Barcode", + "value": "33433005586346" } ], "holdingLocation_packed": [ @@ -8238,55 +8345,36 @@ "idBarcode": [ "33433005586346" ], - "identifier": [ - "urn:shelfmark:*OFO 82-4577", - "urn:barcode:33433005586346" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OFO 82-4577", - "type": "bf:ShelfMark" - }, + "requestable": [ + true + ], + "catalogItemType": [ { - "value": "33433005586346", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner": [ + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "loc:rc2ma", + "label": "Offsite" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "*OFO 82-4577" - ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OFO 82-4577" - ], - "shelfMark_sort": "a*OFO 82-004577", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000066" + ] }, "sort": [ null @@ -8339,6 +8427,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Dīmūqrāṭīyah wa-al-ishtirākīyah fī al-Sūdān" ], @@ -8466,88 +8557,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFP 82-4578", + "urn:barcode:33433001937469" + ], + "physicalLocation": [ + "*OFP 82-4578" + ], + "shelfMark_sort": "a*OFP 82-004578", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001937469" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFP 82-4578", - "urn:barcode:33433001937469" + "shelfMark": [ + "*OFP 82-4578" ], + "uri": "i10000067", "identifierV2": [ { - "value": "*OFP 82-4578", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFP 82-4578" }, { - "value": "33433001937469", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001937469" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001937469" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFP 82-4578" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFP 82-4578" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFP 82-004578", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000067" + ] }, "sort": [ null @@ -8618,6 +8709,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Ḥayāh al-siyāsīyah wa-maẓāhir al-ḥādārah fī Sāmarrāʼ khilāl al-qarn al-thālith al-Hijrī" ], @@ -8755,88 +8849,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFQ 81-2737", + "urn:barcode:33433014504074" + ], + "physicalLocation": [ + "*OFQ 81-2737" + ], + "shelfMark_sort": "a*OFQ 81-002737", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433014504074" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFQ 81-2737", - "urn:barcode:33433014504074" + "shelfMark": [ + "*OFQ 81-2737" ], + "uri": "i10000068", "identifierV2": [ { - "value": "*OFQ 81-2737", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFQ 81-2737" }, { - "value": "33433014504074", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433014504074" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014504074" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFQ 81-2737" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFQ 81-2737" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFQ 81-002737", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000068" + ] }, "sort": [ null @@ -8892,6 +8986,9 @@ "createdYear": [ 1971 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Qiṣaṣ ʻIrāqīyah muʻāṣirah" ], @@ -9030,31 +9127,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFC 81-3162", + "urn:barcode:33433001965965" + ], + "physicalLocation": [ + "*OFC 81-3162" + ], + "shelfMark_sort": "a*OFC 81-003162", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OFC 81-3162" + ], + "uri": "i10000069", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OFC 81-3162" + }, + { + "type": "bf:Barcode", + "value": "33433001965965" } ], "holdingLocation_packed": [ @@ -9063,55 +9179,36 @@ "idBarcode": [ "33433001965965" ], - "identifier": [ - "urn:shelfmark:*OFC 81-3162", - "urn:barcode:33433001965965" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true ], - "identifierV2": [ - { - "value": "*OFC 81-3162", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433001965965", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner": [ + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "loc:rc2ma", + "label": "Offsite" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "*OFC 81-3162" - ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OFC 81-3162" - ], - "shelfMark_sort": "a*OFC 81-003162", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000069" + ] }, "sort": [ null @@ -9166,6 +9263,9 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Rawḍat al-muḥibbīn wa-nuzhat al-mushtāqīn" ], @@ -9306,88 +9406,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFC 81-3166", + "urn:barcode:33433001965734" + ], + "physicalLocation": [ + "*OFC 81-3166" + ], + "shelfMark_sort": "a*OFC 81-003166", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001965734" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFC 81-3166", - "urn:barcode:33433001965734" + "shelfMark": [ + "*OFC 81-3166" ], + "uri": "i10000070", "identifierV2": [ { - "value": "*OFC 81-3166", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFC 81-3166" }, { - "value": "33433001965734", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001965734" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001965734" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFC 81-3166" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFC 81-3166" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFC 81-003166", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000070" + ] }, "sort": [ null @@ -9434,6 +9534,9 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Dīwān al-Qarawī" ], @@ -9571,88 +9674,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFA 81-3160", + "urn:barcode:33433001999683" + ], + "physicalLocation": [ + "*OFA 81-3160" + ], + "shelfMark_sort": "a*OFA 81-003160", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001999683" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFA 81-3160", - "urn:barcode:33433001999683" + "shelfMark": [ + "*OFA 81-3160" ], + "uri": "i10000071", "identifierV2": [ { - "value": "*OFA 81-3160", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFA 81-3160" }, { - "value": "33433001999683", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001999683" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001999683" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFA 81-3160" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFA 81-3160" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFA 81-003160", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000071" + ] }, "sort": [ null @@ -9699,6 +9802,9 @@ "createdYear": [ 1968 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Aḥibb baladī" ], @@ -9833,31 +9939,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFA 81-3163", + "urn:barcode:33433001999675" + ], + "physicalLocation": [ + "*OFA 81-3163" + ], + "shelfMark_sort": "a*OFA 81-003163", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OFA 81-3163" + ], + "uri": "i10000072", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OFA 81-3163" + }, + { + "type": "bf:Barcode", + "value": "33433001999675" } ], "holdingLocation_packed": [ @@ -9866,55 +9991,36 @@ "idBarcode": [ "33433001999675" ], - "identifier": [ - "urn:shelfmark:*OFA 81-3163", - "urn:barcode:33433001999675" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OFA 81-3163", - "type": "bf:ShelfMark" - }, - { - "value": "33433001999675", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OFA 81-3163" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OFA 81-3163" - ], - "shelfMark_sort": "a*OFA 81-003163", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000072" + ] }, "sort": [ null @@ -9969,6 +10075,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "ʻAbd Allāh al-Nadīm Khaṭīb al-Thawrah al-ʻUrābīyah" ], @@ -10106,88 +10215,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFS 81-3165", + "urn:barcode:33433005562628" + ], + "physicalLocation": [ + "*OFS 81-3165" + ], + "shelfMark_sort": "a*OFS 81-003165", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433005562628" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFS 81-3165", - "urn:barcode:33433005562628" + "shelfMark": [ + "*OFS 81-3165" ], + "uri": "i10000073", "identifierV2": [ { - "value": "*OFS 81-3165", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFS 81-3165" }, { - "value": "33433005562628", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433005562628" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005562628" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFS 81-3165" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFS 81-3165" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFS 81-003165", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000073" + ] }, "sort": [ null @@ -10242,6 +10351,9 @@ "dateEndString": [ "1979" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Ḥajj" ], @@ -10371,88 +10483,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OGH 82-280", + "urn:barcode:33433058007638" + ], + "physicalLocation": [ + "*OGH 82-280" + ], + "shelfMark_sort": "a*OGH 82-000280", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058007638" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGH 82-280", - "urn:barcode:33433058007638" + "shelfMark": [ + "*OGH 82-280" ], + "uri": "i12858033", "identifierV2": [ { - "value": "*OGH 82-280", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGH 82-280" }, { - "value": "33433058007638", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058007638" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058007638" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGH 82-280" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGH 82-280" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGH 82-000280", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12858033" + ] }, "sort": [ null @@ -10515,6 +10627,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Rekḥtī kā tanqīdī mṳtālaʻah" ], @@ -10653,91 +10768,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTW 82-277 ", + "urn:barcode:33433004668285" + ], + "physicalLocation": [ + "*OKTW 82-277 " + ], + "shelfMark_sort": "a*OKTW 82-277 ", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], "dueDate": [ "2024-01-26" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:co||Loaned" ], - "idBarcode": [ - "33433004668285" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTW 82-277 ", - "urn:barcode:33433004668285" + "shelfMark": [ + "*OKTW 82-277 " ], + "uri": "i10000074", "identifierV2": [ { - "value": "*OKTW 82-277 ", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTW 82-277 " }, { - "value": "33433004668285", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433004668285" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433004668285" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTW 82-277 " - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ false ], - "shelfMark": [ - "*OKTW 82-277 " + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTW 82-277 ", "status": [ { "id": "status:co", "label": "Loaned" } - ], - "status_packed": [ - "status:co||Loaned" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000074" + ] }, "sort": [ null @@ -10795,6 +10910,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Ḥukūmat-i Islāmī va taḥlīlī az nihẓat-i ḥāẓir" ], @@ -10925,88 +11043,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OGC 82-274", + "urn:barcode:33433022688901" + ], + "physicalLocation": [ + "*OGC 82-274" + ], + "shelfMark_sort": "a*OGC 82-000274", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433022688901" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGC 82-274", - "urn:barcode:33433022688901" + "shelfMark": [ + "*OGC 82-274" ], + "uri": "i12540041", "identifierV2": [ { - "value": "*OGC 82-274", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGC 82-274" }, { - "value": "33433022688901", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433022688901" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433022688901" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGC 82-274" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGC 82-274" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGC 82-000274", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540041" + ] }, "sort": [ null @@ -11062,6 +11180,9 @@ "createdYear": [ 1978 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tārīkh-i Avadh kā mukhtaṣar jāʼizah" ], @@ -11199,88 +11320,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLL 82-275", + "urn:barcode:33433061320515" + ], + "physicalLocation": [ + "*OLL 82-275" + ], + "shelfMark_sort": "a*OLL 82-000275", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061320515" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLL 82-275", - "urn:barcode:33433061320515" + "shelfMark": [ + "*OLL 82-275" ], + "uri": "i13783801", "identifierV2": [ { - "value": "*OLL 82-275", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLL 82-275" }, { - "value": "33433061320515", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061320515" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061320515" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLL 82-275" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLL 82-275" - ], - "shelfMark_sort": "a*OLL 82-000275", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "uri": "i13783801" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -11335,6 +11456,9 @@ "dateEndString": [ "1979" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Īshīq" ], @@ -11461,88 +11585,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OOX 82-272", + "urn:barcode:33433001718117" + ], + "physicalLocation": [ + "*OOX 82-272" + ], + "shelfMark_sort": "a*OOX 82-000272", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001718117" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OOX 82-272", - "urn:barcode:33433001718117" + "shelfMark": [ + "*OOX 82-272" ], + "uri": "i10000075", "identifierV2": [ { - "value": "*OOX 82-272", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OOX 82-272" }, { - "value": "33433001718117", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001718117" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001718117" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OOX 82-272" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OOX 82-272" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OOX 82-000272", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000075" + ] }, "sort": [ null @@ -11589,6 +11713,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Khān al-Khalīlī" ], @@ -11726,88 +11853,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFC 82-271", + "urn:barcode:33433001965767" + ], + "physicalLocation": [ + "*OFC 82-271" + ], + "shelfMark_sort": "a*OFC 82-000271", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001965767" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFC 82-271", - "urn:barcode:33433001965767" + "shelfMark": [ + "*OFC 82-271" ], + "uri": "i10000076", "identifierV2": [ { - "value": "*OFC 82-271", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFC 82-271" }, { - "value": "33433001965767", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001965767" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001965767" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFC 82-271" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFC 82-271" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFC 82-000271", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000076" + ] }, "sort": [ null @@ -11862,6 +11989,9 @@ "createdYear": [ 1971 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Ṣaḥīfah-yi Ṭīpū Sul̤tān" ], @@ -12132,12 +12262,15 @@ "createdYear": [ 1968 ], - "title": [ - "Māḷavikāgnimitraṃ." + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Māḷavikāgnimitraṃ." + ], "shelfMark": [ "*OLC 82-270" ], @@ -12153,12 +12286,12 @@ "idLccn": [ "77901180" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Vacana prabandha sāhityaṃ." ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Kālidāsa" ], @@ -12168,9 +12301,6 @@ "dateStartYear": [ 1968 ], - "idOclc": [ - "NYPG001000095-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -12197,6 +12327,9 @@ "value": "(WaOLN)nyp0200146" } ], + "idOclc": [ + "NYPG001000095-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -12276,31 +12409,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLC 82-270", + "urn:barcode:33433004552323" + ], + "physicalLocation": [ + "*OLC 82-270" + ], + "shelfMark_sort": "a*OLC 82-000270", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OLC 82-270" + ], + "uri": "i10000077", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLC 82-270" + }, + { + "type": "bf:Barcode", + "value": "33433004552323" } ], "holdingLocation_packed": [ @@ -12309,55 +12461,36 @@ "idBarcode": [ "33433004552323" ], - "identifier": [ - "urn:shelfmark:*OLC 82-270", - "urn:barcode:33433004552323" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLC 82-270", - "type": "bf:ShelfMark" - }, - { - "value": "33433004552323", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLC 82-270" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLC 82-270" - ], - "shelfMark_sort": "a*OLC 82-000270", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000077" + ] }, "sort": [ null @@ -12407,6 +12540,9 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Kannaḍa ogaṭugaḷu." ], @@ -12544,88 +12680,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLA 82-269", + "urn:barcode:33433013118892" + ], + "physicalLocation": [ + "*OLA 82-269" + ], + "shelfMark_sort": "a*OLA 82-000269", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433013118892" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLA 82-269", - "urn:barcode:33433013118892" + "shelfMark": [ + "*OLA 82-269" ], + "uri": "i10000078", "identifierV2": [ { - "value": "*OLA 82-269", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLA 82-269" }, { - "value": "33433013118892", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433013118892" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013118892" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLA 82-269" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLA 82-269" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLA 82-000269", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000078" + ] }, "sort": [ null @@ -12679,12 +12815,15 @@ "numItemsTotal": [ 2 ], - "dateEndString": [ - "1976" - ], "createdYear": [ 1973 ], + "buildingLocationIds": [ + "rc" + ], + "dateEndString": [ + "1976" + ], "type": [ "nypl:Item" ], @@ -12823,82 +12962,89 @@ }, "_score": null, "_source": { - "uri": "i10000080", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:1000", "label": "Stephen A. Schwarzman Building" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:barcode:33433004673160" + ], + "physicalLocation": [ + "*OKTX 82-5167" ], + "shelfMark_sort": "a*OKTX 82-5167 v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 2-" + ], + "type": [ + "bf:Item" ], + "uri": "i10000080", "shelfMark": [ "*OKTX 82-5167 v. 2" ], "identifierV2": [ { - "value": "*OKTX 82-5167 v. 2", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTX 82-5167 v. 2" }, { "type": "bf:Barcode", "value": "33433004673160" } ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], "enumerationChronology": [ "v. 2" ], - "physicalLocation": [ - "*OKTX 82-5167" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433004673160" - ], "idBarcode": [ "33433004673160" ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], "volumeRange": [ { @@ -12906,16 +13052,9 @@ "lte": 2 } ], - "enumerationChronology_sort": [ - " 2-" - ], - "type": [ - "bf:Item" - ], "formatLiteral": [ "Text" - ], - "shelfMark_sort": "a*OKTX 82-5167 v. 000002" + ] }, "sort": [ " 2-" @@ -12930,82 +13069,89 @@ }, "_score": null, "_source": { - "uri": "i10000079", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:1000", "label": "Stephen A. Schwarzman Building" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "identifier": [ + "urn:barcode:33433004673152" + ], + "physicalLocation": [ + "*OKTX 82-5167" + ], + "shelfMark_sort": "a*OKTX 82-5167 v. 000001", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "status_packed": [ + "status:a||Available" ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } + "enumerationChronology_sort": [ + " 1-" ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "type": [ + "bf:Item" ], + "uri": "i10000079", "shelfMark": [ "*OKTX 82-5167 v. 1" ], "identifierV2": [ { - "value": "*OKTX 82-5167 v. 1", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTX 82-5167 v. 1" }, { "type": "bf:Barcode", "value": "33433004673152" } ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], "enumerationChronology": [ "v. 1" ], - "physicalLocation": [ - "*OKTX 82-5167" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433004673152" - ], "idBarcode": [ "33433004673152" ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], "volumeRange": [ { @@ -13013,16 +13159,9 @@ "lte": 1 } ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], "formatLiteral": [ "Text" - ], - "shelfMark_sort": "a*OKTX 82-5167 v. 000001" + ] }, "sort": [ " 1-" @@ -13072,6 +13211,9 @@ "dateEndString": [ "1969" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Min al-Yaman" ], @@ -13206,88 +13348,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFA 82-4408", + "urn:barcode:33433002000598" + ], + "physicalLocation": [ + "*OFA 82-4408" + ], + "shelfMark_sort": "a*OFA 82-004408", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002000598" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFA 82-4408", - "urn:barcode:33433002000598" + "shelfMark": [ + "*OFA 82-4408" ], + "uri": "i10000081", "identifierV2": [ { - "value": "*OFA 82-4408", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFA 82-4408" }, { - "value": "33433002000598", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002000598" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002000598" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFA 82-4408" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFA 82-4408" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFA 82-004408", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000081" + ] }, "sort": [ null @@ -13337,6 +13479,9 @@ "createdYear": [ 1971 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Furqān bayna awliyāʼ al-Raḥmān wa-awliyāʼ al-Shayṭān" ], @@ -13463,88 +13608,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OGL 82-4418", + "urn:barcode:33433058069497" + ], + "physicalLocation": [ + "*OGL 82-4418" + ], + "shelfMark_sort": "a*OGL 82-004418", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058069497" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGL 82-4418", - "urn:barcode:33433058069497" + "shelfMark": [ + "*OGL 82-4418" ], + "uri": "i12858034", "identifierV2": [ { - "value": "*OGL 82-4418", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGL 82-4418" }, { - "value": "33433058069497", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058069497" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058069497" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGL 82-4418" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGL 82-4418" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGL 82-004418", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12858034" + ] }, "sort": [ null @@ -13596,6 +13741,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Ēkalavya." ], @@ -13736,91 +13884,91 @@ "_nested": { "field": "items", "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], + }, + "_score": null, + "_source": { "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLA 83-693", + "urn:barcode:33433013125202" + ], + "physicalLocation": [ + "*OLA 83-693" + ], + "shelfMark_sort": "a*OLA 83-000693", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433013125202" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLA 83-693", - "urn:barcode:33433013125202" + "shelfMark": [ + "*OLA 83-693" ], + "uri": "i10000082", "identifierV2": [ { - "value": "*OLA 83-693", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLA 83-693" }, { - "value": "33433013125202", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433013125202" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013125202" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLA 83-693" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLA 83-693" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLA 83-000693", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000082" + ] }, "sort": [ null @@ -13881,6 +14029,9 @@ "createdYear": [ 1981 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Yanbūʻ al-asrār fī naṣāʼiḥ al-abrār : taʼlīf shudah bi-sāl-i 832 Hijrī Qamarī" ], @@ -14013,88 +14164,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OMQ 83-4676", + "urn:barcode:33433013145382" + ], + "physicalLocation": [ + "*OMQ 83-4676" + ], + "shelfMark_sort": "a*OMQ 83-004676", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433013145382" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OMQ 83-4676", - "urn:barcode:33433013145382" + "shelfMark": [ + "*OMQ 83-4676" ], + "uri": "i10000083", "identifierV2": [ { - "value": "*OMQ 83-4676", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OMQ 83-4676" }, { - "value": "33433013145382", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433013145382" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013145382" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OMQ 83-4676" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OMQ 83-4676" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OMQ 83-004676", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000083" + ] }, "sort": [ null @@ -14149,6 +14300,9 @@ "createdYear": [ 1971 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Āditīrthankara Rṣabhadēva." ], @@ -14286,88 +14440,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLA 83-4815", + "urn:barcode:33433012996868" + ], + "physicalLocation": [ + "*OLA 83-4815" + ], + "shelfMark_sort": "a*OLA 83-004815", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433012996868" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLA 83-4815", - "urn:barcode:33433012996868" + "shelfMark": [ + "*OLA 83-4815" ], + "uri": "i10000084", "identifierV2": [ { - "value": "*OLA 83-4815", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLA 83-4815" }, { - "value": "33433012996868", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433012996868" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433012996868" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLA 83-4815" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLA 83-4815" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLA 83-004815", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000084" + ] }, "sort": [ null @@ -14425,6 +14579,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Mawrūth al-shaʻbī fī āthār al-Jāḥiẓ i : muʻjam mufahras" ], @@ -14566,88 +14723,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OEM 83-4899", + "urn:barcode:33433001925001" + ], + "physicalLocation": [ + "*OEM 83-4899" + ], + "shelfMark_sort": "a*OEM 83-004899", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001925001" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OEM 83-4899", - "urn:barcode:33433001925001" + "shelfMark": [ + "*OEM 83-4899" ], + "uri": "i10000085", "identifierV2": [ { - "value": "*OEM 83-4899", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OEM 83-4899" }, { - "value": "33433001925001", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001925001" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001925001" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OEM 83-4899" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OEM 83-4899" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OEM 83-004899", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000085" + ] }, "sort": [ null @@ -14708,12 +14865,15 @@ "createdYear": [ 1972 ], - "title": [ - "Aṣṭakapañcakam = Ashtaka-panchakam ; Jaladhijānandalaharī = Jaladhijanandalahari" + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Aṣṭakapañcakam = Ashtaka-panchakam ; Jaladhijānandalaharī = Jaladhijanandalahari" + ], "shelfMark": [ "*OLY 83-4674" ], @@ -14738,9 +14898,6 @@ "dateStartYear": [ 1972 ], - "idOclc": [ - "NYPG001000104-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -14767,6 +14924,9 @@ "value": "(WaOLN)nyp0200155" } ], + "idOclc": [ + "NYPG001000104-B" + ], "uniformTitle": [ "Aṣṭakapañcaka" ], @@ -14821,16 +14981,16 @@ "placeOfPublication": [ "[S.l." ], + "titleAlt": [ + "Aṣṭakapañcaka", + "Jaladhijānandalaharī." + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Aṣṭakapañcaka", - "Jaladhijānandalaharī." - ], "dimensions": [ "22 cm." ] @@ -14857,79 +15017,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 83-4674", + "urn:barcode:33433060370396" ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 83-4674" + ], + "shelfMark_sort": "a*OLY 83-004674", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060370396" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 83-4674", - "urn:barcode:33433060370396" + "shelfMark": [ + "*OLY 83-4674" ], + "uri": "i13783803", "identifierV2": [ { - "value": "*OLY 83-4674", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 83-4674" }, { - "value": "33433060370396", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060370396" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "*OLY 83-4674" + "idBarcode": [ + "33433060370396" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 83-4674" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 83-004674", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783803" + ] }, "sort": [ null @@ -14984,6 +15144,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Anbiyāʼ fī al-Qurʼān al-karīm" ], @@ -15121,14 +15284,63 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*OGDM 83-4900", + "urn:barcode:33433005577659" + ], + "physicalLocation": [ + "*OGDM 83-4900" + ], + "shelfMark_sort": "a*OGDM 83-004900", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OGDM 83-4900" + ], + "uri": "i10000086", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGDM 83-4900" + }, + { + "type": "bf:Barcode", + "value": "33433005577659" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005577659" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true ], "catalogItemType": [ { @@ -15136,9 +15348,6 @@ "label": "book, limited circ, MaRLI" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], "formatLiteral": [ "Text" ], @@ -15148,61 +15357,15 @@ "label": "Offsite" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433005577659" - ], - "identifier": [ - "urn:shelfmark:*OGDM 83-4900", - "urn:barcode:33433005577659" - ], - "identifierV2": [ - { - "value": "*OGDM 83-4900", - "type": "bf:ShelfMark" - }, - { - "value": "33433005577659", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "*OGDM 83-4900" - ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OGDM 83-4900" - ], - "shelfMark_sort": "a*OGDM 83-004900", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000086" + ] }, "sort": [ null @@ -15253,6 +15416,9 @@ "createdYear": [ 1968 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -15393,87 +15559,87 @@ }, "_score": null, "_source": { - "uri": "i10000087", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:1000", "label": "Stephen A. Schwarzman Building" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:barcode:33433004689307" + ], + "physicalLocation": [ + "*OLC 83-4816" ], + "shelfMark_sort": "a*OLC 83-004816", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], + "type": [ + "bf:Item" + ], + "uri": "i10000087", "shelfMark": [ "*OLC 83-4816" ], "identifierV2": [ { - "value": "*OLC 83-4816", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLC 83-4816" }, { "type": "bf:Barcode", "value": "33433004689307" } ], - "physicalLocation": [ - "*OLC 83-4816" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433004689307" + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" ], "idBarcode": [ "33433004689307" ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], "formatLiteral": [ "Text" - ], - "shelfMark_sort": "a*OLC 83-004816" + ] }, "sort": [ null @@ -15523,6 +15689,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Jānapada kathālōka" ], @@ -15657,88 +15826,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLA 83-4817", + "urn:barcode:33433012996876" + ], + "physicalLocation": [ + "*OLA 83-4817" + ], + "shelfMark_sort": "a*OLA 83-004817", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433012996876" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLA 83-4817", - "urn:barcode:33433012996876" + "shelfMark": [ + "*OLA 83-4817" ], + "uri": "i10000088", "identifierV2": [ { - "value": "*OLA 83-4817", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLA 83-4817" }, { - "value": "33433012996876", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433012996876" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433012996876" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLA 83-4817" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLA 83-4817" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLA 83-004817", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000088" + ] }, "sort": [ null @@ -15789,6 +15958,9 @@ "createdYear": [ 1966 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Ilakkiya nayam" ], @@ -15923,31 +16095,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 83-4818", + "urn:barcode:33433061299065" + ], + "physicalLocation": [ + "*OLB 83-4818" + ], + "shelfMark_sort": "a*OLB 83-004818", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OLB 83-4818" + ], + "uri": "i13783804", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLB 83-4818" + }, { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:Barcode", + "value": "33433061299065" } ], "holdingLocation_packed": [ @@ -15956,55 +16147,36 @@ "idBarcode": [ "33433061299065" ], - "identifier": [ - "urn:shelfmark:*OLB 83-4818", - "urn:barcode:33433061299065" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLB 83-4818", - "type": "bf:ShelfMark" - }, - { - "value": "33433061299065", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLB 83-4818" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLB 83-4818" - ], - "shelfMark_sort": "a*OLB 83-004818", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783804" + ] }, "sort": [ null @@ -16061,6 +16233,9 @@ "createdYear": [ 1982 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Maṉita coṟūpaṅkaḷ : paṉṉiru ciṟu kataikaḷ" ], @@ -16192,88 +16367,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 83-4819", + "urn:barcode:33433061299073" + ], + "physicalLocation": [ + "*OLB 83-4819" + ], + "shelfMark_sort": "a*OLB 83-004819", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061299073" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 83-4819", - "urn:barcode:33433061299073" + "shelfMark": [ + "*OLB 83-4819" ], + "uri": "i13783805", "identifierV2": [ { - "value": "*OLB 83-4819", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 83-4819" }, { - "value": "33433061299073", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061299073" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061299073" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 83-4819" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 83-4819" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 83-004819", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783805" + ] }, "sort": [ null @@ -16333,6 +16508,9 @@ "createdYear": [ 1971 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Mahākavi Kuvempu avara Candrahāsa nāṭaka samīkṣe." ], @@ -16473,88 +16651,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLA 83-4864", + "urn:barcode:33433012996892" + ], + "physicalLocation": [ + "*OLA 83-4864" + ], + "shelfMark_sort": "a*OLA 83-004864", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433012996892" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLA 83-4864", - "urn:barcode:33433012996892" + "shelfMark": [ + "*OLA 83-4864" ], + "uri": "i10000089", "identifierV2": [ { - "value": "*OLA 83-4864", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLA 83-4864" }, { - "value": "33433012996892", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433012996892" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433012996892" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLA 83-4864" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLA 83-4864" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLA 83-004864", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000089" + ] }, "sort": [ null @@ -16611,6 +16789,9 @@ "createdYear": [ 1982 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Iruḷiṉ viṭivu : kuṟunāval" ], @@ -16742,31 +16923,50 @@ }, "_score": null, "_source": { - "accessMessage": [ + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "identifier": [ + "urn:shelfmark:*OLB 83-4821", + "urn:barcode:33433061299099" ], - "catalogItemType": [ + "physicalLocation": [ + "*OLB 83-4821" + ], + "shelfMark_sort": "a*OLB 83-004821", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "status_packed": [ + "status:a||Available" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLB 83-4821" + ], + "uri": "i13783806", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLB 83-4821" + }, + { + "type": "bf:Barcode", + "value": "33433061299099" } ], "holdingLocation_packed": [ @@ -16775,55 +16975,36 @@ "idBarcode": [ "33433061299099" ], - "identifier": [ - "urn:shelfmark:*OLB 83-4821", - "urn:barcode:33433061299099" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLB 83-4821", - "type": "bf:ShelfMark" - }, - { - "value": "33433061299099", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLB 83-4821" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLB 83-4821" - ], - "shelfMark_sort": "a*OLB 83-004821", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783806" + ] }, "sort": [ null @@ -16874,6 +17055,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Kaṇṇatācaṉ kavinayam" ], @@ -17011,88 +17195,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 83-4822", + "urn:barcode:33433061299107" + ], + "physicalLocation": [ + "*OLB 83-4822" + ], + "shelfMark_sort": "a*OLB 83-004822", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061299107" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 83-4822", - "urn:barcode:33433061299107" + "shelfMark": [ + "*OLB 83-4822" ], + "uri": "i13783807", "identifierV2": [ { - "value": "*OLB 83-4822", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 83-4822" }, { - "value": "33433061299107", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061299107" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061299107" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 83-4822" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 83-4822" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 83-004822", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783807" + ] }, "sort": [ null @@ -17149,6 +17333,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Āḻv̲arkaḷ Tamiḻil akkārak kaṉikaḷ" ], @@ -17289,79 +17476,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 83-4895", + "urn:barcode:33433060419649" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 83-4895" ], + "shelfMark_sort": "a*OLY 83-004895", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060419649" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 83-4895", - "urn:barcode:33433060419649" + "shelfMark": [ + "*OLY 83-4895" ], + "uri": "i13783808", "identifierV2": [ { - "value": "*OLY 83-4895", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 83-4895" }, { - "value": "33433060419649", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060419649" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 83-4895" + "idBarcode": [ + "33433060419649" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 83-4895" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 83-004895", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783808" + ] }, "sort": [ null @@ -17411,6 +17598,9 @@ "createdYear": [ 1962 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Laṭāʼif al-irfān : az durūs-i dawrah-ʼi dukturā-yi Dānishkadah-ʼi ʻUlūm-i Maʻqūl va Manqūl" ], @@ -17537,31 +17727,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*OMQ 84-154 ", + "urn:barcode:33433013145390" + ], + "physicalLocation": [ + "*OMQ 84-154 " + ], + "shelfMark_sort": "a*OMQ 84-154 ", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Text" + "shelfMark": [ + "*OMQ 84-154 " ], - "holdingLocation": [ + "uri": "i10000090", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OMQ 84-154 " + }, + { + "type": "bf:Barcode", + "value": "33433013145390" } ], "holdingLocation_packed": [ @@ -17570,55 +17779,36 @@ "idBarcode": [ "33433013145390" ], - "identifier": [ - "urn:shelfmark:*OMQ 84-154 ", - "urn:barcode:33433013145390" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OMQ 84-154 ", - "type": "bf:ShelfMark" - }, - { - "value": "33433013145390", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OMQ 84-154 " + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OMQ 84-154 " - ], - "shelfMark_sort": "a*OMQ 84-154 ", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000090" + ] }, "sort": [ null @@ -17941,6 +18131,9 @@ "createdYear": [ 1982 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Kēraḷapāṇinīyaṃ, cila anubandhacintakaḷ : paṭhanaṃ" ], @@ -18076,88 +18269,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLD 84-110", + "urn:barcode:33433011098963" + ], + "physicalLocation": [ + "*OLD 84-110" + ], + "shelfMark_sort": "a*OLD 84-000110", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011098963" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLD 84-110", - "urn:barcode:33433011098963" + "shelfMark": [ + "*OLD 84-110" ], + "uri": "i10000091", "identifierV2": [ { - "value": "*OLD 84-110", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLD 84-110" }, { - "value": "33433011098963", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011098963" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011098963" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLD 84-110" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLD 84-110" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLD 84-000110", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000091" + ] }, "sort": [ null @@ -18215,6 +18408,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Keṭilakkarai nākarikam" ], @@ -18353,88 +18549,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-112", + "urn:barcode:33433061299735" + ], + "physicalLocation": [ + "*OLB 84-112" + ], + "shelfMark_sort": "a*OLB 84-000112", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061299735" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-112", - "urn:barcode:33433061299735" + "shelfMark": [ + "*OLB 84-112" ], + "uri": "i13783809", "identifierV2": [ { - "value": "*OLB 84-112", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-112" }, { - "value": "33433061299735", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061299735" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061299735" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-112" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-112" - ], - "shelfMark_sort": "a*OLB 84-000112", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "uri": "i13783809" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -18495,6 +18691,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Peruṅkāppiyac ciṟṟilakkiyap peruntamiḻ : mūṉṟām Potunilaip Pattunāḷ Karuttāyvaraṅkak kaṭṭuraikaḷ" ], @@ -18639,88 +18838,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-105", + "urn:barcode:33433061299719" + ], + "physicalLocation": [ + "*OLB 84-105" + ], + "shelfMark_sort": "a*OLB 84-000105", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061299719" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-105", - "urn:barcode:33433061299719" + "shelfMark": [ + "*OLB 84-105" ], + "uri": "i13783810", "identifierV2": [ { - "value": "*OLB 84-105", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-105" }, { - "value": "33433061299719", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061299719" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061299719" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-105" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-105" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-000105", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783810" + ] }, "sort": [ null @@ -18796,6 +18995,9 @@ "createdYear": [ 1966 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Jalalineri sharzhumě ev Hay zhoghovrdi vichake Osmanian Kaysrutʻian mej (XVI-XVII darer)" ], @@ -18927,88 +19129,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*ONQ 84-119", + "urn:barcode:33433001889223" + ], + "physicalLocation": [ + "*ONQ 84-119" + ], + "shelfMark_sort": "a*ONQ 84-000119", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001889223" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*ONQ 84-119", - "urn:barcode:33433001889223" + "shelfMark": [ + "*ONQ 84-119" ], + "uri": "i10000092", "identifierV2": [ { - "value": "*ONQ 84-119", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*ONQ 84-119" }, { - "value": "33433001889223", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001889223" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001889223" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*ONQ 84-119" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*ONQ 84-119" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*ONQ 84-000119", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000092" + ] }, "sort": [ null @@ -19074,6 +19276,9 @@ "createdYear": [ 1977 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Haghags ḳerakani" ], @@ -19204,31 +19409,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*ONL 84-118", + "urn:barcode:33433013020924" + ], + "physicalLocation": [ + "*ONL 84-118" + ], + "shelfMark_sort": "a*ONL 84-000118", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ONL 84-118" + ], + "uri": "i10000093", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*ONL 84-118" + }, + { + "type": "bf:Barcode", + "value": "33433013020924" } ], "holdingLocation_packed": [ @@ -19237,55 +19461,36 @@ "idBarcode": [ "33433013020924" ], - "identifier": [ - "urn:shelfmark:*ONL 84-118", - "urn:barcode:33433013020924" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*ONL 84-118", - "type": "bf:ShelfMark" - }, + "requestable": [ + true + ], + "catalogItemType": [ { - "value": "33433013020924", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner": [ + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "loc:rc2ma", + "label": "Offsite" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "*ONL 84-118" - ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*ONL 84-118" - ], - "shelfMark_sort": "a*ONL 84-000118", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000093" + ] }, "sort": [ null @@ -19332,6 +19537,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Kāṭṭāḷan" ], @@ -19463,88 +19671,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLD 84-113", + "urn:barcode:33433011098971" + ], + "physicalLocation": [ + "*OLD 84-113" + ], + "shelfMark_sort": "a*OLD 84-000113", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011098971" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLD 84-113", - "urn:barcode:33433011098971" + "shelfMark": [ + "*OLD 84-113" ], + "uri": "i10000094", "identifierV2": [ { - "value": "*OLD 84-113", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLD 84-113" }, { - "value": "33433011098971", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011098971" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011098971" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLD 84-113" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLD 84-113" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLD 84-000113", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000094" + ] }, "sort": [ null @@ -19605,6 +19813,9 @@ "createdYear": [ 1982 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Nampūtiribhāṣā śabdakōśaṃ" ], @@ -19739,88 +19950,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLD 84-116", + "urn:barcode:33433011098989" + ], + "physicalLocation": [ + "*OLD 84-116" + ], + "shelfMark_sort": "a*OLD 84-000116", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011098989" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLD 84-116", - "urn:barcode:33433011098989" + "shelfMark": [ + "*OLD 84-116" ], + "uri": "i10000095", "identifierV2": [ { - "value": "*OLD 84-116", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLD 84-116" }, { - "value": "33433011098989", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011098989" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011098989" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLD 84-116" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLD 84-116" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLD 84-000116", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000095" + ] }, "sort": [ null @@ -19874,6 +20085,9 @@ "dateEndString": [ "1983" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Khud'āmūz-i zabān-i Sanskrīt" ], @@ -20003,31 +20217,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKE 84-115", + "urn:barcode:33433058552856" + ], + "physicalLocation": [ + "*OKE 84-115" + ], + "shelfMark_sort": "a*OKE 84-000115", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OKE 84-115" + ], + "uri": "i12858035", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OKE 84-115" + }, + { + "type": "bf:Barcode", + "value": "33433058552856" } ], "holdingLocation_packed": [ @@ -20036,55 +20269,36 @@ "idBarcode": [ "33433058552856" ], - "identifier": [ - "urn:shelfmark:*OKE 84-115", - "urn:barcode:33433058552856" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true ], - "identifierV2": [ - { - "value": "*OKE 84-115", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433058552856", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner": [ + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "loc:rc2ma", + "label": "Offsite" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "*OKE 84-115" - ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKE 84-115" - ], - "shelfMark_sort": "a*OKE 84-000115", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12858035" + ] }, "sort": [ null @@ -20140,6 +20354,9 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Rājapraśastiḥ mahākāvyam" ], @@ -20287,88 +20504,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKP 84-84", + "urn:barcode:33433058153408" + ], + "physicalLocation": [ + "*OKP 84-84" + ], + "shelfMark_sort": "a*OKP 84-000084", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058153408" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKP 84-84", - "urn:barcode:33433058153408" + "shelfMark": [ + "*OKP 84-84" ], + "uri": "i13783811", "identifierV2": [ { - "value": "*OKP 84-84", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKP 84-84" }, { - "value": "33433058153408", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058153408" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058153408" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKP 84-84" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKP 84-84" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKP 84-000084", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783811" + ] }, "sort": [ null @@ -20423,6 +20640,9 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Rāmasnehī-sampradāya kī dārśanika prshṭhabhūmi." ], @@ -20563,79 +20783,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 84-85", + "urn:barcode:33433060419680" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "*OLY 84-85" + ], + "shelfMark_sort": "a*OLY 84-000085", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060419680" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 84-85", - "urn:barcode:33433060419680" + "shelfMark": [ + "*OLY 84-85" ], + "uri": "i13783812", "identifierV2": [ { - "value": "*OLY 84-85", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 84-85" }, { - "value": "33433060419680", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060419680" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 84-85" + "idBarcode": [ + "33433060419680" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 84-85" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 84-000085", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783812" + ] }, "sort": [ null @@ -20697,6 +20917,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Hindī Krshṇabhakti sāhitya meṃ madhurabhāva kī upāsanā." ], @@ -20835,31 +21058,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTM 84-81", + "urn:barcode:33433011093949" + ], + "physicalLocation": [ + "*OKTM 84-81" + ], + "shelfMark_sort": "a*OKTM 84-000081", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OKTM 84-81" + ], + "uri": "i10942053", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OKTM 84-81" + }, + { + "type": "bf:Barcode", + "value": "33433011093949" } ], "holdingLocation_packed": [ @@ -20868,55 +21110,36 @@ "idBarcode": [ "33433011093949" ], - "identifier": [ - "urn:shelfmark:*OKTM 84-81", - "urn:barcode:33433011093949" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OKTM 84-81", - "type": "bf:ShelfMark" - }, - { - "value": "33433011093949", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OKTM 84-81" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKTM 84-81" - ], - "shelfMark_sort": "a*OKTM 84-000081", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942053" + ] }, "sort": [ null @@ -20985,6 +21208,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "pa" + ], "title": [ "Kālakēyavadhaṃ : śītaṅkantuḷḷal" ], @@ -21124,76 +21350,76 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*MGS (Hindu) 84-117", + "urn:barcode:33433093040370" ], + "physicalLocation": [ + "*MGS (Hindu) 84-117" + ], + "shelfMark_sort": "a*MGS (Hindu) 84-000117", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:pad32", - "label": "Performing Arts Research Collections - Dance" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:pad32||Performing Arts Research Collections - Dance" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433093040370" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*MGS (Hindu) 84-117", - "urn:barcode:33433093040370" + "shelfMark": [ + "*MGS (Hindu) 84-117" ], + "uri": "i14746410", "identifierV2": [ { - "value": "*MGS (Hindu) 84-117", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*MGS (Hindu) 84-117" }, { - "value": "33433093040370", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433093040370" } ], - "physicalLocation": [ - "*MGS (Hindu) 84-117" + "holdingLocation_packed": [ + "loc:pad32||Performing Arts Research Collections - Dance" + ], + "idBarcode": [ + "33433093040370" ], "requestable": [ false ], - "shelfMark": [ - "*MGS (Hindu) 84-117" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:pad32", + "label": "Performing Arts Research Collections - Dance" + } ], - "shelfMark_sort": "a*MGS (Hindu) 84-000117", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14746410" + ] }, "sort": [ null @@ -21240,12 +21466,15 @@ "createdYear": [ 1971 ], - "title": [ - "Vitiyō? Vīṇaiyō?" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Vitiyō? Vīṇaiyō?" + ], "shelfMark": [ "*OLB 84-102" ], @@ -21273,9 +21502,6 @@ "dateStartYear": [ 1971 ], - "idOclc": [ - "NYPG001000128-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -21302,6 +21528,9 @@ "value": "(WaOLN)nyp0200179" } ], + "idOclc": [ + "NYPG001000128-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -21378,88 +21607,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-102", + "urn:barcode:33433061299701" + ], + "physicalLocation": [ + "*OLB 84-102" + ], + "shelfMark_sort": "a*OLB 84-000102", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061299701" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-102", - "urn:barcode:33433061299701" + "shelfMark": [ + "*OLB 84-102" ], + "uri": "i13783813", "identifierV2": [ { - "value": "*OLB 84-102", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-102" }, { - "value": "33433061299701", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061299701" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061299701" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-102" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-102" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-000102", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783813" + ] }, "sort": [ null @@ -21518,6 +21747,9 @@ "createdYear": [ 1981 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Simhabhūmiyil : yātṟāvivaraṇaṃ" ], @@ -21656,31 +21888,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLD 84-103", + "urn:barcode:33433011098955" + ], + "physicalLocation": [ + "*OLD 84-103" + ], + "shelfMark_sort": "a*OLD 84-000103", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OLD 84-103" ], - "holdingLocation": [ + "uri": "i10000096", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLD 84-103" + }, + { + "type": "bf:Barcode", + "value": "33433011098955" } ], "holdingLocation_packed": [ @@ -21689,55 +21940,36 @@ "idBarcode": [ "33433011098955" ], - "identifier": [ - "urn:shelfmark:*OLD 84-103", - "urn:barcode:33433011098955" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLD 84-103", - "type": "bf:ShelfMark" - }, - { - "value": "33433011098955", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLD 84-103" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLD 84-103" - ], - "shelfMark_sort": "a*OLD 84-000103", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000096" + ] }, "sort": [ null @@ -21799,6 +22031,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Naī kavitā, udbhava aura vikāsa" ], @@ -21933,88 +22168,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTM 84-86", + "urn:barcode:33433011093956" + ], + "physicalLocation": [ + "*OKTM 84-86" + ], + "shelfMark_sort": "a*OKTM 84-000086", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011093956" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTM 84-86", - "urn:barcode:33433011093956" + "shelfMark": [ + "*OKTM 84-86" ], + "uri": "i10942054", "identifierV2": [ { - "value": "*OKTM 84-86", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTM 84-86" }, { - "value": "33433011093956", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011093956" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011093956" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTM 84-86" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKTM 84-86" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTM 84-000086", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942054" + ] }, "sort": [ null @@ -22070,6 +22305,9 @@ "createdYear": [ 1982 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Apaśabdabodhini" ], @@ -22204,88 +22442,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLD 84-90", + "urn:barcode:33433011098930" + ], + "physicalLocation": [ + "*OLD 84-90" + ], + "shelfMark_sort": "a*OLD 84-000090", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011098930" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLD 84-90", - "urn:barcode:33433011098930" + "shelfMark": [ + "*OLD 84-90" ], + "uri": "i10000097", "identifierV2": [ { - "value": "*OLD 84-90", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLD 84-90" }, { - "value": "33433011098930", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011098930" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011098930" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLD 84-90" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLD 84-90" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLD 84-000090", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000097" + ] }, "sort": [ null @@ -22340,6 +22578,9 @@ "createdYear": [ 1968 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Yugadrashṭā Bhagata Siṃha aura una ke mrtyuñjaya purakhe." ], @@ -22480,31 +22721,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*OKTO 84-164", + "urn:barcode:33433011049917" + ], + "physicalLocation": [ + "*OKTO 84-164" + ], + "shelfMark_sort": "a*OKTO 84-000164", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Text" + "shelfMark": [ + "*OKTO 84-164" ], - "holdingLocation": [ + "uri": "i10000098", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OKTO 84-164" + }, + { + "type": "bf:Barcode", + "value": "33433011049917" } ], "holdingLocation_packed": [ @@ -22513,55 +22773,36 @@ "idBarcode": [ "33433011049917" ], - "identifier": [ - "urn:shelfmark:*OKTO 84-164", - "urn:barcode:33433011049917" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OKTO 84-164", - "type": "bf:ShelfMark" - }, - { - "value": "33433011049917", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OKTO 84-164" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKTO 84-164" - ], - "shelfMark_sort": "a*OKTO 84-000164", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000098" + ] }, "sort": [ null @@ -22621,6 +22862,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Periya purāṇattil uvamaikaḷ" ], @@ -22758,88 +23002,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-92", + "urn:barcode:33433061299693" + ], + "physicalLocation": [ + "*OLB 84-92" + ], + "shelfMark_sort": "a*OLB 84-000092", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061299693" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-92", - "urn:barcode:33433061299693" + "shelfMark": [ + "*OLB 84-92" ], + "uri": "i13783814", "identifierV2": [ { - "value": "*OLB 84-92", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-92" }, { - "value": "33433061299693", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061299693" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061299693" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-92" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-92" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-000092", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783814" + ] }, "sort": [ null @@ -22896,6 +23140,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Vaidika-svara-bodha." ], @@ -23037,88 +23284,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTH 84-163", + "urn:barcode:33433010762189" + ], + "physicalLocation": [ + "*OKTH 84-163" + ], + "shelfMark_sort": "a*OKTH 84-000163", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433010762189" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTH 84-163", - "urn:barcode:33433010762189" + "shelfMark": [ + "*OKTH 84-163" ], + "uri": "i10000099", "identifierV2": [ { - "value": "*OKTH 84-163", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTH 84-163" }, { - "value": "33433010762189", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433010762189" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433010762189" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTH 84-163" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKTH 84-163" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTH 84-000163", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000099" + ] }, "sort": [ null @@ -23185,6 +23432,9 @@ "createdYear": [ 1983 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Farhang-i Āẕarbāyjānī-Fārsi : dārā-yi bīsh az 30 hizār vāzhah, iṣtilāḥ, tarkīb, ʻibārat bā muʻādil-i Fārsī" ], @@ -23314,88 +23564,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OOX 84-178", + "urn:barcode:33433001718323" + ], + "physicalLocation": [ + "*OOX 84-178" + ], + "shelfMark_sort": "a*OOX 84-000178", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001718323" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OOX 84-178", - "urn:barcode:33433001718323" + "shelfMark": [ + "*OOX 84-178" ], + "uri": "i10000100", "identifierV2": [ { - "value": "*OOX 84-178", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OOX 84-178" }, { - "value": "33433001718323", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001718323" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001718323" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OOX 84-178" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OOX 84-178" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OOX 84-000178", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000100" + ] }, "sort": [ null @@ -23442,6 +23692,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Intikhāb-i kalām-i kulliyyāt-i Muntaẓar, (nuskhah-yi Nadvat al-ʻUlamāʼ Lakhav)" ], @@ -23579,88 +23832,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTX 84-150", + "urn:barcode:33433015458726" + ], + "physicalLocation": [ + "*OKTX 84-150" + ], + "shelfMark_sort": "a*OKTX 84-000150", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015458726" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTX 84-150", - "urn:barcode:33433015458726" + "shelfMark": [ + "*OKTX 84-150" ], + "uri": "i10942055", "identifierV2": [ { - "value": "*OKTX 84-150", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTX 84-150" }, { - "value": "33433015458726", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015458726" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015458726" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTX 84-150" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKTX 84-150" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTX 84-000150", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942055" + ] }, "sort": [ null @@ -23722,6 +23975,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Hindī meṃ deśaja śabda." ], @@ -23860,88 +24116,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTH 84-155", + "urn:barcode:33433010762171" + ], + "physicalLocation": [ + "*OKTH 84-155" + ], + "shelfMark_sort": "a*OKTH 84-000155", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433010762171" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTH 84-155", - "urn:barcode:33433010762171" + "shelfMark": [ + "*OKTH 84-155" ], + "uri": "i10000101", "identifierV2": [ { - "value": "*OKTH 84-155", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTH 84-155" }, { - "value": "33433010762171", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433010762171" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433010762171" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTH 84-155" + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKTH 84-155" - ], - "shelfMark_sort": "a*OKTH 84-000155", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000101" + ] }, "sort": [ null @@ -23991,6 +24247,9 @@ "dateEndString": [ "1967" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Vidura nīti; Mahābhārata Udyogaparva se." ], @@ -24128,88 +24387,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKOC 84-137", + "urn:barcode:33433058630249" + ], + "physicalLocation": [ + "*OKOC 84-137" + ], + "shelfMark_sort": "a*OKOC 84-000137", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058630249" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKOC 84-137", - "urn:barcode:33433058630249" + "shelfMark": [ + "*OKOC 84-137" ], + "uri": "i13783815", "identifierV2": [ { - "value": "*OKOC 84-137", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKOC 84-137" }, { - "value": "33433058630249", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058630249" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058630249" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKOC 84-137" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKOC 84-137" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKOC 84-000137", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783815" + ] }, "sort": [ null @@ -24276,6 +24535,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Dvārakālīlāparaka Hindī Krshṇa kāvya." ], @@ -24414,88 +24676,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTM 84-130", + "urn:barcode:33433011093998" + ], + "physicalLocation": [ + "*OKTM 84-130" + ], + "shelfMark_sort": "a*OKTM 84-000130", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011093998" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTM 84-130", - "urn:barcode:33433011093998" + "shelfMark": [ + "*OKTM 84-130" ], + "uri": "i10942056", "identifierV2": [ { - "value": "*OKTM 84-130", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTM 84-130" }, { - "value": "33433011093998", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011093998" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011093998" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTM 84-130" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKTM 84-130" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTM 84-000130", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942056" + ] }, "sort": [ null @@ -24551,6 +24813,9 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Bhāratīya sāhitya darśana." ], @@ -24688,14 +24953,63 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*OKTM 84-136", + "urn:barcode:33433011094004" + ], + "physicalLocation": [ + "*OKTM 84-136" + ], + "shelfMark_sort": "a*OKTM 84-000136", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OKTM 84-136" + ], + "uri": "i10942057", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKTM 84-136" + }, + { + "type": "bf:Barcode", + "value": "33433011094004" + } + ], + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011094004" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true ], "catalogItemType": [ { @@ -24703,9 +25017,6 @@ "label": "book, limited circ, MaRLI" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], "formatLiteral": [ "Text" ], @@ -24715,61 +25026,15 @@ "label": "Offsite" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433011094004" - ], - "identifier": [ - "urn:shelfmark:*OKTM 84-136", - "urn:barcode:33433011094004" - ], - "identifierV2": [ - { - "value": "*OKTM 84-136", - "type": "bf:ShelfMark" - }, - { - "value": "33433011094004", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "*OKTM 84-136" - ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKTM 84-136" - ], - "shelfMark_sort": "a*OKTM 84-000136", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942057" + ] }, "sort": [ null @@ -24826,6 +25091,9 @@ "createdYear": [ 1966 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Abhinava-kāvya-prakāśaḥ" ], @@ -24964,100 +25232,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKP 84-162 v. 1", + "urn:barcode:33433058153416" + ], + "physicalLocation": [ + "*OKP 84-162" + ], + "shelfMark_sort": "a*OKP 84-162 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OKP 84-162 v. 1" + ], + "uri": "i13783816", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OKP 84-162 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433058153416" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433058153416" ], - "identifier": [ - "urn:shelfmark:*OKP 84-162 v. 1", - "urn:barcode:33433058153416" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OKP 84-162 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433058153416", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OKP 84-162" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKP 84-162 v. 1" - ], - "shelfMark_sort": "a*OKP 84-162 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i13783816" + ] }, "sort": [ " 1-" @@ -25109,6 +25377,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Hampīkanyalu." ], @@ -25246,88 +25517,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLC 83-2593", + "urn:barcode:33433004689018" + ], + "physicalLocation": [ + "*OLC 83-2593" + ], + "shelfMark_sort": "a*OLC 83-002593", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433004689018" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLC 83-2593", - "urn:barcode:33433004689018" + "shelfMark": [ + "*OLC 83-2593" ], + "uri": "i10000102", "identifierV2": [ { - "value": "*OLC 83-2593", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLC 83-2593" }, { - "value": "33433004689018", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433004689018" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433004689018" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLC 83-2593" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLC 83-2593" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLC 83-002593", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000102" + ] }, "sort": [ null @@ -25377,6 +25648,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Irāmāyaṇap pāttiraṅkaḷ; ātāraṅkaḷil uḷḷapaṭi tokuttatu." ], @@ -25514,79 +25788,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 83-2592", + "urn:barcode:33433060418526" ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "m2CustomerCode": [ + "XA" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "*OLY 83-2592" + ], + "shelfMark_sort": "a*OLY 83-002592", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060418526" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 83-2592", - "urn:barcode:33433060418526" + "shelfMark": [ + "*OLY 83-2592" ], + "uri": "i13783817", "identifierV2": [ { - "value": "*OLY 83-2592", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 83-2592" }, { - "value": "33433060418526", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060418526" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 83-2592" + "idBarcode": [ + "33433060418526" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 83-2592" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 83-002592", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783817" + ] }, "sort": [ null @@ -25638,6 +25912,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Paṇattōṭṭam." ], @@ -25775,88 +26052,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 83-2591", + "urn:barcode:33433061296400" + ], + "physicalLocation": [ + "*OLB 83-2591" + ], + "shelfMark_sort": "a*OLB 83-002591", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061296400" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 83-2591", - "urn:barcode:33433061296400" + "shelfMark": [ + "*OLB 83-2591" ], + "uri": "i13783818", "identifierV2": [ { - "value": "*OLB 83-2591", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 83-2591" }, { - "value": "33433061296400", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061296400" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061296400" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 83-2591" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 83-2591" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 83-002591", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783818" + ] }, "sort": [ null @@ -25911,6 +26188,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tirukkuṟaḷilē kalaipaṟṟik kūṟātatēṉ?" ], @@ -26048,88 +26328,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 83-2587", + "urn:barcode:33433061296392" + ], + "physicalLocation": [ + "*OLB 83-2587" + ], + "shelfMark_sort": "a*OLB 83-002587", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061296392" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 83-2587", - "urn:barcode:33433061296392" + "shelfMark": [ + "*OLB 83-2587" ], + "uri": "i13783819", "identifierV2": [ { - "value": "*OLB 83-2587", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 83-2587" }, { - "value": "33433061296392", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061296392" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061296392" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 83-2587" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 83-2587" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 83-002587", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783819" + ] }, "sort": [ null @@ -26716,6 +26996,9 @@ "createdYear": [ 1963 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Nirupāya, nirupāya." ], @@ -26850,31 +27133,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*OYE 83-2641", + "urn:barcode:33433011486549" + ], + "physicalLocation": [ + "*OYE 83-2641" + ], + "shelfMark_sort": "a*OYE 83-002641", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Text" + "shelfMark": [ + "*OYE 83-2641" ], - "holdingLocation": [ + "uri": "i10000105", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OYE 83-2641" + }, + { + "type": "bf:Barcode", + "value": "33433011486549" } ], "holdingLocation_packed": [ @@ -26883,55 +27185,36 @@ "idBarcode": [ "33433011486549" ], - "identifier": [ - "urn:shelfmark:*OYE 83-2641", - "urn:barcode:33433011486549" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OYE 83-2641", - "type": "bf:ShelfMark" - }, - { - "value": "33433011486549", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OYE 83-2641" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OYE 83-2641" - ], - "shelfMark_sort": "a*OYE 83-002641", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000105" + ] }, "sort": [ null @@ -26980,6 +27263,9 @@ "createdYear": [ 1964 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Nimātīra māta." ], @@ -27114,88 +27400,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OYE 83-2642", + "urn:barcode:33433010171373" + ], + "physicalLocation": [ + "*OYE 83-2642" + ], + "shelfMark_sort": "a*OYE 83-002642", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433010171373" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OYE 83-2642", - "urn:barcode:33433010171373" + "shelfMark": [ + "*OYE 83-2642" ], + "uri": "i10000106", "identifierV2": [ { - "value": "*OYE 83-2642", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OYE 83-2642" }, { - "value": "33433010171373", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433010171373" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433010171373" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OYE 83-2642" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OYE 83-2642" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OYE 83-002642", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000106" + ] }, "sort": [ null @@ -27257,6 +27543,9 @@ "createdYear": [ 1971 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Fann al-Qaṣaṣī fī al-adab al-ʻIrāqī al-ḥadīth" ], @@ -27400,88 +27689,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OEM 83-2834", + "urn:barcode:33433002039166" + ], + "physicalLocation": [ + "*OEM 83-2834" + ], + "shelfMark_sort": "a*OEM 83-002834", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002039166" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OEM 83-2834", - "urn:barcode:33433002039166" + "shelfMark": [ + "*OEM 83-2834" ], + "uri": "i10000107", "identifierV2": [ { - "value": "*OEM 83-2834", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OEM 83-2834" }, { - "value": "33433002039166", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002039166" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002039166" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OEM 83-2834" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OEM 83-2834" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OEM 83-002834", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000107" + ] }, "sort": [ null diff --git a/test/fixtures/query-6882d302b36e0a02e9e9c66ebd549e88.json b/test/fixtures/query-6882d302b36e0a02e9e9c66ebd549e88.json index 3e73176e..09208ce1 100644 --- a/test/fixtures/query-6882d302b36e0a02e9e9c66ebd549e88.json +++ b/test/fixtures/query-6882d302b36e0a02e9e9c66ebd549e88.json @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.631159, + "max_score": 15.782547, "hits": [ { "_index": "resources-2024-10-22", "_id": "b10011374", - "_score": 15.631159, + "_score": 15.782547, "_source": { "extent": [ "2 v. illus." @@ -63,6 +63,10 @@ "dateEndString": [ "1828" ], + "buildingLocationIds": [ + "ma", + "rc" + ], "title": [ "The table book" ], diff --git a/test/fixtures/query-6f39d9a282fdf052ac7e297f238a0505.json b/test/fixtures/query-6f39d9a282fdf052ac7e297f238a0505.json index 2cbfdcd3..71ccf938 100644 --- a/test/fixtures/query-6f39d9a282fdf052ac7e297f238a0505.json +++ b/test/fixtures/query-6f39d9a282fdf052ac7e297f238a0505.json @@ -1,5 +1,5 @@ { - "took": 423, + "took": 142, "timed_out": false, "_shards": { "total": 2, @@ -63,6 +63,9 @@ "createdYear": [ 1965 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Mutaṟkuṟaḷ uvamai." ], @@ -203,88 +206,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1934", + "urn:barcode:33433061301556" + ], + "physicalLocation": [ + "*OLB 84-1934" + ], + "shelfMark_sort": "a*OLB 84-001934", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301556" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1934", - "urn:barcode:33433061301556" + "shelfMark": [ + "*OLB 84-1934" ], + "uri": "i13783781", "identifierV2": [ { - "value": "*OLB 84-1934", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1934" }, { - "value": "33433061301556", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301556" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301556" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1934" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1934" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001934", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783781" + ] }, "sort": [ null @@ -345,6 +348,9 @@ "createdYear": [ 1968 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tajdīd al-tafkīr al-dīnī fī al-Islām" ], @@ -485,88 +491,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OGC 84-1984", + "urn:barcode:33433022691665" + ], + "physicalLocation": [ + "*OGC 84-1984" + ], + "shelfMark_sort": "a*OGC 84-001984", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433022691665" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGC 84-1984", - "urn:barcode:33433022691665" + "shelfMark": [ + "*OGC 84-1984" ], + "uri": "i12540039", "identifierV2": [ { - "value": "*OGC 84-1984", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGC 84-1984" }, { - "value": "33433022691665", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433022691665" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433022691665" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGC 84-1984" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGC 84-1984" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGC 84-001984", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540039" + ] }, "sort": [ null @@ -613,6 +619,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Aṇṇāviṉ ciṟukataikaḷ." ], @@ -747,88 +756,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1986", + "urn:barcode:33433061301689" + ], + "physicalLocation": [ + "*OLB 84-1986" + ], + "shelfMark_sort": "a*OLB 84-001986", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301689" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1986", - "urn:barcode:33433061301689" + "shelfMark": [ + "*OLB 84-1986" ], + "uri": "i13783782", "identifierV2": [ { - "value": "*OLB 84-1986", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1986" }, { - "value": "33433061301689", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301689" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301689" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1986" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1986" - ], - "shelfMark_sort": "a*OLB 84-001986", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" + "formatLiteral": [ + "Text" ], - "uri": "i13783782" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -883,6 +892,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." ], @@ -1023,88 +1035,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1938", + "urn:barcode:33433061301598" + ], + "physicalLocation": [ + "*OLB 84-1938" + ], + "shelfMark_sort": "a*OLB 84-001938", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301598" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1938", - "urn:barcode:33433061301598" + "shelfMark": [ + "*OLB 84-1938" ], + "uri": "i13783783", "identifierV2": [ { - "value": "*OLB 84-1938", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1938" }, { - "value": "33433061301598", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301598" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301598" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1938" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1938" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001938", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783783" + ] }, "sort": [ null @@ -1159,6 +1171,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" ], @@ -1285,88 +1300,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFS 84-1997", + "urn:barcode:33433014514719" + ], + "physicalLocation": [ + "*OFS 84-1997" + ], + "shelfMark_sort": "a*OFS 84-001997", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433014514719" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFS 84-1997", - "urn:barcode:33433014514719" + "shelfMark": [ + "*OFS 84-1997" ], + "uri": "i10000003", "identifierV2": [ { - "value": "*OFS 84-1997", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFS 84-1997" }, { - "value": "33433014514719", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433014514719" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014514719" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFS 84-1997" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFS 84-1997" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFS 84-001997", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000003" + ] }, "sort": [ null @@ -1423,6 +1438,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Waḥdah al-Islāmīyah : aw al-taqrīb bayna al-madhāhib al-sabʻah, wathāʼiq khaṭīrah wa-buḥūth ʻilmīyah li-aʻāẓim ʻulamāʼ al-Muslimīn min al-sunnah wa-al-shīʻah" ], @@ -1553,88 +1571,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OGC 84-1996", + "urn:barcode:33433022691780" + ], + "physicalLocation": [ + "*OGC 84-1996" + ], + "shelfMark_sort": "a*OGC 84-001996", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433022691780" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGC 84-1996", - "urn:barcode:33433022691780" + "shelfMark": [ + "*OGC 84-1996" ], + "uri": "i12540040", "identifierV2": [ { - "value": "*OGC 84-1996", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGC 84-1996" }, { - "value": "33433022691780", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433022691780" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433022691780" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGC 84-1996" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGC 84-1996" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGC 84-001996", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540040" + ] }, "sort": [ null @@ -1684,6 +1702,9 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Nalla Kuṟuntokaiyil nāṉilam." ], @@ -1821,88 +1842,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1937", + "urn:barcode:33433061301580" + ], + "physicalLocation": [ + "*OLB 84-1937" + ], + "shelfMark_sort": "a*OLB 84-001937", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301580" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1937", - "urn:barcode:33433061301580" + "shelfMark": [ + "*OLB 84-1937" ], + "uri": "i13783785", "identifierV2": [ { - "value": "*OLB 84-1937", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1937" }, { - "value": "33433061301580", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301580" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301580" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1937" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1937" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001937", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783785" + ] }, "sort": [ null @@ -1958,6 +1979,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" ], @@ -2095,88 +2119,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFX 84-1995", + "urn:barcode:33433002031718" + ], + "physicalLocation": [ + "*OFX 84-1995" + ], + "shelfMark_sort": "a*OFX 84-001995", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002031718" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFX 84-1995", - "urn:barcode:33433002031718" + "shelfMark": [ + "*OFX 84-1995" ], + "uri": "i10000004", "identifierV2": [ { - "value": "*OFX 84-1995", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFX 84-1995" }, { - "value": "33433002031718", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002031718" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002031718" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFX 84-1995" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFX 84-1995" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFX 84-001995", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000004" + ] }, "sort": [ null @@ -2226,6 +2250,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tolkāppiyam." ], @@ -2369,100 +2396,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1936 v. 1", + "urn:barcode:33433061301572" + ], + "physicalLocation": [ + "*OLB 84-1936" + ], + "shelfMark_sort": "a*OLB 84-1936 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLB 84-1936 v. 1" + ], + "uri": "i13783786", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLB 84-1936 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433061301572" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433061301572" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1936 v. 1", - "urn:barcode:33433061301572" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLB 84-1936 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433061301572", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLB 84-1936" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLB 84-1936 v. 1" - ], - "shelfMark_sort": "a*OLB 84-1936 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i13783786" + ] }, "sort": [ " 1-" @@ -2518,6 +2545,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." ], @@ -2665,88 +2695,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1935", + "urn:barcode:33433061301564" + ], + "physicalLocation": [ + "*OLB 84-1935" + ], + "shelfMark_sort": "a*OLB 84-001935", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301564" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1935", - "urn:barcode:33433061301564" + "shelfMark": [ + "*OLB 84-1935" ], + "uri": "i13783787", "identifierV2": [ { - "value": "*OLB 84-1935", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1935" }, { - "value": "33433061301564", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301564" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301564" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1935" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1935" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001935", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783787" + ] }, "sort": [ null @@ -2805,6 +2835,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" ], @@ -2944,88 +2977,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFK 84-1944", + "urn:barcode:33433005548676" + ], + "physicalLocation": [ + "*OFK 84-1944" + ], + "shelfMark_sort": "a*OFK 84-001944", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433005548676" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFK 84-1944", - "urn:barcode:33433005548676" + "shelfMark": [ + "*OFK 84-1944" ], + "uri": "i10000005", "identifierV2": [ { - "value": "*OFK 84-1944", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFK 84-1944" }, { - "value": "33433005548676", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433005548676" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005548676" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFK 84-1944" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFK 84-1944" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFK 84-001944", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000005" + ] }, "sort": [ null @@ -3081,6 +3114,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" ], @@ -3218,88 +3254,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFX 84-1953", + "urn:barcode:33433002031700" + ], + "physicalLocation": [ + "*OFX 84-1953" + ], + "shelfMark_sort": "a*OFX 84-001953", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433002031700" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:*OFX 84-1953", - "urn:barcode:33433002031700" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OFX 84-1953" ], + "uri": "i10000006", "identifierV2": [ { - "value": "*OFX 84-1953", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFX 84-1953" }, { - "value": "33433002031700", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002031700" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002031700" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFX 84-1953" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFX 84-1953" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFX 84-001953", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000006" + ] }, "sort": [ null @@ -3359,6 +3395,9 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Vaṃśabhāskara : eka adhyayana" ], @@ -3496,88 +3535,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTM 84-1945", + "urn:barcode:33433011094210" + ], + "physicalLocation": [ + "*OKTM 84-1945" + ], + "shelfMark_sort": "a*OKTM 84-001945", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011094210" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTM 84-1945", - "urn:barcode:33433011094210" + "shelfMark": [ + "*OKTM 84-1945" ], + "uri": "i10942033", "identifierV2": [ { - "value": "*OKTM 84-1945", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTM 84-1945" }, { - "value": "33433011094210", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011094210" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011094210" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTM 84-1945" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKTM 84-1945" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTM 84-001945", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942033" + ] }, "sort": [ null @@ -3643,12 +3682,15 @@ "createdYear": [ 1974 ], - "title": [ - "Uṇādi-koṣaḥ" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Uṇādi-koṣaḥ" + ], "shelfMark": [ "*OKA 84-1931" ], @@ -3679,9 +3721,6 @@ "dateStartYear": [ 1974 ], - "idOclc": [ - "NYPG001000014-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -3708,6 +3747,9 @@ "value": "(WaOLN)nyp0200029" } ], + "idOclc": [ + "NYPG001000014-B" + ], "uniformTitle": [ "Uṇādisūtra." ], @@ -3793,88 +3835,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKA 84-1931", + "urn:barcode:33433012968222" + ], + "physicalLocation": [ + "*OKA 84-1931" + ], + "shelfMark_sort": "a*OKA 84-001931", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433012968222" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKA 84-1931", - "urn:barcode:33433012968222" + "shelfMark": [ + "*OKA 84-1931" ], + "uri": "i10000007", "identifierV2": [ { - "value": "*OKA 84-1931", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKA 84-1931" }, { - "value": "33433012968222", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433012968222" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433012968222" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKA 84-1931" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKA 84-1931" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKA 84-001931", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000007" + ] }, "sort": [ null @@ -3932,6 +3974,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Buzurgān-i Jahrum : mushtamil bar sharḥ-i aḥvāl va ā̲sār-i rijāl va sukhanvarān va dānishmandān va khushnivīsān va pizishkān-i Jahrum va Khafr" ], @@ -4059,88 +4104,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "identifier": [ + "urn:shelfmark:*OMP 84-2007", + "urn:barcode:33433013173012" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "*OMP 84-2007" ], - "holdingLocation": [ + "shelfMark_sort": "a*OMP 84-002007", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433013173012" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OMP 84-2007", - "urn:barcode:33433013173012" + "shelfMark": [ + "*OMP 84-2007" ], + "uri": "i10000008", "identifierV2": [ { - "value": "*OMP 84-2007", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OMP 84-2007" }, { - "value": "33433013173012", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433013173012" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013173012" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OMP 84-2007" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OMP 84-2007" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OMP 84-002007", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000008" + ] }, "sort": [ null @@ -4202,12 +4247,15 @@ "createdYear": [ 1974 ], - "title": [ - "Brhatkathāślokasaṁgraha : a study" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Brhatkathāślokasaṁgraha : a study" + ], "shelfMark": [ "*OKR 84-2006" ], @@ -4223,12 +4271,12 @@ "idLccn": [ "74903273" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Indian civilization series ; no. 4" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Guṇāḍhya", "Agrawala, Vasudeva Sharana", @@ -4240,9 +4288,6 @@ "dateStartYear": [ 1974 ], - "idOclc": [ - "NYPG001000016-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -4269,6 +4314,9 @@ "value": "(WaOLN)nyp0200033" } ], + "idOclc": [ + "NYPG001000016-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -4348,88 +4396,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKR 84-2006", + "urn:barcode:33433011528696" + ], + "physicalLocation": [ + "*OKR 84-2006" + ], + "shelfMark_sort": "a*OKR 84-002006", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011528696" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKR 84-2006", - "urn:barcode:33433011528696" + "shelfMark": [ + "*OKR 84-2006" ], + "uri": "i10000009", "identifierV2": [ { - "value": "*OKR 84-2006", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKR 84-2006" }, { - "value": "33433011528696", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011528696" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011528696" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKR 84-2006" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKR 84-2006" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKR 84-002006", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000009" + ] }, "sort": [ null @@ -4485,6 +4533,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Srīnārāyaṇatīrthayatīndracaritram[sic]" ], @@ -4622,88 +4673,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKB 84-1928", + "urn:barcode:33433058548433" + ], + "physicalLocation": [ + "*OKB 84-1928" + ], + "shelfMark_sort": "a*OKB 84-001928", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058548433" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKB 84-1928", - "urn:barcode:33433058548433" + "shelfMark": [ + "*OKB 84-1928" ], + "uri": "i12858032", "identifierV2": [ { - "value": "*OKB 84-1928", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKB 84-1928" }, { - "value": "33433058548433", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058548433" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058548433" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKB 84-1928" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKB 84-1928" - ], - "shelfMark_sort": "a*OKB 84-001928", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "uri": "i12858032" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -4755,6 +4806,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" ], @@ -4892,88 +4946,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKP 84-1932", + "urn:barcode:33433058153572" + ], + "physicalLocation": [ + "*OKP 84-1932" + ], + "shelfMark_sort": "a*OKP 84-001932", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058153572" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKP 84-1932", - "urn:barcode:33433058153572" + "shelfMark": [ + "*OKP 84-1932" ], + "uri": "i13783788", "identifierV2": [ { - "value": "*OKP 84-1932", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKP 84-1932" }, { - "value": "33433058153572", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058153572" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058153572" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKP 84-1932" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKP 84-1932" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKP 84-001932", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783788" + ] }, "sort": [ null @@ -5023,6 +5077,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tiru. Vi. Kaliyāṇacuntaraṉār." ], @@ -5163,88 +5220,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1947", + "urn:barcode:33433061301622" + ], + "physicalLocation": [ + "*OLB 84-1947" + ], + "shelfMark_sort": "a*OLB 84-001947", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301622" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1947", - "urn:barcode:33433061301622" + "shelfMark": [ + "*OLB 84-1947" ], + "uri": "i13783789", "identifierV2": [ { - "value": "*OLB 84-1947", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1947" }, { - "value": "33433061301622", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301622" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301622" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1947" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1947" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001947", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783789" + ] }, "sort": [ null @@ -5298,6 +5355,9 @@ "dateEndString": [ "1972" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." ], @@ -5442,88 +5502,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKN 84-1926", + "urn:barcode:33433058618392" + ], + "physicalLocation": [ + "*OKN 84-1926" + ], + "shelfMark_sort": "a*OKN 84-001926", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058618392" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKN 84-1926", - "urn:barcode:33433058618392" + "shelfMark": [ + "*OKN 84-1926" ], + "uri": "i13783790", "identifierV2": [ { - "value": "*OKN 84-1926", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKN 84-1926" }, { - "value": "33433058618392", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058618392" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058618392" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKN 84-1926" + "requestable": [ + true ], - "recapCustomerCode": [ - "NA" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "*OKN 84-1926" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKN 84-001926", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783790" + ] }, "sort": [ null @@ -5588,12 +5648,15 @@ "createdYear": [ 1976 ], - "title": [ - "ʼJam-mgon Rgyal-ba gñis-paʼi Rgyal-tshab Dpal-ldan Bla-ma Dam-pa Khyab-bdag Khri-chen Byaṅ-chub-chos-ʼphel dpal-bzaṅ-poʼi rnam par thar pa Dgaʼ ldan bstan paʼi mdzes rgyab [sic] : the biography of the 69th Khri-chen of Dgaʼ-ʼldan Byaṅ-chub-chos-ʼphel" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "ʼJam-mgon Rgyal-ba gñis-paʼi Rgyal-tshab Dpal-ldan Bla-ma Dam-pa Khyab-bdag Khri-chen Byaṅ-chub-chos-ʼphel dpal-bzaṅ-poʼi rnam par thar pa Dgaʼ ldan bstan paʼi mdzes rgyab [sic] : the biography of the 69th Khri-chen of Dgaʼ-ʼldan Byaṅ-chub-chos-ʼphel" + ], "shelfMark": [ "*OZ+ 82-2361" ], @@ -5621,9 +5684,6 @@ "dateStartYear": [ 1976 ], - "idOclc": [ - "NYPG001000021-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -5650,6 +5710,9 @@ "value": "(WaOLN)nyp0200043" } ], + "idOclc": [ + "NYPG001000021-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -5734,88 +5797,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2361", + "urn:barcode:33433015080645" + ], + "physicalLocation": [ + "*OZ+ 82-2361" + ], + "shelfMark_sort": "a*OZ+ 82-002361", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080645" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2361", - "urn:barcode:33433015080645" + "shelfMark": [ + "*OZ+ 82-2361" ], + "uri": "i10000011", "identifierV2": [ { - "value": "*OZ+ 82-2361", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2361" }, { - "value": "33433015080645", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080645" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080645" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2361" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2361" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002361", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000011" + ] }, "sort": [ null @@ -5881,12 +5944,15 @@ "createdYear": [ 1976 ], - "title": [ - "Dpal Kye rdo rjeʼi phyi naṅ bskyed rim ñams len gnad kyi gsal byed sñan brgyud bstan pa rgyas paʼi ñin byed : a detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Dpal Kye rdo rjeʼi phyi naṅ bskyed rim ñams len gnad kyi gsal byed sñan brgyud bstan pa rgyas paʼi ñin byed : a detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra" + ], "shelfMark": [ "*OZ+ 82-2362" ], @@ -5914,9 +5980,6 @@ "dateStartYear": [ 1976 ], - "idOclc": [ - "NYPG001000022-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -5943,6 +6006,9 @@ "value": "(WaOLN)nyp0200045" } ], + "idOclc": [ + "NYPG001000022-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -5995,17 +6061,17 @@ "placeOfPublication": [ "New Delhi" ], + "titleAlt": [ + "Rgyal ba rdo rje ʼchan Kun dgaʼ bzaṅ poʼi rnam par thar pa legs bśad chu bo ʼdus paʼi rgya mtsho yon tan yid bźin nor buʼi byuṅ gnas.", + "Detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra.", + "Life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po." + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Rgyal ba rdo rje ʼchan Kun dgaʼ bzaṅ poʼi rnam par thar pa legs bśad chu bo ʼdus paʼi rgya mtsho yon tan yid bźin nor buʼi byuṅ gnas.", - "Detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra.", - "Life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po." - ], "dimensions": [ "28 x 37 cm." ] @@ -6032,88 +6098,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2362", + "urn:barcode:33433015080413" + ], + "physicalLocation": [ + "*OZ+ 82-2362" + ], + "shelfMark_sort": "a*OZ+ 82-002362", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080413" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2362", - "urn:barcode:33433015080413" + "shelfMark": [ + "*OZ+ 82-2362" ], + "uri": "i10000012", "identifierV2": [ { - "value": "*OZ+ 82-2362", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2362" }, { - "value": "33433015080413", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080413" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080413" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2362" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2362" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002362", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000012" + ] }, "sort": [ null @@ -6169,6 +6235,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Bkra śis Tshe riṅ mai sgrub skor sogs : a collection of texts outlining the rites of the Five Long Lived Sisters and other highly esoteric rituals." ], @@ -6303,88 +6372,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "identifier": [ + "urn:shelfmark:*OZ+ 82-2382", + "urn:barcode:33433015080439" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "*OZ+ 82-2382" ], - "holdingLocation": [ + "shelfMark_sort": "a*OZ+ 82-002382", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080439" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2382", - "urn:barcode:33433015080439" + "shelfMark": [ + "*OZ+ 82-2382" ], + "uri": "i10000013", "identifierV2": [ { - "value": "*OZ+ 82-2382", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2382" }, { - "value": "33433015080439", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080439" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080439" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2382" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2382" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002382", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000013" + ] }, "sort": [ null @@ -6445,6 +6514,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "The rnam thar and mgur ʼbum of ʼBaʼ-ra-ba, with his Sgrub pa ñams su blaṅ baʼi lag len dgos ʼdod ʼbyuṅ baʼi gter mdzod." ], @@ -6587,88 +6659,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2381", + "urn:barcode:33433015080421" + ], + "physicalLocation": [ + "*OZ+ 82-2381" + ], + "shelfMark_sort": "a*OZ+ 82-002381", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080421" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2381", - "urn:barcode:33433015080421" + "shelfMark": [ + "*OZ+ 82-2381" ], + "uri": "i10000014", "identifierV2": [ { - "value": "*OZ+ 82-2381", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2381" }, { - "value": "33433015080421", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080421" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080421" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2381" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2381" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002381", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000014" + ] }, "sort": [ null @@ -6727,6 +6799,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Rig ʼdzin grub paʼi dbaṅ phyug chen po Padma-ʼbyuṅ-gnas kyi rnam par thar pa ṅo mtshar phun sum tshogs paʼi rgya mtsho : a detailed account of the life of Guru Rimpoche Padmasambhava Miraculously Born" ], @@ -6865,88 +6940,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2383", + "urn:barcode:33433015080447" + ], + "physicalLocation": [ + "*OZ+ 82-2383" + ], + "shelfMark_sort": "a*OZ+ 82-002383", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080447" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2383", - "urn:barcode:33433015080447" + "shelfMark": [ + "*OZ+ 82-2383" ], + "uri": "i10000015", "identifierV2": [ { - "value": "*OZ+ 82-2383", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2383" }, { - "value": "33433015080447", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080447" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080447" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2383" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2383" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002383", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000015" + ] }, "sort": [ null @@ -7001,6 +7076,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Collected works (gsun ʼbum) of ʼBri-guṅ Skyob-pa ʼJig-rten-mgon-po Pin-chen-dpal." ], @@ -7138,88 +7216,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2384", + "urn:barcode:33433015080454" + ], + "physicalLocation": [ + "*OZ+ 82-2384" + ], + "shelfMark_sort": "a*OZ+ 82-002384", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080454" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2384", - "urn:barcode:33433015080454" + "shelfMark": [ + "*OZ+ 82-2384" ], + "uri": "i10000016", "identifierV2": [ { - "value": "*OZ+ 82-2384", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2384" }, { - "value": "33433015080454", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080454" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080454" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2384" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2384" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002384", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000016" + ] }, "sort": [ null @@ -7281,6 +7359,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Collected songs (mgur) of esoteric realisation of Ratna-badzra (Rin-chen-rdo-rje)." ], @@ -7418,88 +7499,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2385", + "urn:barcode:33433015080462" + ], + "physicalLocation": [ + "*OZ+ 82-2385" + ], + "shelfMark_sort": "a*OZ+ 82-002385", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080462" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2385", - "urn:barcode:33433015080462" + "shelfMark": [ + "*OZ+ 82-2385" ], + "uri": "i10000017", "identifierV2": [ { - "value": "*OZ+ 82-2385", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2385" }, { - "value": "33433015080462", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080462" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080462" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2385" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2385" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002385", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000017" + ] }, "sort": [ null @@ -7560,6 +7641,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Yaṅ ti nag po gser gyi ʼbru gcig paʼi chos skor : a collection of Nyingmapa Dzogchen teachings" ], @@ -7703,88 +7787,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-5174", + "urn:barcode:33433012357756" + ], + "physicalLocation": [ + "*OZ+ 82-5174" + ], + "shelfMark_sort": "a*OZ+ 82-005174", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433012357756" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-5174", - "urn:barcode:33433012357756" + "shelfMark": [ + "*OZ+ 82-5174" ], + "uri": "i10000018", "identifierV2": [ { - "value": "*OZ+ 82-5174", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-5174" }, { - "value": "33433012357756", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433012357756" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433012357756" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-5174" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-5174" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-005174", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000018" + ] }, "sort": [ null @@ -7841,6 +7925,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "The autobiography of the First Panchen Lama Blo-bzang-chos-kyi-rgyal-mtsho." ], @@ -7984,88 +8071,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-5074", + "urn:barcode:33433015080363" + ], + "physicalLocation": [ + "*OZ+ 82-5074" + ], + "shelfMark_sort": "a*OZ+ 82-005074", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080363" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-5074", - "urn:barcode:33433015080363" + "shelfMark": [ + "*OZ+ 82-5074" ], + "uri": "i10000019", "identifierV2": [ { - "value": "*OZ+ 82-5074", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-5074" }, { - "value": "33433015080363", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080363" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080363" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-5074" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-5074" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-005074", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000019" + ] }, "sort": [ null @@ -8131,6 +8218,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Sa gsum na mngon par mtho ba Rdo rje sgra dbyangs gling gi zhal ʼdon bskang gsoʼi rim pa phyogs gcig tu bsgrigs paʼi ngo mtshar nor buʼi ʼphreng ba skal bzang gzhon nuʼi mgul rgyan. The collected liturgical texts of Gnas-chung Rdo-rje-sgra-dbyangs-gling, the residence of the State Oracle of Tibet." ], @@ -8274,88 +8364,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-5073", + "urn:barcode:33433030669448" + ], + "physicalLocation": [ + "*OZ+ 82-5073" + ], + "shelfMark_sort": "a*OZ+ 82-005073", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433030669448" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-5073", - "urn:barcode:33433030669448" + "shelfMark": [ + "*OZ+ 82-5073" ], + "uri": "i10000020", "identifierV2": [ { - "value": "*OZ+ 82-5073", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-5073" }, { - "value": "33433030669448", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433030669448" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433030669448" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-5073" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-5073" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-005073", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000020" + ] }, "sort": [ null @@ -8412,6 +8502,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Shiʻr" ], @@ -8677,12 +8770,15 @@ "createdYear": [ 1962 ], - "title": [ - "Meghadūta. Hindī anuvāda, sakalāṅgapūrṇa samīkshātmaka bhūmikā, vyākhyātmaka ṭippāṇī, mallināthīya saṃskṛta ṭīkā tathā anya[sic] upayogī pariśishṭoṃ sahita." + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Meghadūta. Hindī anuvāda, sakalāṅgapūrṇa samīkshātmaka bhūmikā, vyākhyātmaka ṭippāṇī, mallināthīya saṃskṛta ṭīkā tathā anya[sic] upayogī pariśishṭoṃ sahita." + ], "shelfMark": [ "*OKP 82-2129" ], @@ -8711,9 +8807,6 @@ "dateStartYear": [ 1962 ], - "idOclc": [ - "NYPG001000032-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -8740,6 +8833,9 @@ "value": "(WaOLN)nyp0200065" } ], + "idOclc": [ + "NYPG001000032-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -8819,88 +8915,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKP 82-2129", + "urn:barcode:33433058152988" + ], + "physicalLocation": [ + "*OKP 82-2129" + ], + "shelfMark_sort": "a*OKP 82-002129", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058152988" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKP 82-2129", - "urn:barcode:33433058152988" + "shelfMark": [ + "*OKP 82-2129" ], + "uri": "i13783793", "identifierV2": [ { - "value": "*OKP 82-2129", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKP 82-2129" }, { - "value": "33433058152988", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058152988" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058152988" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKP 82-2129" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKP 82-2129" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKP 82-002129", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783793" + ] }, "sort": [ null @@ -8948,6 +9044,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Qavāfī-yi Kāmil ; ʻilm-i qāfīyah bi-qānūn-i qadīm va jadīd." ], @@ -9085,88 +9184,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTX 82-2129", + "urn:barcode:33433004672303" + ], + "physicalLocation": [ + "*OKTX 82-2129" + ], + "shelfMark_sort": "a*OKTX 82-002129", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433004672303" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTX 82-2129", - "urn:barcode:33433004672303" + "shelfMark": [ + "*OKTX 82-2129" ], + "uri": "i10000022", "identifierV2": [ { - "value": "*OKTX 82-2129", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTX 82-2129" }, { - "value": "33433004672303", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433004672303" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433004672303" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTX 82-2129" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKTX 82-2129" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTX 82-002129", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000022" + ] }, "sort": [ null @@ -9222,6 +9321,9 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -9365,87 +9467,87 @@ }, "_score": null, "_source": { - "uri": "i10000023", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:1000", "label": "Stephen A. Schwarzman Building" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:barcode:33433004314914" + ], + "physicalLocation": [ + "*OLD 82-2140" ], + "shelfMark_sort": "a*OLD 82-002140", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], + "type": [ + "bf:Item" + ], + "uri": "i10000023", "shelfMark": [ "*OLD 82-2140" ], "identifierV2": [ { - "value": "*OLD 82-2140", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLD 82-2140" }, { "type": "bf:Barcode", "value": "33433004314914" } ], - "physicalLocation": [ - "*OLD 82-2140" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433004314914" + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" ], "idBarcode": [ "33433004314914" ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], "formatLiteral": [ "Text" - ], - "shelfMark_sort": "a*OLD 82-002140" + ] }, "sort": [ null @@ -9495,6 +9597,9 @@ "createdYear": [ 1977 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Fārsī nivīsī barā-yi kūdakān" ], @@ -9621,88 +9726,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OMP 82-2194", + "urn:barcode:33433013172402" + ], + "physicalLocation": [ + "*OMP 82-2194" + ], + "shelfMark_sort": "a*OMP 82-002194", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433013172402" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OMP 82-2194", - "urn:barcode:33433013172402" + "shelfMark": [ + "*OMP 82-2194" ], + "uri": "i10000024", "identifierV2": [ { - "value": "*OMP 82-2194", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OMP 82-2194" }, { - "value": "33433013172402", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433013172402" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013172402" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OMP 82-2194" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OMP 82-2194" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OMP 82-002194", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000024" + ] }, "sort": [ null @@ -9762,6 +9867,9 @@ "dateEndString": [ "1975" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Dīwān al-Bārūdī" ], @@ -9906,100 +10014,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFA 82-2183 v. 4", + "urn:barcode:33433002000465" + ], + "physicalLocation": [ + "*OFA 82-2183" + ], + "shelfMark_sort": "a*OFA 82-2183 v. 000004", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 4" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 4-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OFA 82-2183 v. 4" + ], + "uri": "i10000028", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OFA 82-2183 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433002000465" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 4" + ], "idBarcode": [ "33433002000465" ], - "identifier": [ - "urn:shelfmark:*OFA 82-2183 v. 4", - "urn:barcode:33433002000465" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OFA 82-2183 v. 4", - "type": "bf:ShelfMark" - }, - { - "value": "33433002000465", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OFA 82-2183" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OFA 82-2183 v. 4" - ], - "shelfMark_sort": "a*OFA 82-2183 v. 000004", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 4, "lte": 4 } - ], - "uri": "i10000028" + ] }, "sort": [ " 4-" @@ -10014,100 +10122,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFA 82-2183 v. 3", + "urn:barcode:33433002000457" + ], + "physicalLocation": [ + "*OFA 82-2183" + ], + "shelfMark_sort": "a*OFA 82-2183 v. 000003", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 3" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 3-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OFA 82-2183 v. 3" + ], + "uri": "i10000027", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OFA 82-2183 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433002000457" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 3" + ], "idBarcode": [ "33433002000457" ], - "identifier": [ - "urn:shelfmark:*OFA 82-2183 v. 3", - "urn:barcode:33433002000457" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OFA 82-2183 v. 3", - "type": "bf:ShelfMark" - }, - { - "value": "33433002000457", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OFA 82-2183" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OFA 82-2183 v. 3" - ], - "shelfMark_sort": "a*OFA 82-2183 v. 000003", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 3, "lte": 3 } - ], - "uri": "i10000027" + ] }, "sort": [ " 3-" @@ -10122,100 +10230,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFA 82-2183 v. 2", + "urn:barcode:33433002000440" + ], + "physicalLocation": [ + "*OFA 82-2183" + ], + "shelfMark_sort": "a*OFA 82-2183 v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OFA 82-2183 v. 2" + ], + "uri": "i10000026", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OFA 82-2183 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433002000440" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433002000440" ], - "identifier": [ - "urn:shelfmark:*OFA 82-2183 v. 2", - "urn:barcode:33433002000440" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OFA 82-2183 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433002000440", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OFA 82-2183" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OFA 82-2183 v. 2" - ], - "shelfMark_sort": "a*OFA 82-2183 v. 000002", "status": [ { "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" + "label": "Available" + } ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i10000026" + ] }, "sort": [ " 2-" @@ -10269,6 +10377,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Chah nikāt kī saccī taṣvīr." ], @@ -10408,88 +10519,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTX 82-2408", + "urn:barcode:33433004672238" + ], + "physicalLocation": [ + "*OKTX 82-2408" + ], + "shelfMark_sort": "a*OKTX 82-002408", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433004672238" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTX 82-2408", - "urn:barcode:33433004672238" + "shelfMark": [ + "*OKTX 82-2408" ], + "uri": "i10000029", "identifierV2": [ { - "value": "*OKTX 82-2408", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTX 82-2408" }, { - "value": "33433004672238", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433004672238" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433004672238" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTX 82-2408" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKTX 82-2408" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTX 82-002408", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000029" + ] }, "sort": [ null @@ -10541,6 +10652,9 @@ "createdYear": [ 1966 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Raśmibandha." ], @@ -10675,88 +10789,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTN 82-2402", + "urn:barcode:33433011745118" + ], + "physicalLocation": [ + "*OKTN 82-2402" + ], + "shelfMark_sort": "a*OKTN 82-002402", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011745118" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTN 82-2402", - "urn:barcode:33433011745118" + "shelfMark": [ + "*OKTN 82-2402" ], + "uri": "i10000030", "identifierV2": [ { - "value": "*OKTN 82-2402", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTN 82-2402" }, { - "value": "33433011745118", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011745118" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011745118" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTN 82-2402" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKTN 82-2402" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTN 82-002402", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000030" + ] }, "sort": [ null @@ -10811,6 +10925,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Urdū kī pahlī sīṛhī; jadīd uslūb ʻāhil mabādī." ], @@ -10948,88 +11065,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTX 82-2414", + "urn:barcode:33433004672246" + ], + "physicalLocation": [ + "*OKTX 82-2414" + ], + "shelfMark_sort": "a*OKTX 82-002414", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433004672246" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTX 82-2414", - "urn:barcode:33433004672246" + "shelfMark": [ + "*OKTX 82-2414" ], + "uri": "i10000031", "identifierV2": [ { - "value": "*OKTX 82-2414", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTX 82-2414" }, { - "value": "33433004672246", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433004672246" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433004672246" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTX 82-2414" + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKTX 82-2414" - ], - "shelfMark_sort": "a*OKTX 82-002414", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000031" + ] }, "sort": [ null @@ -11095,12 +11212,15 @@ "createdYear": [ 1965 ], - "title": [ - "Kāvyālaṅkāra. Aṅśuprabhāʼʼkhya-Hindīvyākhyā-sahita." + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Kāvyālaṅkāra. Aṅśuprabhāʼʼkhya-Hindīvyākhyā-sahita." + ], "shelfMark": [ "*OKP 82-2410" ], @@ -11116,12 +11236,12 @@ "idLccn": [ "sa 66001274" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Hindī Anusandhāna Parishad granthamālā, 33" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Namisādhu, active 1068.", "Chaudhary, S. D." @@ -11132,9 +11252,6 @@ "dateStartYear": [ 1965 ], - "idOclc": [ - "NYPG001000041-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -11161,6 +11278,9 @@ "value": "(WaOLN)nyp0200082" } ], + "idOclc": [ + "NYPG001000041-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -11243,88 +11363,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKP 82-2410", + "urn:barcode:33433058153028" + ], + "physicalLocation": [ + "*OKP 82-2410" + ], + "shelfMark_sort": "a*OKP 82-002410", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058153028" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKP 82-2410", - "urn:barcode:33433058153028" + "shelfMark": [ + "*OKP 82-2410" ], + "uri": "i13783794", "identifierV2": [ { - "value": "*OKP 82-2410", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKP 82-2410" }, { - "value": "33433058153028", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058153028" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058153028" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKP 82-2410" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKP 82-2410" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKP 82-002410", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783794" + ] }, "sort": [ null @@ -11381,12 +11501,15 @@ "createdYear": [ 1964 ], - "title": [ - "Padamāvata-sāra. Jāyasi-kṛta Padamāvata kā anuśīlana aura sankshepa." + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Padamāvata-sāra. Jāyasi-kṛta Padamāvata kā anuśīlana aura sankshepa." + ], "shelfMark": [ "*OKTM 82-2424" ], @@ -11414,9 +11537,6 @@ "dateStartYear": [ 1964 ], - "idOclc": [ - "NYPG001000042-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -11443,6 +11563,9 @@ "value": "(WaOLN)nyp0200084" } ], + "idOclc": [ + "NYPG001000042-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -11522,88 +11645,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTM 82-2424", + "urn:barcode:33433011108135" + ], + "physicalLocation": [ + "*OKTM 82-2424" + ], + "shelfMark_sort": "a*OKTM 82-002424", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011108135" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTM 82-2424", - "urn:barcode:33433011108135" + "shelfMark": [ + "*OKTM 82-2424" ], + "uri": "i10000032", "identifierV2": [ { - "value": "*OKTM 82-2424", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTM 82-2424" }, { - "value": "33433011108135", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011108135" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011108135" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTM 82-2424" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKTM 82-2424" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTM 82-002424", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000032" + ] }, "sort": [ null @@ -11653,6 +11776,9 @@ "createdYear": [ 1965 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Āṭha ekāṅkī." ], @@ -11790,31 +11916,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTN 82-2423", + "urn:barcode:33433011745134" + ], + "physicalLocation": [ + "*OKTN 82-2423" + ], + "shelfMark_sort": "a*OKTN 82-002423", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OKTN 82-2423" ], - "holdingLocation": [ + "uri": "i10000033", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OKTN 82-2423" + }, + { + "type": "bf:Barcode", + "value": "33433011745134" } ], "holdingLocation_packed": [ @@ -11823,55 +11968,36 @@ "idBarcode": [ "33433011745134" ], - "identifier": [ - "urn:shelfmark:*OKTN 82-2423", - "urn:barcode:33433011745134" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OKTN 82-2423", - "type": "bf:ShelfMark" - }, - { - "value": "33433011745134", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OKTN 82-2423" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKTN 82-2423" - ], - "shelfMark_sort": "a*OKTN 82-002423", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000033" + ] }, "sort": [ null @@ -11923,6 +12049,9 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Bāghinī." ], @@ -12057,88 +12186,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKV 82-2420", + "urn:barcode:33433011167040" + ], + "physicalLocation": [ + "*OKV 82-2420" + ], + "shelfMark_sort": "a*OKV 82-002420", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011167040" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKV 82-2420", - "urn:barcode:33433011167040" + "shelfMark": [ + "*OKV 82-2420" ], + "uri": "i10000034", "identifierV2": [ { - "value": "*OKV 82-2420", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKV 82-2420" }, { - "value": "33433011167040", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011167040" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011167040" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKV 82-2420" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKV 82-2420" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKV 82-002420", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000034" + ] }, "sort": [ null @@ -12204,6 +12333,9 @@ "createdYear": [ 1965 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Mardumʹshināsī-i Īrān" ], @@ -12336,88 +12468,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OMK 82-2419", + "urn:barcode:33433013106327" + ], + "physicalLocation": [ + "*OMK 82-2419" + ], + "shelfMark_sort": "a*OMK 82-002419", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433013106327" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OMK 82-2419", - "urn:barcode:33433013106327" + "shelfMark": [ + "*OMK 82-2419" ], + "uri": "i10000036", "identifierV2": [ { - "value": "*OMK 82-2419", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OMK 82-2419" }, { - "value": "33433013106327", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433013106327" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013106327" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OMK 82-2419" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OMK 82-2419" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OMK 82-002419", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000036" + ] }, "sort": [ null @@ -12473,6 +12605,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Kuṟaḷ neṟiyum Citta neṟiyum; ārāyccik kaṭṭurai." ], @@ -12614,31 +12749,50 @@ }, "_score": null, "_source": { - "accessMessage": [ + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "identifier": [ + "urn:shelfmark:*OLB 82-5144", + "urn:barcode:33433001838980" ], - "catalogItemType": [ + "physicalLocation": [ + "*OLB 82-5144" + ], + "shelfMark_sort": "a*OLB 82-005144", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "status_packed": [ + "status:a||Available" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLB 82-5144" + ], + "uri": "i10000037", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLB 82-5144" + }, + { + "type": "bf:Barcode", + "value": "33433001838980" } ], "holdingLocation_packed": [ @@ -12647,55 +12801,36 @@ "idBarcode": [ "33433001838980" ], - "identifier": [ - "urn:shelfmark:*OLB 82-5144", - "urn:barcode:33433001838980" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLB 82-5144", - "type": "bf:ShelfMark" - }, - { - "value": "33433001838980", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLB 82-5144" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLB 82-5144" - ], - "shelfMark_sort": "a*OLB 82-005144", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000037" + ] }, "sort": [ null @@ -12762,6 +12897,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Maṣādir tārīkh al-Yaman fī al-ʻaṣr al-Islāmī" ], @@ -12905,88 +13043,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFK 82-5143", + "urn:barcode:33433005548338" + ], + "physicalLocation": [ + "*OFK 82-5143" + ], + "shelfMark_sort": "a*OFK 82-005143", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433005548338" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFK 82-5143", - "urn:barcode:33433005548338" + "shelfMark": [ + "*OFK 82-5143" ], + "uri": "i10000038", "identifierV2": [ { - "value": "*OFK 82-5143", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFK 82-5143" }, { - "value": "33433005548338", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433005548338" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005548338" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFK 82-5143" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFK 82-5143" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFK 82-005143", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000038" + ] }, "sort": [ null @@ -13038,6 +13176,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Anti Laylāy" ], @@ -13172,88 +13313,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFA 82-5142", + "urn:barcode:33433002000689" + ], + "physicalLocation": [ + "*OFA 82-5142" + ], + "shelfMark_sort": "a*OFA 82-005142", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002000689" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFA 82-5142", - "urn:barcode:33433002000689" + "shelfMark": [ + "*OFA 82-5142" ], + "uri": "i10000039", "identifierV2": [ { - "value": "*OFA 82-5142", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFA 82-5142" }, { - "value": "33433002000689", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002000689" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002000689" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFA 82-5142" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFA 82-5142" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFA 82-005142", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000039" + ] }, "sort": [ null @@ -13316,6 +13457,9 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Ibn Rashīq wa-naqd al-shiʻr : dirāsah naqdīyah taḥlīlīyah muqāranah" ], @@ -13454,31 +13598,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*OFS 82-5141", + "urn:barcode:33433014514545" + ], + "physicalLocation": [ + "*OFS 82-5141" + ], + "shelfMark_sort": "a*OFS 82-005141", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Text" + "shelfMark": [ + "*OFS 82-5141" ], - "holdingLocation": [ + "uri": "i10000040", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OFS 82-5141" + }, + { + "type": "bf:Barcode", + "value": "33433014514545" } ], "holdingLocation_packed": [ @@ -13487,55 +13650,36 @@ "idBarcode": [ "33433014514545" ], - "identifier": [ - "urn:shelfmark:*OFS 82-5141", - "urn:barcode:33433014514545" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OFS 82-5141", - "type": "bf:ShelfMark" - }, - { - "value": "33433014514545", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OFS 82-5141" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OFS 82-5141" - ], - "shelfMark_sort": "a*OFS 82-005141", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000040" + ] }, "sort": [ null @@ -13596,6 +13740,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Arāmīyūn fī Miṣr, mundhu bidāyat ẓuhūrihim fī al-qarn al-sābiʻ Q.M. ḥattá ikhtifāʼihim fī al-qarn al-thānī Q.M." ], @@ -13733,88 +13880,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFP 82-5140", + "urn:barcode:33433001937568" + ], + "physicalLocation": [ + "*OFP 82-5140" + ], + "shelfMark_sort": "a*OFP 82-005140", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001937568" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFP 82-5140", - "urn:barcode:33433001937568" + "shelfMark": [ + "*OFP 82-5140" ], + "uri": "i10000041", "identifierV2": [ { - "value": "*OFP 82-5140", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFP 82-5140" }, { - "value": "33433001937568", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001937568" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001937568" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFP 82-5140" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFP 82-5140" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFP 82-005140", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000041" + ] }, "sort": [ null @@ -13861,6 +14008,9 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Dīwān Muḥammad al-ʻĪd Muḥammad ʻAlī Khalīfah." ], @@ -13998,88 +14148,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFA 82-5137", + "urn:barcode:33433002000671" + ], + "physicalLocation": [ + "*OFA 82-5137" + ], + "shelfMark_sort": "a*OFA 82-005137", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002000671" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFA 82-5137", - "urn:barcode:33433002000671" + "shelfMark": [ + "*OFA 82-5137" ], + "uri": "i10000042", "identifierV2": [ { - "value": "*OFA 82-5137", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFA 82-5137" }, { - "value": "33433002000671", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002000671" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002000671" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFA 82-5137" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFA 82-5137" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFA 82-005137", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000042" + ] }, "sort": [ null diff --git a/test/fixtures/query-707e82a5cfda241bcffe99ea0e972a10.json b/test/fixtures/query-707e82a5cfda241bcffe99ea0e972a10.json index 9be74391..5fd606b3 100644 --- a/test/fixtures/query-707e82a5cfda241bcffe99ea0e972a10.json +++ b/test/fixtures/query-707e82a5cfda241bcffe99ea0e972a10.json @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.631155, + "max_score": 15.73737, "hits": [ { "_index": "resources-2024-10-22", "_id": "b14937001", - "_score": 15.631155, + "_score": 15.73737, "_source": { "note": [ { @@ -60,6 +60,10 @@ "dateEndString": [ "1uuu" ], + "buildingLocationIds": [ + "rc", + "ma" + ], "title": [ "Morgenblatt für gebildete leser." ], @@ -538,21 +542,23 @@ }, "_score": 0, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", + "urn:barcode:33433088646033" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -562,76 +568,74 @@ "lte": "1933" } ], - "enumerationChronology": [ - "Jahrg. Mar.-May 1933" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1933" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + ], + "uri": "i28309666", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + }, + { + "type": "bf:Barcode", + "value": "33433088646033" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], "idBarcode": [ "33433088646033" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", - "urn:barcode:33433088646033" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", - "type": "bf:ShelfMark" - }, - { - "value": "33433088646033", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309666" + ] } }, { @@ -643,21 +647,23 @@ }, "_score": 0, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "urn:barcode:33433096425198" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -667,76 +673,74 @@ "lte": "1855" } ], - "enumerationChronology": [ - "Jahrg. 49 (1855)" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1855" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "uri": "i28309648", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + }, + { + "type": "bf:Barcode", + "value": "33433096425198" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "Jahrg. 49 (1855)" + ], "idBarcode": [ "33433096425198" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", - "urn:barcode:33433096425198" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", - "type": "bf:ShelfMark" - }, - { - "value": "33433096425198", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309648" + ] } }, { @@ -748,21 +752,23 @@ }, "_score": 0, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "urn:barcode:33433088646041" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -772,76 +778,74 @@ "lte": "1861" } ], - "enumerationChronology": [ - "Jahrg. 1861" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1861" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "uri": "i28309668", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + }, + { + "type": "bf:Barcode", + "value": "33433088646041" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "Jahrg. 1861" + ], "idBarcode": [ "33433088646041" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", - "urn:barcode:33433088646041" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", - "type": "bf:ShelfMark" - }, - { - "value": "33433088646041", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309668" + ] } } ] @@ -864,21 +868,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", + "urn:barcode:33433088646033" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -888,76 +894,74 @@ "lte": "1933" } ], - "enumerationChronology": [ - "Jahrg. Mar.-May 1933" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1933" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + ], + "uri": "i28309666", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + }, + { + "type": "bf:Barcode", + "value": "33433088646033" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], "idBarcode": [ "33433088646033" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", - "urn:barcode:33433088646033" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", - "type": "bf:ShelfMark" - }, - { - "value": "33433088646033", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309666" + ] }, "sort": [ " -1933" @@ -972,21 +976,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "urn:barcode:33433088646041" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -996,76 +1002,74 @@ "lte": "1861" } ], - "enumerationChronology": [ - "Jahrg. 1861" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1861" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "uri": "i28309668", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + }, + { + "type": "bf:Barcode", + "value": "33433088646041" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "Jahrg. 1861" + ], "idBarcode": [ "33433088646041" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", - "urn:barcode:33433088646041" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", - "type": "bf:ShelfMark" - }, - { - "value": "33433088646041", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309668" + ] }, "sort": [ " -1861" @@ -1080,21 +1084,20 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "urn:barcode:33433097964930" ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -1104,67 +1107,68 @@ "lte": "1860" } ], - "enumerationChronology": [ - "Jahrg. 1860" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1860" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + ], + "uri": "i28543800", + "identifierV2": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + }, + { + "type": "bf:Barcode", + "value": "33433097964930" } ], "holdingLocation_packed": [ "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], + "enumerationChronology": [ + "Jahrg. 1860" + ], "idBarcode": [ "33433097964930" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", - "urn:barcode:33433097964930" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433097964930", - "type": "bf:Barcode" + "id": "catalogItemType:3", + "label": "serial" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28543800" + ] }, "sort": [ " -1860" @@ -1179,21 +1183,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "urn:barcode:33433096425198" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -1203,76 +1209,74 @@ "lte": "1855" } ], - "enumerationChronology": [ - "Jahrg. 49 (1855)" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1855" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "uri": "i28309648", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + }, + { + "type": "bf:Barcode", + "value": "33433096425198" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "Jahrg. 49 (1855)" + ], "idBarcode": [ "33433096425198" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", - "urn:barcode:33433096425198" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", - "type": "bf:ShelfMark" - }, - { - "value": "33433096425198", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309648" + ] }, "sort": [ " -1855" diff --git a/test/fixtures/query-779379fe87324b12ee6565a41852b7ab.json b/test/fixtures/query-779379fe87324b12ee6565a41852b7ab.json index 2c145f97..0f571360 100644 --- a/test/fixtures/query-779379fe87324b12ee6565a41852b7ab.json +++ b/test/fixtures/query-779379fe87324b12ee6565a41852b7ab.json @@ -1,5 +1,5 @@ { - "took": 13, + "took": 8, "timed_out": false, "_shards": { "total": 2, @@ -17,7 +17,7 @@ { "_index": "resources-2024-10-22", "_id": "b22144813", - "_score": 373.34692, + "_score": 376.24973, "_source": { "extent": [ "1234, [1] pages, x leaves : illustrations ;", @@ -46,6 +46,10 @@ "createdYear": [ 201 ], + "buildingLocationIds": [ + "ma", + "rc" + ], "parallelTitle": [ "‏כותר שאינו באותיות לטינית = зглавие руссий." ], @@ -739,7 +743,7 @@ ] }, "sort": [ - 373.34692, + 376.24973, "b22144813" ], "inner_hits": { @@ -760,97 +764,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v.1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:k||Check with staff" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "uri": "i37857771", + "identifierV2": [ { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + }, + { + "type": "bf:Barcode", + "value": "3333333333" } ], "holdingLocation_packed": [ "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" ], + "enumerationChronology": [ + "v.1" + ], "idBarcode": [ "3333333333" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ false ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "status": [ { "id": "status:k", "label": "Check with staff" } ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i37857771" + ] }, "sort": [ " 1-" @@ -865,88 +869,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1103", + "label": "Dorot Jewish Division" } ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" ], - "enumerationChronology": [ - "nothing" + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "catalogItemType_packed": [ + "catalogItemType:3||serial" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmf2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "44455533322211" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" ], + "uri": "i37857772", "identifierV2": [ { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" }, { - "value": "44455533322211", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "44455533322211" } ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "enumerationChronology": [ + "nothing" + ], + "idBarcode": [ + "44455533322211" ], "owner_packed": [ "orgs:1103||Dorot Jewish Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ true ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" + ] }, "sort": [ null diff --git a/test/fixtures/query-7ea3d25bc2ad25798190ecc0c6daeb25.json b/test/fixtures/query-7ea3d25bc2ad25798190ecc0c6daeb25.json index f4943433..146c271c 100644 --- a/test/fixtures/query-7ea3d25bc2ad25798190ecc0c6daeb25.json +++ b/test/fixtures/query-7ea3d25bc2ad25798190ecc0c6daeb25.json @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.631159, + "max_score": 15.782547, "hits": [ { "_index": "resources-2024-10-22", "_id": "b10015541", - "_score": 15.631159, + "_score": 15.782547, "_source": { "extent": [ "v. : ill. ;" @@ -63,6 +63,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "A history and genealogy of the Pritchett, Rimmer, Jacobs, Hamilton, Eldridge, Etheridge, Smith, Brown, and Davidson families from North Carolina, Tennessee, Illinois, Missouri, and Kansas in the early 1800s to 1900s" ], @@ -196,91 +199,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:APV (Pritchett) 87-2820 v. 2", + "urn:barcode:33433065651741" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Pritchett) 87-2820" ], + "shelfMark_sort": "aAPV (Pritchett) 87-2820 v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "APV (Pritchett) 87-2820 v. 2" + ], + "uri": "i14747616", + "identifierV2": [ { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" + "type": "bf:ShelfMark", + "value": "APV (Pritchett) 87-2820 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433065651741" } ], "holdingLocation_packed": [ "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433065651741" ], - "identifier": [ - "urn:shelfmark:APV (Pritchett) 87-2820 v. 2", - "urn:barcode:33433065651741" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "APV (Pritchett) 87-2820 v. 2", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433065651741", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "APV (Pritchett) 87-2820" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "APV (Pritchett) 87-2820 v. 2" + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } ], - "shelfMark_sort": "aAPV (Pritchett) 87-2820 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i14747616" + ] }, "sort": [ " 2-" @@ -295,91 +298,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:APV (Pritchett) 87-2820 v. 1", + "urn:barcode:33433060936147" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "APV (Pritchett) 87-2820" + ], + "shelfMark_sort": "aAPV (Pritchett) 87-2820 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "APV (Pritchett) 87-2820 v. 1" + ], + "uri": "i35838326", + "identifierV2": [ { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" + "type": "bf:ShelfMark", + "value": "APV (Pritchett) 87-2820 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433060936147" } ], "holdingLocation_packed": [ "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433060936147" ], - "identifier": [ - "urn:shelfmark:APV (Pritchett) 87-2820 v. 1", - "urn:barcode:33433060936147" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "APV (Pritchett) 87-2820 v. 1", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433060936147", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "APV (Pritchett) 87-2820" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "APV (Pritchett) 87-2820 v. 1" + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } ], - "shelfMark_sort": "aAPV (Pritchett) 87-2820 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i35838326" + ] }, "sort": [ " 1-" diff --git a/test/fixtures/query-800804c33f3dd64463efc65de4debe17.json b/test/fixtures/query-800804c33f3dd64463efc65de4debe17.json index e6c0d58c..a1d8f851 100644 --- a/test/fixtures/query-800804c33f3dd64463efc65de4debe17.json +++ b/test/fixtures/query-800804c33f3dd64463efc65de4debe17.json @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.631159, + "max_score": 15.782547, "hits": [ { "_index": "resources-2024-10-22", "_id": "b10628074", - "_score": 15.631159, + "_score": 15.782547, "_source": { "extent": [ "387 p. ;" @@ -56,6 +56,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Plenty and want : a social history of diet in England from 1815 to the present day / John Burnett. Rev. ed." ], @@ -212,88 +215,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JLD 80-944", + "urn:barcode:33433080108636" + ], + "physicalLocation": [ + "JLD 80-944" + ], + "shelfMark_sort": "aJLD 80-000944", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433080108636" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JLD 80-944", - "urn:barcode:33433080108636" + "shelfMark": [ + "JLD 80-944" ], + "uri": "i15761885", "identifierV2": [ { - "value": "JLD 80-944", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JLD 80-944" }, { - "value": "33433080108636", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433080108636" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433080108636" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "JLD 80-944" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "JLD 80-944" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aJLD 80-000944", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15761885" + ] }, "sort": [ null diff --git a/test/fixtures/query-83c45ae81dc3330eca3e0e80b07afae1.json b/test/fixtures/query-83c45ae81dc3330eca3e0e80b07afae1.json index fd811c2b..2b25c9e0 100644 --- a/test/fixtures/query-83c45ae81dc3330eca3e0e80b07afae1.json +++ b/test/fixtures/query-83c45ae81dc3330eca3e0e80b07afae1.json @@ -1,5 +1,5 @@ { - "took": 212, + "took": 242, "timed_out": false, "_shards": { "total": 2, @@ -68,12 +68,15 @@ "createdYear": [ 1888 ], - "title": [ - "Hungarian melody and dance" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Hungarian melody and dance" + ], "shelfMark": [ "JPB 83-155 no. 189" ], @@ -99,9 +102,6 @@ "dateStartYear": [ 1888 ], - "idOclc": [ - "NYPG001000029-C" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -124,6 +124,9 @@ "value": "(WaOLN)nyp0200060" } ], + "idOclc": [ + "NYPG001000029-C" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -168,16 +171,16 @@ "Hungarian melody and dance / Matus ; arranged by H.H.H. Mazurka caprice / Henry Holden Huss." ], "uri": "b10000061", + "titleAlt": [ + "Hungarian song and dance.", + "Mazurka caprice." + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Hungarian song and dance.", - "Mazurka caprice." - ], "dimensions": [ "35 cm." ] @@ -204,82 +207,82 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], "accessMessage_packed": [ "accessMessage:u||Supervised use" ], - "catalogItemType": [ - { - "id": "catalogItemType:8", - "label": "manuscript music" - } + "identifier": [ + "urn:shelfmark:JPB 83-155 Box 20", + "urn:barcode:33433125409981" + ], + "physicalLocation": [ + "JPB 83-155" ], + "shelfMark_sort": "aJPB 83-155 box 000020", "catalogItemType_packed": [ "catalogItemType:8||manuscript music" ], - "enumerationChronology": [ - "Box 20" + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } ], - "formatLiteral": [ - "Notated music" + "status_packed": [ + "status:a||Available" ], - "holdingLocation": [ + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JPB 83-155 Box 20" + ], + "uri": "i40977483", + "identifierV2": [ { - "id": "loc:rcpm8", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JPB 83-155 Box 20" + }, + { + "type": "bf:Barcode", + "value": "33433125409981" } ], "holdingLocation_packed": [ "loc:rcpm8||Offsite" ], + "enumerationChronology": [ + "Box 20" + ], "idBarcode": [ "33433125409981" ], - "identifier": [ - "urn:shelfmark:JPB 83-155 Box 20", - "urn:barcode:33433125409981" + "requestable": [ + false ], - "identifierV2": [ - { - "value": "JPB 83-155 Box 20", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433125409981", - "type": "bf:Barcode" + "id": "catalogItemType:8", + "label": "manuscript music" } ], - "physicalLocation": [ - "JPB 83-155" + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm8", + "label": "Offsite" + } ], "recapCustomerCode": [ "NP" ], - "requestable": [ - false - ], - "shelfMark": [ - "JPB 83-155 Box 20" - ], - "shelfMark_sort": "aJPB 83-155 box 000020", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i40977483" + ] }, "sort": [ null @@ -334,15 +337,18 @@ "createdYear": [ 1862 ], + "buildingLocationIds": [ + "rc" + ], "dateEndString": [ "1953" ], - "title": [ - "For it's free : our native land" - ], "type": [ "nypl:Item" ], + "title": [ + "For it's free : our native land" + ], "shelfMark": [ "JPB 83-155 no. 190 " ], @@ -364,9 +370,6 @@ "dateStartYear": [ 1862 ], - "idOclc": [ - "NYPG001000030-C" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -389,6 +392,9 @@ "value": "(WaOLN)nyp0200062" } ], + "idOclc": [ + "NYPG001000030-C" + ], "popularity": 1, "dateEndYear": [ 1953 @@ -469,82 +475,82 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], "accessMessage_packed": [ "accessMessage:u||Supervised use" ], - "catalogItemType": [ - { - "id": "catalogItemType:8", - "label": "manuscript music" - } + "identifier": [ + "urn:shelfmark:JPB 83-155 Box 20", + "urn:barcode:33433125409981" ], + "physicalLocation": [ + "JPB 83-155" + ], + "shelfMark_sort": "aJPB 83-155 box 000020", "catalogItemType_packed": [ "catalogItemType:8||manuscript music" ], - "enumerationChronology": [ - "Box 20" + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } ], - "formatLiteral": [ - "Notated music" + "status_packed": [ + "status:a||Available" ], - "holdingLocation": [ + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JPB 83-155 Box 20" + ], + "uri": "i40977483", + "identifierV2": [ { - "id": "loc:rcpm8", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JPB 83-155 Box 20" + }, + { + "type": "bf:Barcode", + "value": "33433125409981" } ], "holdingLocation_packed": [ "loc:rcpm8||Offsite" ], + "enumerationChronology": [ + "Box 20" + ], "idBarcode": [ "33433125409981" ], - "identifier": [ - "urn:shelfmark:JPB 83-155 Box 20", - "urn:barcode:33433125409981" + "requestable": [ + false ], - "identifierV2": [ - { - "value": "JPB 83-155 Box 20", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433125409981", - "type": "bf:Barcode" + "id": "catalogItemType:8", + "label": "manuscript music" } ], - "physicalLocation": [ - "JPB 83-155" + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm8", + "label": "Offsite" + } ], "recapCustomerCode": [ "NP" ], - "requestable": [ - false - ], - "shelfMark": [ - "JPB 83-155 Box 20" - ], - "shelfMark_sort": "aJPB 83-155 box 000020", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i40977483" + ] }, "sort": [ null @@ -603,6 +609,9 @@ "dateEndString": [ "1928" ], + "buildingLocationIds": [ + "pa" + ], "title": [ "The treasure of the wise man" ], @@ -734,14 +743,49 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "identifier": [ + "urn:shelfmark:JPB 83-480" + ], + "physicalLocation": [ + "JPB 83-480" + ], + "shelfMark_sort": "aJPB 83-000480", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], "accessMessage": [ { "id": "accessMessage:u", "label": "Supervised use" } ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" + "status_packed": [ + "status:a||Available" + ], + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Gilbert%2C+Henry+F.+B.+%28Henry+Franklin+Belknap%29%2C+1868-1928.&CallNumber=JPB+83-480&Date=1868&Form=30&Genre=book+non-circ&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10000071&ItemISxN=i147464018&ItemPublisher=%5B19--%3F%5D&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b10000071x&Site=LPAMR&Title=The+treasure+of+the+wise+man" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JPB 83-480" + ], + "uri": "i14746401", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JPB 83-480" + } + ], + "holdingLocation_packed": [ + "loc:pam38||Performing Arts Research Collections - Music" + ], + "requestable": [ + false ], "catalogItemType": [ { @@ -749,9 +793,6 @@ "label": "book non-circ" } ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" - ], "formatLiteral": [ "Notated music" ], @@ -761,43 +802,11 @@ "label": "Performing Arts Research Collections - Music" } ], - "holdingLocation_packed": [ - "loc:pam38||Performing Arts Research Collections - Music" - ], - "identifier": [ - "urn:shelfmark:JPB 83-480" - ], - "identifierV2": [ + "status": [ { - "value": "JPB 83-480", - "type": "bf:ShelfMark" + "id": "status:a", + "label": "Available" } - ], - "physicalLocation": [ - "JPB 83-480" - ], - "requestable": [ - false - ], - "shelfMark": [ - "JPB 83-480" - ], - "shelfMark_sort": "aJPB 83-000480", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14746401", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Gilbert%2C+Henry+F.+B.+%28Henry+Franklin+Belknap%29%2C+1868-1928.&CallNumber=JPB+83-480&Date=1868&Form=30&Genre=book+non-circ&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10000071&ItemISxN=i147464018&ItemPublisher=%5B19--%3F%5D&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b10000071x&Site=LPAMR&Title=The+treasure+of+the+wise+man" ] }, "sort": [ @@ -867,6 +876,9 @@ "createdYear": [ 1894 ], + "buildingLocationIds": [ + "pa" + ], "title": [ "Blaublümlein : rheinisches Volkslied" ], @@ -997,70 +1009,70 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "identifier": [ + "urn:shelfmark:JPB 83-483" + ], + "physicalLocation": [ + "JPB 83-483" + ], + "shelfMark_sort": "aJPB 83-000483", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], "accessMessage": [ { "id": "accessMessage:u", "label": "Supervised use" } ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" + "status_packed": [ + "status:a||Available" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Goldmark%2C+Rubin%2C+1872-1936.&CallNumber=JPB+83-483&Date=1894&Form=30&Genre=book+non-circ&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10000077&ItemISxN=i147464043&ItemPublisher=1894+May.&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b100000770&Site=LPAMR&Title=Blaubl%C3%BCmlein+%3A+rheinisches+Volkslied" ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Notated music" + "shelfMark": [ + "JPB 83-483" ], - "holdingLocation": [ + "uri": "i14746404", + "identifierV2": [ { - "id": "loc:pam38", - "label": "Performing Arts Research Collections - Music" + "type": "bf:ShelfMark", + "value": "JPB 83-483" } ], "holdingLocation_packed": [ "loc:pam38||Performing Arts Research Collections - Music" ], - "identifier": [ - "urn:shelfmark:JPB 83-483" + "requestable": [ + false ], - "identifierV2": [ + "catalogItemType": [ { - "value": "JPB 83-483", - "type": "bf:ShelfMark" + "id": "catalogItemType:2", + "label": "book non-circ" } ], - "physicalLocation": [ - "JPB 83-483" - ], - "requestable": [ - false + "formatLiteral": [ + "Notated music" ], - "shelfMark": [ - "JPB 83-483" + "holdingLocation": [ + { + "id": "loc:pam38", + "label": "Performing Arts Research Collections - Music" + } ], - "shelfMark_sort": "aJPB 83-000483", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14746404", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Goldmark%2C+Rubin%2C+1872-1936.&CallNumber=JPB+83-483&Date=1894&Form=30&Genre=book+non-circ&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10000077&ItemISxN=i147464043&ItemPublisher=1894+May.&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b100000770&Site=LPAMR&Title=Blaubl%C3%BCmlein+%3A+rheinisches+Volkslied" ] }, "sort": [ @@ -1123,6 +1135,9 @@ "dateEndString": [ "1936" ], + "buildingLocationIds": [ + "pa" + ], "title": [ "The forest has its birds of song" ], @@ -1250,70 +1265,70 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "identifier": [ + "urn:shelfmark:JPB 83-484" + ], + "physicalLocation": [ + "JPB 83-484" + ], + "shelfMark_sort": "aJPB 83-000484", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], "accessMessage": [ { "id": "accessMessage:u", "label": "Supervised use" } ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" + "status_packed": [ + "status:a||Available" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Goldmark%2C+Rubin%2C+1872-1936.&CallNumber=JPB+83-484&Date=1872&Form=30&Genre=book+non-circ&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10000079&ItemISxN=i147464055&ItemPublisher=%5B18--%3F%5D&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b100000794&Site=LPAMR&Title=The+forest+has+its+birds+of+song" ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Notated music" + "shelfMark": [ + "JPB 83-484" ], - "holdingLocation": [ + "uri": "i14746405", + "identifierV2": [ { - "id": "loc:pam38", - "label": "Performing Arts Research Collections - Music" + "type": "bf:ShelfMark", + "value": "JPB 83-484" } ], "holdingLocation_packed": [ "loc:pam38||Performing Arts Research Collections - Music" ], - "identifier": [ - "urn:shelfmark:JPB 83-484" + "requestable": [ + false ], - "identifierV2": [ + "catalogItemType": [ { - "value": "JPB 83-484", - "type": "bf:ShelfMark" + "id": "catalogItemType:2", + "label": "book non-circ" } ], - "physicalLocation": [ - "JPB 83-484" - ], - "requestable": [ - false + "formatLiteral": [ + "Notated music" ], - "shelfMark": [ - "JPB 83-484" + "holdingLocation": [ + { + "id": "loc:pam38", + "label": "Performing Arts Research Collections - Music" + } ], - "shelfMark_sort": "aJPB 83-000484", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14746405", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Goldmark%2C+Rubin%2C+1872-1936.&CallNumber=JPB+83-484&Date=1872&Form=30&Genre=book+non-circ&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10000079&ItemISxN=i147464055&ItemPublisher=%5B18--%3F%5D&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b100000794&Site=LPAMR&Title=The+forest+has+its+birds+of+song" ] }, "sort": [ @@ -1374,6 +1389,9 @@ "createdYear": [ 1890 ], + "buildingLocationIds": [ + "pa" + ], "title": [ "Slumber song : violin, voice, and pianoforte" ], @@ -1498,70 +1516,70 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:u||Supervised use" + ], + "identifier": [ + "urn:shelfmark:JPB 83-488" + ], + "physicalLocation": [ + "JPB 83-488" + ], + "shelfMark_sort": "aJPB 83-000488", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], "accessMessage": [ { "id": "accessMessage:u", "label": "Supervised use" } ], - "accessMessage_packed": [ - "accessMessage:u||Supervised use" + "status_packed": [ + "status:a||Available" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Gow%2C+George+Coleman%2C+1860-1938.&CallNumber=JPB+83-488&Date=1890&Form=30&Genre=book+non-circ&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10000084&ItemISxN=i147464080&ItemPublisher=1890+Mar.+10.&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b100000848&Site=LPAMR&Title=Slumber+song+%3A+violin%2C+voice%2C+and+pianoforte" ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Notated music" + "shelfMark": [ + "JPB 83-488" ], - "holdingLocation": [ + "uri": "i14746408", + "identifierV2": [ { - "id": "loc:pam38", - "label": "Performing Arts Research Collections - Music" + "type": "bf:ShelfMark", + "value": "JPB 83-488" } ], "holdingLocation_packed": [ "loc:pam38||Performing Arts Research Collections - Music" ], - "identifier": [ - "urn:shelfmark:JPB 83-488" + "requestable": [ + false ], - "identifierV2": [ + "catalogItemType": [ { - "value": "JPB 83-488", - "type": "bf:ShelfMark" + "id": "catalogItemType:2", + "label": "book non-circ" } ], - "physicalLocation": [ - "JPB 83-488" - ], - "requestable": [ - false + "formatLiteral": [ + "Notated music" ], - "shelfMark": [ - "JPB 83-488" + "holdingLocation": [ + { + "id": "loc:pam38", + "label": "Performing Arts Research Collections - Music" + } ], - "shelfMark_sort": "aJPB 83-000488", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14746408", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Gow%2C+George+Coleman%2C+1860-1938.&CallNumber=JPB+83-488&Date=1890&Form=30&Genre=book+non-circ&ItemInfo1=Supervised+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db10000084&ItemISxN=i147464080&ItemPublisher=1890+Mar.+10.&Location=Performing+Arts+Music+and+Recorded+Sound+Division&ReferenceNumber=b100000848&Site=LPAMR&Title=Slumber+song+%3A+violin%2C+voice%2C+and+pianoforte" ] }, "sort": [ @@ -1627,6 +1645,9 @@ "dateEndString": [ "1826" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Maʼā̲sir-i sulṭānīyah, tārīkh-i janǵhā-yi Īrān va Rūs." ], @@ -1772,88 +1793,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OMZ 82-4274", + "urn:barcode:33433014539161" + ], + "physicalLocation": [ + "*OMZ 82-4274" + ], + "shelfMark_sort": "a*OMZ 82-004274", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433014539161" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OMZ 82-4274", - "urn:barcode:33433014539161" + "shelfMark": [ + "*OMZ 82-4274" ], + "uri": "i10942064", "identifierV2": [ { - "value": "*OMZ 82-4274", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OMZ 82-4274" }, { - "value": "33433014539161", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433014539161" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014539161" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OMZ 82-4274" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OMZ 82-4274" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OMZ 82-004274", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942064" + ] }, "sort": [ null @@ -1912,6 +1933,9 @@ "dateEndString": [ "1880" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Kitāb-i mustaṭāb-i ganj-i dānish" ], @@ -2044,79 +2068,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } + "identifier": [ + "urn:shelfmark:*ONA+ 82-2677 ", + "urn:barcode:33433059840763" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*ONA+ 82-2677 " ], + "shelfMark_sort": "a*ONA+ 82-2677 ", "catalogItemType_packed": [ "catalogItemType:32||google project, book" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433059840763" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*ONA+ 82-2677 ", - "urn:barcode:33433059840763" + "shelfMark": [ + "*ONA+ 82-2677 " ], + "uri": "i13783848", "identifierV2": [ { - "value": "*ONA+ 82-2677 ", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*ONA+ 82-2677 " }, { - "value": "33433059840763", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433059840763" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*ONA+ 82-2677 " + "idBarcode": [ + "33433059840763" ], "requestable": [ true ], - "shelfMark": [ - "*ONA+ 82-2677 " + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*ONA+ 82-2677 ", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783848" + ] }, "sort": [ null @@ -2163,6 +2187,9 @@ "createdYear": [ 1891 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Üks öö tissa jöe peal" ], @@ -2284,100 +2311,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*Z-3414 no. 1-16", + "urn:barcode:33433107825220" + ], + "physicalLocation": [ + "*Z-3414" + ], + "shelfMark_sort": "a*Z-3414 no. 000001-16", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "enumerationChronology": [ - "no. 1-16" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*Z-3414 no. 1-16" + ], + "uri": "i30112243", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*Z-3414 no. 1-16" + }, + { + "type": "bf:Barcode", + "value": "33433107825220" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "no. 1-16" + ], "idBarcode": [ "33433107825220" ], - "identifier": [ - "urn:shelfmark:*Z-3414 no. 1-16", - "urn:barcode:33433107825220" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*Z-3414 no. 1-16", - "type": "bf:ShelfMark" - }, - { - "value": "33433107825220", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*Z-3414" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*Z-3414 no. 1-16" - ], - "shelfMark_sort": "a*Z-3414 no. 000001-16", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 16 } - ], - "uri": "i30112243" + ] }, "sort": [ " 1-" @@ -2424,6 +2451,9 @@ "createdYear": [ 1874 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Kirjakandja tuike üks rutuline rööwlide käest päästaw sönum." ], @@ -2548,100 +2578,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], - "enumerationChronology": [ - "no. 1-16" + "identifier": [ + "urn:shelfmark:*Z-3414 no. 1-16", + "urn:barcode:33433107825220" + ], + "physicalLocation": [ + "*Z-3414" + ], + "shelfMark_sort": "a*Z-3414 no. 000001-16", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*Z-3414 no. 1-16" + ], + "uri": "i30112243", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*Z-3414 no. 1-16" + }, + { + "type": "bf:Barcode", + "value": "33433107825220" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "no. 1-16" + ], "idBarcode": [ "33433107825220" ], - "identifier": [ - "urn:shelfmark:*Z-3414 no. 1-16", - "urn:barcode:33433107825220" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*Z-3414 no. 1-16", - "type": "bf:ShelfMark" - }, - { - "value": "33433107825220", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*Z-3414" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*Z-3414 no. 1-16" - ], - "shelfMark_sort": "a*Z-3414 no. 000001-16", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 16 } - ], - "uri": "i30112243" + ] }, "sort": [ " 1-" @@ -2698,6 +2728,9 @@ "createdYear": [ 1889 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Official lawn tennis rules as adopted by the United States National Lawn Tennis Association, containing also the constitution and by-laws, list of officers and clubs in the association, cases and decisions, rules for umpires, and the Bagnal wild system of drawing, by James Dwight ..." ], @@ -2826,100 +2859,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*Z-3414 no. 1-16", + "urn:barcode:33433107825220" + ], + "physicalLocation": [ + "*Z-3414" + ], + "shelfMark_sort": "a*Z-3414 no. 000001-16", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "enumerationChronology": [ - "no. 1-16" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*Z-3414 no. 1-16" + ], + "uri": "i30112243", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*Z-3414 no. 1-16" + }, + { + "type": "bf:Barcode", + "value": "33433107825220" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "no. 1-16" + ], "idBarcode": [ "33433107825220" ], - "identifier": [ - "urn:shelfmark:*Z-3414 no. 1-16", - "urn:barcode:33433107825220" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*Z-3414 no. 1-16", - "type": "bf:ShelfMark" - }, - { - "value": "33433107825220", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*Z-3414" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*Z-3414 no. 1-16" - ], - "shelfMark_sort": "a*Z-3414 no. 000001-16", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 16 } - ], - "uri": "i30112243" + ] }, "sort": [ " 1-" @@ -2966,6 +2999,9 @@ "createdYear": [ 1891 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Les hymnes rohitas Livre XIII de l'Atharva-Véda" ], @@ -3092,91 +3128,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" + "identifier": [ + "urn:shelfmark:*ZO-180 11 misc oriental titles", + "urn:barcode:33433105673077" ], - "enumerationChronology": [ - "11 misc oriental titles" + "physicalLocation": [ + "*ZO-180" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "a*ZO-180 11 misc oriental titles", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433105673077" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*ZO-180 11 misc oriental titles", - "urn:barcode:33433105673077" + "shelfMark": [ + "*ZO-180 11 misc oriental titles" ], + "uri": "i30080033", "identifierV2": [ { - "value": "*ZO-180 11 misc oriental titles", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*ZO-180 11 misc oriental titles" }, { - "value": "33433105673077", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433105673077" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "enumerationChronology": [ + "11 misc oriental titles" ], - "physicalLocation": [ - "*ZO-180" + "idBarcode": [ + "33433105673077" ], - "recapCustomerCode": [ - "NA" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "*ZO-180 11 misc oriental titles" - ], - "shelfMark_sort": "a*ZO-180 11 misc oriental titles", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "uri": "i30080033" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -3229,6 +3265,9 @@ "createdYear": [ 1841 ], + "buildingLocationIds": [ + "pa" + ], "title": [ "A Biographical sketch of Jane Sloman, the celebrated pianiste" ], @@ -3350,14 +3389,46 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:shelfmark:*ZB-1040" + ], + "physicalLocation": [ + "*ZB-1040" + ], + "shelfMark_sort": "a*ZB-001040", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], "accessMessage": [ { "id": "accessMessage:1", "label": "Use in library" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZB-1040" + ], + "uri": "i17446753", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*ZB-1040" + } + ], + "holdingLocation_packed": [ + "loc:pam32||Performing Arts Research Collections - Music" + ], + "requestable": [ + false ], "catalogItemType": [ { @@ -3365,9 +3436,6 @@ "label": "microfilm service copy" } ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" - ], "formatLiteral": [ "Text" ], @@ -3377,41 +3445,12 @@ "label": "Performing Arts Research Collections - Music" } ], - "holdingLocation_packed": [ - "loc:pam32||Performing Arts Research Collections - Music" - ], - "identifier": [ - "urn:shelfmark:*ZB-1040" - ], - "identifierV2": [ - { - "value": "*ZB-1040", - "type": "bf:ShelfMark" - } - ], - "physicalLocation": [ - "*ZB-1040" - ], - "requestable": [ - false - ], - "shelfMark": [ - "*ZB-1040" - ], - "shelfMark_sort": "a*ZB-001040", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17446753" + ] }, "sort": [ null @@ -3468,6 +3507,9 @@ "createdYear": [ 1891 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Egypt under the Pharaohs a history derived entirely from the monuments." ], @@ -3605,91 +3647,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*ZO-185 5 misc oriental titles", + "urn:barcode:33433105673168" + ], + "physicalLocation": [ + "*ZO-185" + ], + "shelfMark_sort": "a*ZO-185 5 misc oriental titles", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "enumerationChronology": [ - "5 misc oriental titles" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "formatLiteral": [ - "Text" + "status_packed": [ + "status:a||Available" ], - "holdingLocation": [ + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZO-185 5 misc oriental titles" + ], + "uri": "i30080739", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*ZO-185 5 misc oriental titles" + }, + { + "type": "bf:Barcode", + "value": "33433105673168" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "5 misc oriental titles" + ], "idBarcode": [ "33433105673168" ], - "identifier": [ - "urn:shelfmark:*ZO-185 5 misc oriental titles", - "urn:barcode:33433105673168" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*ZO-185 5 misc oriental titles", - "type": "bf:ShelfMark" - }, - { - "value": "33433105673168", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*ZO-185" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*ZO-185 5 misc oriental titles" - ], - "shelfMark_sort": "a*ZO-185 5 misc oriental titles", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i30080739" + ] }, "sort": [ null @@ -3740,6 +3782,9 @@ "createdYear": [ 1854 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Discoveries in Chinese, or, The symbolism of the primitive characters of the Chinese system of writing As a contribution to philology and ethnology and a practical aid in the acquisition of the Chinese language" ], @@ -3881,91 +3926,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" + "identifier": [ + "urn:shelfmark:*ZO-185 5 misc oriental titles", + "urn:barcode:33433105673168" ], - "enumerationChronology": [ - "5 misc oriental titles" + "physicalLocation": [ + "*ZO-185" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "a*ZO-185 5 misc oriental titles", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433105673168" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*ZO-185 5 misc oriental titles", - "urn:barcode:33433105673168" + "shelfMark": [ + "*ZO-185 5 misc oriental titles" ], + "uri": "i30080739", "identifierV2": [ { - "value": "*ZO-185 5 misc oriental titles", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*ZO-185 5 misc oriental titles" }, { - "value": "33433105673168", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433105673168" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "enumerationChronology": [ + "5 misc oriental titles" ], - "physicalLocation": [ - "*ZO-185" + "idBarcode": [ + "33433105673168" ], - "recapCustomerCode": [ - "NA" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "*ZO-185 5 misc oriental titles" - ], - "shelfMark_sort": "a*ZO-185 5 misc oriental titles", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "uri": "i30080739" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -4018,6 +4063,9 @@ "createdYear": [ 1888 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "A rural and agricultural glossary for the N.-W. provinces and Oudh" ], @@ -4145,91 +4193,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*ZO-187 9 misc oriental titles", + "urn:barcode:33433105673309" + ], + "physicalLocation": [ + "*ZO-187" + ], + "shelfMark_sort": "a*ZO-187 9 misc oriental titles", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "enumerationChronology": [ - "9 misc oriental titles" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "formatLiteral": [ - "Text" + "status_packed": [ + "status:a||Available" ], - "holdingLocation": [ + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZO-187 9 misc oriental titles" + ], + "uri": "i30081049", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*ZO-187 9 misc oriental titles" + }, + { + "type": "bf:Barcode", + "value": "33433105673309" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "9 misc oriental titles" + ], "idBarcode": [ "33433105673309" ], - "identifier": [ - "urn:shelfmark:*ZO-187 9 misc oriental titles", - "urn:barcode:33433105673309" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*ZO-187 9 misc oriental titles", - "type": "bf:ShelfMark" - }, - { - "value": "33433105673309", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*ZO-187" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*ZO-187 9 misc oriental titles" - ], - "shelfMark_sort": "a*ZO-187 9 misc oriental titles", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i30081049" + ] }, "sort": [ null @@ -4293,6 +4341,9 @@ "dateEndString": [ "1884" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tārīkh-i Lāhaur" ], @@ -4425,88 +4476,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTY 82-4463", + "urn:barcode:33433011242603" + ], + "physicalLocation": [ + "*OKTY 82-4463" + ], + "shelfMark_sort": "a*OKTY 82-004463", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011242603" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTY 82-4463", - "urn:barcode:33433011242603" + "shelfMark": [ + "*OKTY 82-4463" ], + "uri": "i10000619", "identifierV2": [ { - "value": "*OKTY 82-4463", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTY 82-4463" }, { - "value": "33433011242603", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011242603" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011242603" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTY 82-4463" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKTY 82-4463" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTY 82-004463", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000619" + ] }, "sort": [ null @@ -4566,6 +4617,9 @@ "dateEndString": [ "1983" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Buḥūr al-ḥikmah" ], @@ -4692,27 +4746,73 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*ZO-243 11 Arabic titles", + "urn:barcode:33433105673531" + ], + "physicalLocation": [ + "*ZO-243" + ], + "shelfMark_sort": "a*ZO-243 11 Arabic titles", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status_packed": [ + "status:a||Available" ], - "catalogItemType": [ + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZO-243 11 Arabic titles" + ], + "uri": "i30081267", + "identifierV2": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "type": "bf:ShelfMark", + "value": "*ZO-243 11 Arabic titles" + }, + { + "type": "bf:Barcode", + "value": "33433105673531" } ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" + "holdingLocation_packed": [ + "loc:rcmi2||Offsite" ], "enumerationChronology": [ "11 Arabic titles" ], + "idBarcode": [ + "33433105673531" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], "formatLiteral": [ "Text" ], @@ -4722,61 +4822,15 @@ "label": "Offsite" } ], - "holdingLocation_packed": [ - "loc:rcmi2||Offsite" - ], - "idBarcode": [ - "33433105673531" - ], - "identifier": [ - "urn:shelfmark:*ZO-243 11 Arabic titles", - "urn:barcode:33433105673531" - ], - "identifierV2": [ - { - "value": "*ZO-243 11 Arabic titles", - "type": "bf:ShelfMark" - }, - { - "value": "33433105673531", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "*ZO-243" - ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*ZO-243 11 Arabic titles" - ], - "shelfMark_sort": "a*ZO-243 11 Arabic titles", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i30081267" + ] }, "sort": [ null @@ -4841,6 +4895,9 @@ "dateEndString": [ "1772" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Saṅkṣēpavēdartthaṃ : tṟānsliṯṯaṟēṣanuṃ parāvarttanavuṃ vyākhayānavuṃ ataṅṅiya putiya patipp" ], @@ -4983,88 +5040,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLD 84-299", + "urn:barcode:33433011099029" + ], + "physicalLocation": [ + "*OLD 84-299" + ], + "shelfMark_sort": "a*OLD 84-000299", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011099029" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLD 84-299", - "urn:barcode:33433011099029" + "shelfMark": [ + "*OLD 84-299" ], + "uri": "i10000682", "identifierV2": [ { - "value": "*OLD 84-299", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLD 84-299" }, { - "value": "33433011099029", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011099029" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011099029" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLD 84-299" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLD 84-299" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLD 84-000299", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000682" + ] }, "sort": [ null @@ -5123,6 +5180,9 @@ "dateEndString": [ "1851" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "[Zubdat al-maʻārif" ], @@ -5390,6 +5450,9 @@ "createdYear": [ 1873 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Nuzhat al-jalīs wa-munyat al-adīb al-anīs" ], @@ -5517,100 +5580,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*ZO-158 no. 1-10", + "urn:barcode:33433098135548" + ], + "physicalLocation": [ + "*ZO-158" + ], + "shelfMark_sort": "a*ZO-158 no. 000001-10", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "enumerationChronology": [ - "no. 1-10" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*ZO-158 no. 1-10" + ], + "uri": "i30154976", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*ZO-158 no. 1-10" + }, + { + "type": "bf:Barcode", + "value": "33433098135548" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "no. 1-10" + ], "idBarcode": [ "33433098135548" ], - "identifier": [ - "urn:shelfmark:*ZO-158 no. 1-10", - "urn:barcode:33433098135548" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*ZO-158 no. 1-10", - "type": "bf:ShelfMark" - }, - { - "value": "33433098135548", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*ZO-158" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*ZO-158 no. 1-10" - ], - "shelfMark_sort": "a*ZO-158 no. 000001-10", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 10 } - ], - "uri": "i30154976" + ] }, "sort": [ " 1-" @@ -5668,6 +5731,9 @@ "dateEndString": [ "1897" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Nasīm al-riyāḍ fī sharḥ Shifāʼ al-Qāḍī ʻIyāḍ" ], @@ -5800,21 +5866,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*ZO-162 1894-1897", + "urn:barcode:33433105672749" + ], + "physicalLocation": [ + "*ZO-162" + ], + "shelfMark_sort": "a*ZO-162 1894-001897", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], @@ -5824,76 +5892,74 @@ "lte": "1897" } ], - "enumerationChronology": [ - "1894-1897" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "enumerationChronology_sort": [ - " -1894" + "status_packed": [ + "status:a||Available" ], - "formatLiteral": [ - "Text" + "enumerationChronology_sort": [ + " -1894" ], - "holdingLocation": [ + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZO-162 1894-1897" + ], + "uri": "i30079670", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*ZO-162 1894-1897" + }, + { + "type": "bf:Barcode", + "value": "33433105672749" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "1894-1897" + ], "idBarcode": [ "33433105672749" ], - "identifier": [ - "urn:shelfmark:*ZO-162 1894-1897", - "urn:barcode:33433105672749" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*ZO-162 1894-1897", - "type": "bf:ShelfMark" - }, - { - "value": "33433105672749", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*ZO-162" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*ZO-162 1894-1897" - ], - "shelfMark_sort": "a*ZO-162 1894-001897", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i30079670" + ] }, "sort": [ " -1894" @@ -5954,12 +6020,15 @@ "createdYear": [ 1890 ], - "title": [ - "Tuḥfat ahl al-fukāhah fī al-munādamah wa-al-nazāhah" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Tuḥfat ahl al-fukāhah fī al-munādamah wa-al-nazāhah" + ], "shelfMark": [ "*ZO-158 no. 10" ], @@ -5985,9 +6054,6 @@ "dateStartYear": [ 1890 ], - "idOclc": [ - "NYPG002001182-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -6010,6 +6076,9 @@ "value": "(WaOLN)nyp0201745" } ], + "idOclc": [ + "NYPG002001182-B" + ], "popularity": 3, "updatedAt": 1729000306794, "publicationStatement": [ @@ -6088,100 +6157,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*ZO-158 no. 1-10", + "urn:barcode:33433098135548" + ], + "physicalLocation": [ + "*ZO-158" + ], + "shelfMark_sort": "a*ZO-158 no. 000001-10", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "enumerationChronology": [ - "no. 1-10" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*ZO-158 no. 1-10" + ], + "uri": "i30154976", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*ZO-158 no. 1-10" + }, + { + "type": "bf:Barcode", + "value": "33433098135548" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "no. 1-10" + ], "idBarcode": [ "33433098135548" ], - "identifier": [ - "urn:shelfmark:*ZO-158 no. 1-10", - "urn:barcode:33433098135548" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*ZO-158 no. 1-10", - "type": "bf:ShelfMark" - }, - { - "value": "33433098135548", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*ZO-158" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*ZO-158 no. 1-10" - ], - "shelfMark_sort": "a*ZO-158 no. 000001-10", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 10 } - ], - "uri": "i30154976" + ] }, "sort": [ " 1-" @@ -6253,6 +6322,9 @@ "createdYear": [ 1891 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Niwtʻer azgayin patmutʻian hamar Ereveli hay kazunkʻ ; Parskastan" ], @@ -6385,88 +6457,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:32", - "label": "google project, book" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*ONR 84-743", + "urn:barcode:33433001892276" + ], + "physicalLocation": [ + "*ONR 84-743" + ], + "shelfMark_sort": "a*ONR 84-000743", "catalogItemType_packed": [ "catalogItemType:32||google project, book" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001892276" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*ONR 84-743", - "urn:barcode:33433001892276" + "shelfMark": [ + "*ONR 84-743" ], + "uri": "i10001320", "identifierV2": [ { - "value": "*ONR 84-743", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*ONR 84-743" }, { - "value": "33433001892276", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001892276" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001892276" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*ONR 84-743" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*ONR 84-743" + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*ONR 84-000743", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10001320" + ] }, "sort": [ null @@ -6506,6 +6578,9 @@ "createdYear": [ 1881 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Wenemaa ajaloost." ], @@ -6626,88 +6701,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JFB 82-48 no. 1", + "urn:barcode:33433005146166" + ], + "physicalLocation": [ + "JFB 82-48 no. 1" + ], + "shelfMark_sort": "aJFB 82-48 no. 000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433005146166" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFB 82-48 no. 1", - "urn:barcode:33433005146166" + "shelfMark": [ + "JFB 82-48 no. 1" ], + "uri": "i10001452", "identifierV2": [ { - "value": "JFB 82-48 no. 1", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFB 82-48 no. 1" }, { - "value": "33433005146166", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433005146166" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005146166" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "JFB 82-48 no. 1" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "JFB 82-48 no. 1" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aJFB 82-48 no. 000001", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10001452" + ] }, "sort": [ null @@ -6747,6 +6822,9 @@ "createdYear": [ 1881 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Rätsepp Kergepüks." ], @@ -6864,88 +6942,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JFB 82-48 no. 1", + "urn:barcode:33433005146166" + ], + "physicalLocation": [ + "JFB 82-48 no. 1" + ], + "shelfMark_sort": "aJFB 82-48 no. 000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433005146166" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFB 82-48 no. 1", - "urn:barcode:33433005146166" + "shelfMark": [ + "JFB 82-48 no. 1" ], + "uri": "i10001452", "identifierV2": [ { - "value": "JFB 82-48 no. 1", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFB 82-48 no. 1" }, { - "value": "33433005146166", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433005146166" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005146166" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "JFB 82-48 no. 1" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "JFB 82-48 no. 1" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aJFB 82-48 no. 000001", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10001452" + ] }, "sort": [ null @@ -6985,6 +7063,9 @@ "createdYear": [ 1881 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Masajalg." ], @@ -7105,88 +7186,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JFB 82-48 no. 1", + "urn:barcode:33433005146166" + ], + "physicalLocation": [ + "JFB 82-48 no. 1" + ], + "shelfMark_sort": "aJFB 82-48 no. 000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433005146166" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFB 82-48 no. 1", - "urn:barcode:33433005146166" + "shelfMark": [ + "JFB 82-48 no. 1" ], + "uri": "i10001452", "identifierV2": [ { - "value": "JFB 82-48 no. 1", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFB 82-48 no. 1" }, { - "value": "33433005146166", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433005146166" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005146166" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "JFB 82-48 no. 1" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "JFB 82-48 no. 1" - ], - "shelfMark_sort": "aJFB 82-48 no. 000001", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:2", + "label": "book non-circ" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "uri": "i10001452" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -7229,6 +7310,9 @@ "dateEndString": [ "1999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Awlād bi-al-jumlah" ], @@ -7365,88 +7449,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFD 82-4488", + "urn:barcode:33433001997497" + ], + "physicalLocation": [ + "*OFD 82-4488" + ], + "shelfMark_sort": "a*OFD 82-004488", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001997497" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFD 82-4488", - "urn:barcode:33433001997497" + "shelfMark": [ + "*OFD 82-4488" ], + "uri": "i10001459", "identifierV2": [ { - "value": "*OFD 82-4488", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFD 82-4488" }, { - "value": "33433001997497", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001997497" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001997497" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFD 82-4488" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFD 82-4488" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFD 82-004488", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10001459" + ] }, "sort": [ null @@ -7508,6 +7592,7 @@ "createdYear": [ 1840 ], + "buildingLocationIds": [], "title": [ "Report of the late agency of the Rev. J.S.C.F. Frey presented to the Board of Managers of the American Society for Meliorating the Condition of the Jews." ], @@ -7675,6 +7760,7 @@ "dateEndString": [ "1837" ], + "buildingLocationIds": [], "title": [ "Undervisning i hästkännedom för korporals-skolorna vid kavalleriet inom fjerde militär-districtet" ], @@ -7849,6 +7935,7 @@ "createdYear": [ 1882 ], + "buildingLocationIds": [], "title": [ "Wetterleuchten, der Staatssozialismus und seine Consequenzen. Erster Theil" ], @@ -8024,6 +8111,9 @@ "dateEndString": [ "1889" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Atharvavede śāntipuṣṭikarmāṇi." ], @@ -8168,79 +8258,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 83-704", + "urn:barcode:33433060417965" ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 83-704" + ], + "shelfMark_sort": "a*OLY 83-000704", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433060417965" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLY 83-704", - "urn:barcode:33433060417965" + "shelfMark": [ + "*OLY 83-704" ], + "uri": "i13784336", "identifierV2": [ { - "value": "*OLY 83-704", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLY 83-704" }, { - "value": "33433060417965", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433060417965" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OLY 83-704" + "idBarcode": [ + "33433060417965" ], "requestable": [ true ], - "shelfMark": [ - "*OLY 83-704" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 83-000704", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13784336" + ] }, "sort": [ null @@ -8303,6 +8393,9 @@ "dateEndString": [ "1889" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Sūryagrahaṇam." ], @@ -8446,88 +8539,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKQ 83-703", + "urn:barcode:33433002896748" + ], + "physicalLocation": [ + "*OKQ 83-703" + ], + "shelfMark_sort": "a*OKQ 83-000703", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002896748" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKQ 83-703", - "urn:barcode:33433002896748" + "shelfMark": [ + "*OKQ 83-703" ], + "uri": "i10002163", "identifierV2": [ { - "value": "*OKQ 83-703", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKQ 83-703" }, { - "value": "33433002896748", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002896748" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002896748" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKQ 83-703" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKQ 83-703" - ], - "shelfMark_sort": "a*OKQ 83-000703", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "uri": "i10002163" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -8587,15 +8680,18 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "dateEndString": [ "1895" ], - "title": [ - "Miftāḥ al-Ṣaḥīḥayn Bukhārī wa-Muslim" - ], "type": [ "nypl:Item" ], + "title": [ + "Miftāḥ al-Ṣaḥīḥayn Bukhārī wa-Muslim" + ], "shelfMark": [ "*OGF 84-1307" ], @@ -8625,9 +8721,6 @@ "dateStartYear": [ 1975 ], - "idOclc": [ - "NYPG003000572-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -8654,6 +8747,9 @@ "value": "(WaOLN)nyp0203110" } ], + "idOclc": [ + "NYPG003000572-B" + ], "popularity": 1, "dateEndYear": [ 1895 @@ -8744,88 +8840,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OGF 84-1307", + "urn:barcode:33433013217298" + ], + "physicalLocation": [ + "*OGF 84-1307" + ], + "shelfMark_sort": "a*OGF 84-001307", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433013217298" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGF 84-1307", - "urn:barcode:33433013217298" + "shelfMark": [ + "*OGF 84-1307" ], + "uri": "i10002177", "identifierV2": [ { - "value": "*OGF 84-1307", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGF 84-1307" }, { - "value": "33433013217298", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433013217298" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013217298" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGF 84-1307" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGF 84-1307" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGF 84-001307", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10002177" + ] }, "sort": [ null @@ -8889,6 +8985,9 @@ "dateEndString": [ "1855" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Ghāyat al-marām fī ḥujjat al-khiṣ̣ām ʻan ṭarīq al-khāṣṣ wa-al-ʻāmm" ], @@ -9029,88 +9128,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OGI+ 84-1305", + "urn:barcode:33433058659842" + ], + "physicalLocation": [ + "*OGI+ 84-1305" + ], + "shelfMark_sort": "a*OGI+ 84-001305", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058659842" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGI+ 84-1305", - "urn:barcode:33433058659842" + "shelfMark": [ + "*OGI+ 84-1305" ], + "uri": "i13784359", "identifierV2": [ { - "value": "*OGI+ 84-1305", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGI+ 84-1305" }, { - "value": "33433058659842", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058659842" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058659842" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGI+ 84-1305" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGI+ 84-1305" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGI+ 84-001305", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13784359" + ] }, "sort": [ null @@ -9174,6 +9273,9 @@ "dateEndString": [ "1872" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Srautasūtram" ], @@ -9310,88 +9412,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKH 84-1426", + "urn:barcode:33433058568993" + ], + "physicalLocation": [ + "*OKH 84-1426" + ], + "shelfMark_sort": "a*OKH 84-001426", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058568993" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKH 84-1426", - "urn:barcode:33433058568993" + "shelfMark": [ + "*OKH 84-1426" ], + "uri": "i13784362", "identifierV2": [ { - "value": "*OKH 84-1426", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKH 84-1426" }, { - "value": "33433058568993", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058568993" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058568993" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKH 84-1426" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKH 84-1426" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKH 84-001426", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13784362" + ] }, "sort": [ null @@ -9449,6 +9551,9 @@ "dateEndString": [ "1670" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Zheng yin mo zhi : [4 juan]" ], @@ -9587,88 +9692,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OVL 84-1330", + "urn:barcode:33433001746852" + ], + "physicalLocation": [ + "*OVL 84-1330" + ], + "shelfMark_sort": "a*OVL 84-001330", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001746852" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OVL 84-1330", - "urn:barcode:33433001746852" + "shelfMark": [ + "*OVL 84-1330" ], + "uri": "i10002193", "identifierV2": [ { - "value": "*OVL 84-1330", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OVL 84-1330" }, { - "value": "33433001746852", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001746852" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001746852" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OVL 84-1330" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OVL 84-1330" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OVL 84-001330", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10002193" + ] }, "sort": [ null @@ -9734,6 +9839,9 @@ "dateEndString": [ "1899" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Basavapurāṇavu" ], @@ -9873,88 +9981,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLA+ 82-1360", + "urn:barcode:33433069579674" + ], + "physicalLocation": [ + "*OLA+ 82-1360" + ], + "shelfMark_sort": "a*OLA+ 82-001360", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433069579674" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLA+ 82-1360", - "urn:barcode:33433069579674" + "shelfMark": [ + "*OLA+ 82-1360" ], + "uri": "i13784381", "identifierV2": [ { - "value": "*OLA+ 82-1360", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLA+ 82-1360" }, { - "value": "33433069579674", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433069579674" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433069579674" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLA+ 82-1360" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLA+ 82-1360" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLA+ 82-001360", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13784381" + ] }, "sort": [ null @@ -10014,6 +10122,9 @@ "dateEndString": [ "999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Ḥarikat-i tārikhī-i Kurd bih Khurāsān dar difāʻ az istiqlāl-i Īrān" ], @@ -10143,100 +10254,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OMR 84-1145 v. 4", + "urn:barcode:33433013135854" + ], + "physicalLocation": [ + "*OMR 84-1145" + ], + "shelfMark_sort": "a*OMR 84-1145 v. 000004", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 4" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 4-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OMR 84-1145 v. 4" + ], + "uri": "i10002283", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OMR 84-1145 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433013135854" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 4" + ], "idBarcode": [ "33433013135854" ], - "identifier": [ - "urn:shelfmark:*OMR 84-1145 v. 4", - "urn:barcode:33433013135854" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OMR 84-1145 v. 4", - "type": "bf:ShelfMark" - }, - { - "value": "33433013135854", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OMR 84-1145" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OMR 84-1145 v. 4" - ], - "shelfMark_sort": "a*OMR 84-1145 v. 000004", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 4, "lte": 4 } - ], - "uri": "i10002283" + ] }, "sort": [ " 4-" @@ -10251,100 +10362,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OMR 84-1145 v. 3", + "urn:barcode:33433013135847" + ], + "physicalLocation": [ + "*OMR 84-1145" + ], + "shelfMark_sort": "a*OMR 84-1145 v. 000003", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 3" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 3-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OMR 84-1145 v. 3" + ], + "uri": "i10002282", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OMR 84-1145 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433013135847" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 3" + ], "idBarcode": [ "33433013135847" ], - "identifier": [ - "urn:shelfmark:*OMR 84-1145 v. 3", - "urn:barcode:33433013135847" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OMR 84-1145 v. 3", - "type": "bf:ShelfMark" - }, - { - "value": "33433013135847", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OMR 84-1145" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OMR 84-1145 v. 3" - ], - "shelfMark_sort": "a*OMR 84-1145 v. 000003", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 3, "lte": 3 } - ], - "uri": "i10002282" + ] }, "sort": [ " 3-" @@ -10359,100 +10470,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OMR 84-1145 v. 1", + "urn:barcode:33433013136530" + ], + "physicalLocation": [ + "*OMR 84-1145" + ], + "shelfMark_sort": "a*OMR 84-1145 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OMR 84-1145 v. 1" + ], + "uri": "i10002281", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OMR 84-1145 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433013136530" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433013136530" ], - "identifier": [ - "urn:shelfmark:*OMR 84-1145 v. 1", - "urn:barcode:33433013136530" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OMR 84-1145 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433013136530", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OMR 84-1145" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OMR 84-1145 v. 1" - ], - "shelfMark_sort": "a*OMR 84-1145 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i10002281" + ] }, "sort": [ " 1-" @@ -10504,6 +10615,9 @@ "createdYear": [ 1859 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Ḥadīqat al-ḥaqīqah va sharīʻat al-ṭarīqah" ], @@ -10627,88 +10741,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OMQ 82-3324", + "urn:barcode:33433013144385" + ], + "physicalLocation": [ + "*OMQ 82-3324" + ], + "shelfMark_sort": "a*OMQ 82-003324", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcma2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433013144385" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OMQ 82-3324", - "urn:barcode:33433013144385" + "shelfMark": [ + "*OMQ 82-3324" ], + "uri": "i10002468", "identifierV2": [ { - "value": "*OMQ 82-3324", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OMQ 82-3324" }, { - "value": "33433013144385", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433013144385" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rcma2||Offsite" + ], + "idBarcode": [ + "33433013144385" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OMQ 82-3324" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OMQ 82-3324" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OMQ 82-003324", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10002468" + ] }, "sort": [ null @@ -10751,6 +10865,9 @@ "dateEndString": [ "1983" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Listí po krajích rozváté : básně" ], @@ -10880,88 +10997,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*QVH 83-187", + "urn:barcode:33433011955378" + ], + "physicalLocation": [ + "*QVH 83-187" + ], + "shelfMark_sort": "a*QVH 83-000187", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011955378" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*QVH 83-187", - "urn:barcode:33433011955378" + "shelfMark": [ + "*QVH 83-187" ], + "uri": "i10002586", "identifierV2": [ { - "value": "*QVH 83-187", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*QVH 83-187" }, { - "value": "33433011955378", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011955378" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011955378" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*QVH 83-187" + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*QVH 83-187" - ], - "shelfMark_sort": "a*QVH 83-000187", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10002586" + ] }, "sort": [ null @@ -11019,15 +11136,19 @@ "createdYear": [ 196 ], + "buildingLocationIds": [ + "ma", + "rc" + ], "parallelTitle": [ "‏اليمن وحضارة العرب, مع دراسة جغرافية كاملة" ], - "title": [ - "al-Yaman wa-ḥaḍārat al-ʻArab, maʻa dirāsah jughrāfīyah kāmilah" - ], "type": [ "nypl:Item" ], + "title": [ + "al-Yaman wa-ḥaḍārat al-ʻArab, maʻa dirāsah jughrāfīyah kāmilah" + ], "shelfMark": [ "*OFI 82-4419" ], @@ -11052,9 +11173,6 @@ "parallelCreatorLiteral": [ "‏ترسيسي, عدنان." ], - "idOclc": [ - "11272192" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -11081,6 +11199,9 @@ "value": "(OCoLC)221366702" } ], + "idOclc": [ + "11272192" + ], "updatedAt": 1711087211898, "publicationStatement": [ "Bayrūt : Dār Maktabat al-Ḥayāh, [196-?]" @@ -11168,79 +11289,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)", + "urn:barcode:33433101143836" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" ], + "shelfMark_sort": "a*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433101143836" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)", - "urn:barcode:33433101143836" + "shelfMark": [ + "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" ], + "uri": "i29202258", "identifierV2": [ { - "value": "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" }, { - "value": "33433101143836", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433101143836" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" + "idBarcode": [ + "33433101143836" ], "requestable": [ true ], - "shelfMark": [ - "*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*OFK (Tarsīsī. Yaman wa-ḥaḍārat al-ʻArab)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i29202258" + ] }, "sort": [ null @@ -11255,88 +11376,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFI 82-4419", + "urn:barcode:33433002023293" + ], + "physicalLocation": [ + "*OFI 82-4419" + ], + "shelfMark_sort": "a*OFI 82-004419", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002023293" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFI 82-4419", - "urn:barcode:33433002023293" + "shelfMark": [ + "*OFI 82-4419" ], + "uri": "i10002714", "identifierV2": [ { - "value": "*OFI 82-4419", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFI 82-4419" }, { - "value": "33433002023293", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002023293" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002023293" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFI 82-4419" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFI 82-4419" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFI 82-004419", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10002714" + ] }, "sort": [ null @@ -11394,6 +11515,9 @@ "dateEndString": [ "1890" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Haẕā Kitāb-i hadīqat al-inṣāf" ], @@ -11529,88 +11653,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OMQ 82-3319", + "urn:barcode:33433013144377" + ], + "physicalLocation": [ + "*OMQ 82-3319" + ], + "shelfMark_sort": "a*OMQ 82-003319", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcma2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433013144377" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OMQ 82-3319", - "urn:barcode:33433013144377" + "shelfMark": [ + "*OMQ 82-3319" ], + "uri": "i10002864", "identifierV2": [ { - "value": "*OMQ 82-3319", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OMQ 82-3319" }, { - "value": "33433013144377", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433013144377" } ], - "owner": [ + "holdingLocation_packed": [ + "loc:rcma2||Offsite" + ], + "idBarcode": [ + "33433013144377" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true + ], + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:2", + "label": "book non-circ" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OMQ 82-3319" + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OMQ 82-3319" - ], - "shelfMark_sort": "a*OMQ 82-003319", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10002864" + ] }, "sort": [ null @@ -11665,6 +11789,9 @@ "dateEndString": [ "62" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Junāpura Sṭīla." ], @@ -11802,100 +11929,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKV 82-3891 v. 2", + "urn:barcode:33433011168402" + ], + "physicalLocation": [ + "*OKV 82-3891" + ], + "shelfMark_sort": "a*OKV 82-3891 v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OKV 82-3891 v. 2" + ], + "uri": "i10002917", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OKV 82-3891 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433011168402" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433011168402" ], - "identifier": [ - "urn:shelfmark:*OKV 82-3891 v. 2", - "urn:barcode:33433011168402" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OKV 82-3891 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433011168402", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OKV 82-3891" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKV 82-3891 v. 2" - ], - "shelfMark_sort": "a*OKV 82-3891 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i10002917" + ] }, "sort": [ " 2-" @@ -11910,100 +12037,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKV 82-3891 v. 1", + "urn:barcode:33433011168394" + ], + "physicalLocation": [ + "*OKV 82-3891" + ], + "shelfMark_sort": "a*OKV 82-3891 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OKV 82-3891 v. 1" + ], + "uri": "i10002916", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OKV 82-3891 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433011168394" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433011168394" ], - "identifier": [ - "urn:shelfmark:*OKV 82-3891 v. 1", - "urn:barcode:33433011168394" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OKV 82-3891 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433011168394", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OKV 82-3891" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKV 82-3891 v. 1" - ], - "shelfMark_sort": "a*OKV 82-3891 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i10002916" + ] }, "sort": [ " 1-" @@ -12053,6 +12180,9 @@ "createdYear": [ 1895 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Hādhā kitāb Daqaʼiq al-ʻilāj fī al-ṭibb al-badanī" ], @@ -12188,14 +12318,57 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:shelfmark:*OGB 83-1915", + "urn:barcode:33433019817224" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OGB 83-1915" + ], + "shelfMark_sort": "a*OGB 83-001915", + "catalogItemType_packed": [ + "catalogItemType:32||google project, book" + ], "accessMessage": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OGB 83-1915" + ], + "uri": "i12540130", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OGB 83-1915" + }, + { + "type": "bf:Barcode", + "value": "33433019817224" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433019817224" + ], + "requestable": [ + true ], "catalogItemType": [ { @@ -12203,9 +12376,6 @@ "label": "google project, book" } ], - "catalogItemType_packed": [ - "catalogItemType:32||google project, book" - ], "formatLiteral": [ "Text" ], @@ -12215,52 +12385,12 @@ "label": "Schwarzman Building M2 - General Research Room 315" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433019817224" - ], - "identifier": [ - "urn:shelfmark:*OGB 83-1915", - "urn:barcode:33433019817224" - ], - "identifierV2": [ - { - "value": "*OGB 83-1915", - "type": "bf:ShelfMark" - }, - { - "value": "33433019817224", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "*OGB 83-1915" - ], - "requestable": [ - true - ], - "shelfMark": [ - "*OGB 83-1915" - ], - "shelfMark_sort": "a*OGB 83-001915", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540130" + ] }, "sort": [ null @@ -12311,6 +12441,9 @@ "createdYear": [ 197 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tamiḻ valliṉa eḻuttukkaḷ: olikaḷum vitikaḷum" ], @@ -12448,88 +12581,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 83-2757", + "urn:barcode:33433061296681" + ], + "physicalLocation": [ + "*OLB 83-2757" + ], + "shelfMark_sort": "a*OLB 83-002757", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061296681" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 83-2757", - "urn:barcode:33433061296681" + "shelfMark": [ + "*OLB 83-2757" ], + "uri": "i13784546", "identifierV2": [ { - "value": "*OLB 83-2757", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 83-2757" }, { - "value": "33433061296681", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061296681" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061296681" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 83-2757" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 83-2757" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 83-002757", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13784546" + ] }, "sort": [ null @@ -12581,6 +12714,9 @@ "createdYear": [ 1885 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "The metaphysics of the Upanishads, Vicharsagar" ], @@ -12713,91 +12849,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*ZO-179 9 misc oriental titles", + "urn:barcode:33433105673085" + ], + "physicalLocation": [ + "*ZO-179" + ], + "shelfMark_sort": "a*ZO-179 9 misc oriental titles", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "enumerationChronology": [ - "9 misc oriental titles" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "formatLiteral": [ - "Text" + "status_packed": [ + "status:a||Available" ], - "holdingLocation": [ + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZO-179 9 misc oriental titles" + ], + "uri": "i30080087", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*ZO-179 9 misc oriental titles" + }, + { + "type": "bf:Barcode", + "value": "33433105673085" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "9 misc oriental titles" + ], "idBarcode": [ "33433105673085" ], - "identifier": [ - "urn:shelfmark:*ZO-179 9 misc oriental titles", - "urn:barcode:33433105673085" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*ZO-179 9 misc oriental titles", - "type": "bf:ShelfMark" - }, - { - "value": "33433105673085", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*ZO-179" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*ZO-179 9 misc oriental titles" - ], - "shelfMark_sort": "a*ZO-179 9 misc oriental titles", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i30080087" + ] }, "sort": [ null @@ -12847,6 +12983,9 @@ "createdYear": [ 1898 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Gregorius de Montelongo Ein Beitrag zur Geschichte Oberitaliens in den Jahren 1238-1269." ], @@ -12974,31 +13113,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*Z-3433", + "urn:barcode:33433107964664" + ], + "physicalLocation": [ + "*Z-3433" + ], + "shelfMark_sort": "a*Z-003433", + "catalogItemType_packed": [ + "catalogItemType:6||microfilm service copy" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:6", - "label": "microfilm service copy" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:6||microfilm service copy" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Text" + "shelfMark": [ + "*Z-3433" ], - "holdingLocation": [ + "uri": "i30141341", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*Z-3433" + }, + { + "type": "bf:Barcode", + "value": "33433107964664" } ], "holdingLocation_packed": [ @@ -13007,55 +13165,36 @@ "idBarcode": [ "33433107964664" ], - "identifier": [ - "urn:shelfmark:*Z-3433", - "urn:barcode:33433107964664" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*Z-3433", - "type": "bf:ShelfMark" - }, - { - "value": "33433107964664", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*Z-3433" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*Z-3433" - ], - "shelfMark_sort": "a*Z-003433", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i30141341" + ] }, "sort": [ null @@ -13106,6 +13245,9 @@ "createdYear": [ 1872 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Cuba puede ser independiente Folleto político de actualidad" ], @@ -13243,91 +13385,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*ZH-695 8 misc. American history titles", + "urn:barcode:33433110498031" + ], + "physicalLocation": [ + "*ZH-695" + ], + "shelfMark_sort": "a*ZH-695 8 misc. American history titles", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "enumerationChronology": [ - "8 misc. American history titles" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "formatLiteral": [ - "Text" + "status_packed": [ + "status:a||Available" ], - "holdingLocation": [ + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZH-695 8 misc. American history titles" + ], + "uri": "i30805021", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*ZH-695 8 misc. American history titles" + }, + { + "type": "bf:Barcode", + "value": "33433110498031" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "8 misc. American history titles" + ], "idBarcode": [ "33433110498031" ], - "identifier": [ - "urn:shelfmark:*ZH-695 8 misc. American history titles", - "urn:barcode:33433110498031" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*ZH-695 8 misc. American history titles", - "type": "bf:ShelfMark" - }, - { - "value": "33433110498031", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*ZH-695" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*ZH-695 8 misc. American history titles" - ], - "shelfMark_sort": "a*ZH-695 8 misc. American history titles", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i30805021" + ] }, "sort": [ null @@ -13377,6 +13519,9 @@ "createdYear": [ 1861 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Gustave III, roi de Suède, 1746-1792" ], @@ -13520,100 +13665,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*Z-3354 no. 1-7", + "urn:barcode:33433107663993" + ], + "physicalLocation": [ + "*Z-3354" + ], + "shelfMark_sort": "a*Z-3354 no. 000001-7", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "enumerationChronology": [ - "no. 1-7" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*Z-3354 no. 1-7" + ], + "uri": "i30147719", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*Z-3354 no. 1-7" + }, + { + "type": "bf:Barcode", + "value": "33433107663993" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "no. 1-7" + ], "idBarcode": [ "33433107663993" ], - "identifier": [ - "urn:shelfmark:*Z-3354 no. 1-7", - "urn:barcode:33433107663993" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*Z-3354 no. 1-7", - "type": "bf:ShelfMark" - }, - { - "value": "33433107663993", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*Z-3354" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*Z-3354 no. 1-7" - ], - "shelfMark_sort": "a*Z-3354 no. 000001-7", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 7 } - ], - "uri": "i30147719" + ] }, "sort": [ " 1-" diff --git a/test/fixtures/query-8a61d1e125169b4bf8522edee49a2898.json b/test/fixtures/query-8a61d1e125169b4bf8522edee49a2898.json index 27a2b1a8..e9004af4 100644 --- a/test/fixtures/query-8a61d1e125169b4bf8522edee49a2898.json +++ b/test/fixtures/query-8a61d1e125169b4bf8522edee49a2898.json @@ -1,5 +1,5 @@ { - "took": 32, + "took": 34, "timed_out": false, "_shards": { "total": 2, @@ -46,6 +46,10 @@ "createdYear": [ 201 ], + "buildingLocationIds": [ + "ma", + "rc" + ], "parallelTitle": [ "‏כותר שאינו באותיות לטינית = зглавие руссий." ], @@ -760,97 +764,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v.1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:k||Check with staff" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "uri": "i37857771", + "identifierV2": [ { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + }, + { + "type": "bf:Barcode", + "value": "3333333333" } ], "holdingLocation_packed": [ "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" ], + "enumerationChronology": [ + "v.1" + ], "idBarcode": [ "3333333333" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ false ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "status": [ { "id": "status:k", "label": "Check with staff" } ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i37857771" + ] }, "sort": [ " 1-" @@ -865,88 +869,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1103", + "label": "Dorot Jewish Division" } ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" ], - "enumerationChronology": [ - "nothing" + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "catalogItemType_packed": [ + "catalogItemType:3||serial" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmf2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "44455533322211" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" ], + "uri": "i37857772", "identifierV2": [ { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" }, { - "value": "44455533322211", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "44455533322211" } ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "enumerationChronology": [ + "nothing" + ], + "idBarcode": [ + "44455533322211" ], "owner_packed": [ "orgs:1103||Dorot Jewish Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ true ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" + ] }, "sort": [ null diff --git a/test/fixtures/query-929158ef6530babd48394ef5390512a2.json b/test/fixtures/query-929158ef6530babd48394ef5390512a2.json index 4ba879b2..3a861aa1 100644 --- a/test/fixtures/query-929158ef6530babd48394ef5390512a2.json +++ b/test/fixtures/query-929158ef6530babd48394ef5390512a2.json @@ -1,5 +1,5 @@ { - "took": 51, + "took": 8, "timed_out": false, "_shards": { "total": 2, @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.631159, + "max_score": 15.73737, "hits": [ { "_index": "resources-2024-10-22", "_id": "b10001936", - "_score": 15.631159, + "_score": 15.73737, "_source": { "extent": [ "400 p. ;" @@ -75,6 +75,9 @@ "createdYear": [ 1891 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Niwtʻer azgayin patmutʻian hamar Ereveli hay kazunkʻ ; Parskastan" ], @@ -203,88 +206,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:32", - "label": "google project, book" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*ONR 84-743", + "urn:barcode:33433001892276" + ], + "physicalLocation": [ + "*ONR 84-743" + ], + "shelfMark_sort": "a*ONR 84-000743", "catalogItemType_packed": [ "catalogItemType:32||google project, book" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001892276" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*ONR 84-743", - "urn:barcode:33433001892276" + "shelfMark": [ + "*ONR 84-743" ], + "uri": "i10001320", "identifierV2": [ { - "value": "*ONR 84-743", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*ONR 84-743" }, { - "value": "33433001892276", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001892276" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001892276" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*ONR 84-743" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*ONR 84-743" + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*ONR 84-000743", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10001320" + ] }, "sort": [ null diff --git a/test/fixtures/query-976e492000eb691a2edc2ffc622c074a.json b/test/fixtures/query-976e492000eb691a2edc2ffc622c074a.json index 00749ecb..a26e85cf 100644 --- a/test/fixtures/query-976e492000eb691a2edc2ffc622c074a.json +++ b/test/fixtures/query-976e492000eb691a2edc2ffc622c074a.json @@ -1,5 +1,5 @@ { - "took": 54, + "took": 11, "timed_out": false, "_shards": { "total": 2, @@ -17,7 +17,7 @@ { "_index": "resources-2024-10-22", "_id": "b13565153", - "_score": 2430.3875, + "_score": 2446.6453, "_source": { "extent": [ "430 p. : ill. ;" @@ -67,6 +67,9 @@ "dateEndString": [ "1853" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Gardening for ladies : and, Companion to the flower-garden" ], @@ -184,7 +187,7 @@ ] }, "sort": [ - 2430.3875, + 2446.6453, "b13565153" ], "inner_hits": { @@ -205,88 +208,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:32", - "label": "google project, book" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:VQG (Loudon, J. W. Gardening for ladies. 1854)", + "urn:barcode:33433006564110" + ], + "physicalLocation": [ + "VQG (Loudon, J. W. Gardening for ladies. 1854)" + ], + "shelfMark_sort": "aVQG (Loudon, J. W. Gardening for ladies. 1854)", "catalogItemType_packed": [ "catalogItemType:32||google project, book" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcma2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433006564110" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:VQG (Loudon, J. W. Gardening for ladies. 1854)", - "urn:barcode:33433006564110" + "shelfMark": [ + "VQG (Loudon, J. W. Gardening for ladies. 1854)" ], + "uri": "i10708577", "identifierV2": [ { - "value": "VQG (Loudon, J. W. Gardening for ladies. 1854)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "VQG (Loudon, J. W. Gardening for ladies. 1854)" }, { - "value": "33433006564110", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433006564110" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rcma2||Offsite" + ], + "idBarcode": [ + "33433006564110" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "VQG (Loudon, J. W. Gardening for ladies. 1854)" - ], - "recapCustomerCode": [ - "NL" - ], "requestable": [ true ], - "shelfMark": [ - "VQG (Loudon, J. W. Gardening for ladies. 1854)" + "catalogItemType": [ + { + "id": "catalogItemType:32", + "label": "google project, book" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NL" ], - "shelfMark_sort": "aVQG (Loudon, J. W. Gardening for ladies. 1854)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10708577" + ] }, "sort": [ null diff --git a/test/fixtures/query-97d0128acbc159596c4cca66a6e44df9.json b/test/fixtures/query-97d0128acbc159596c4cca66a6e44df9.json index fcb9d205..dd8f5b80 100644 --- a/test/fixtures/query-97d0128acbc159596c4cca66a6e44df9.json +++ b/test/fixtures/query-97d0128acbc159596c4cca66a6e44df9.json @@ -1,5 +1,5 @@ { - "took": 728, + "took": 623, "timed_out": false, "_shards": { "total": 2, @@ -80,12 +80,16 @@ "createdYear": [ 2008 ], - "title": [ - "The romance of China : excursions to China in U.S. culture, 1776-1876" + "buildingLocationIds": [ + "ma", + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "The romance of China : excursions to China in U.S. culture, 1776-1876" + ], "shelfMark": [ "JFE 09-1362" ], @@ -107,9 +111,6 @@ "dateStartYear": [ 2008 ], - "idOclc": [ - "184821618" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -140,15 +141,14 @@ "value": "(OCoLC)184821618" } ], + "idOclc": [ + "184821618" + ], "popularity": 15, "updatedAt": 1722357197199, "publicationStatement": [ "New York : Columbia University Press, c2008." ], - "idIsbn": [ - "9780231130943 (cloth : alk. paper)", - "0231130945 (cloth : alk. paper)" - ], "identifier": [ "urn:shelfmark:JFE 09-1362", "urn:bnum:10000109", @@ -158,6 +158,10 @@ "urn:lccn:2008037637", "urn:identifier:(OCoLC)184821618" ], + "idIsbn": [ + "9780231130943 (cloth : alk. paper)", + "0231130945 (cloth : alk. paper)" + ], "numCheckinCardItems": [ 0 ], @@ -243,85 +247,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFE 09-1362", + "urn:barcode:33433084847221" + ], + "physicalLocation": [ + "JFE 09-1362" + ], + "shelfMark_sort": "aJFE 09-001362", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433084847221" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFE 09-1362", - "urn:barcode:33433084847221" + "shelfMark": [ + "JFE 09-1362" ], + "uri": "i23117386", "identifierV2": [ { - "value": "JFE 09-1362", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFE 09-1362" }, { - "value": "33433084847221", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433084847221" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433084847221" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFE 09-1362" - ], "requestable": [ true ], - "shelfMark": [ - "JFE 09-1362" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFE 09-001362", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i23117386" + ] }, "sort": [ null @@ -336,88 +340,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLF 82-5145", + "urn:barcode:33433061318089" + ], + "physicalLocation": [ + "*OLF 82-5145" + ], + "shelfMark_sort": "a*OLF 82-005145", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061318089" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLF 82-5145", - "urn:barcode:33433061318089" + "shelfMark": [ + "*OLF 82-5145" ], + "uri": "i13783799", "identifierV2": [ { - "value": "*OLF 82-5145", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLF 82-5145" }, { - "value": "33433061318089", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061318089" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061318089" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLF 82-5145" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLF 82-5145" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLF 82-005145", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783799" + ] }, "sort": [ null @@ -476,6 +480,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Abḥāth fī zhiyūmūrfūlūzhīyat al-arāḍī al-Lībīyah" ], @@ -616,100 +623,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFO 82-5116 al-Juzʼān 1-2. v. 2", + "urn:barcode:33433005586197" + ], + "physicalLocation": [ + "*OFO 82-5116 al-Juzʼān 1-2." + ], + "shelfMark_sort": "a*OFO 82-5116 al-Juzʼān 1-2. v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OFO 82-5116 al-Juzʼān 1-2. v. 2" + ], + "uri": "i10000872", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OFO 82-5116 al-Juzʼān 1-2. v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433005586197" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433005586197" ], - "identifier": [ - "urn:shelfmark:*OFO 82-5116 al-Juzʼān 1-2. v. 2", - "urn:barcode:33433005586197" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ + "requestable": [ + true + ], + "catalogItemType": [ { - "value": "*OFO 82-5116 al-Juzʼān 1-2. v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433005586197", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner": [ + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "loc:rc2ma", + "label": "Offsite" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "*OFO 82-5116 al-Juzʼān 1-2." - ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OFO 82-5116 al-Juzʼān 1-2. v. 2" - ], - "shelfMark_sort": "a*OFO 82-5116 al-Juzʼān 1-2. v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i10000872" + ] }, "sort": [ " 2-" @@ -724,100 +731,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFO 82-5116 al-Juzʼān 1-2. v. 1", + "urn:barcode:33433005586189" + ], + "physicalLocation": [ + "*OFO 82-5116 al-Juzʼān 1-2." + ], + "shelfMark_sort": "a*OFO 82-5116 al-Juzʼān 1-2. v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OFO 82-5116 al-Juzʼān 1-2. v. 1" + ], + "uri": "i10000871", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OFO 82-5116 al-Juzʼān 1-2. v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433005586189" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433005586189" ], - "identifier": [ - "urn:shelfmark:*OFO 82-5116 al-Juzʼān 1-2. v. 1", - "urn:barcode:33433005586189" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OFO 82-5116 al-Juzʼān 1-2. v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433005586189", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OFO 82-5116 al-Juzʼān 1-2." + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OFO 82-5116 al-Juzʼān 1-2. v. 1" - ], - "shelfMark_sort": "a*OFO 82-5116 al-Juzʼān 1-2. v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i10000871" + ] }, "sort": [ " 1-" @@ -875,6 +882,9 @@ "createdYear": [ 2007 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Choralimprovisation auf Orgeln Gottfried Silbermanns" ], @@ -1024,88 +1034,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 09-710", + "urn:barcode:33433089337251" + ], + "physicalLocation": [ + "JMG 09-710" + ], + "shelfMark_sort": "aJMG 09-000710", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433089337251" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 09-710", - "urn:barcode:33433089337251" + "shelfMark": [ + "JMG 09-710" ], + "uri": "i24299761", "identifierV2": [ { - "value": "JMG 09-710", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 09-710" }, { - "value": "33433089337251", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433089337251" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433089337251" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 09-710" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 09-710" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 09-000710", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i24299761" + ] }, "sort": [ null @@ -1172,6 +1182,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Farhang-i ābādīhā-yi kishvar." ], @@ -1319,100 +1332,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:25", - "label": "atlas" + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" } ], + "identifier": [ + "urn:shelfmark:Map Div. 84-146 v. 17", + "urn:barcode:33433057030870" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000017", "catalogItemType_packed": [ "catalogItemType:25||atlas" ], - "enumerationChronology": [ - "v. 17" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 17-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "Map Div. 84-146 v. 17" + ], + "uri": "i13784147", + "identifierV2": [ { - "id": "loc:rcmp2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 17" + }, + { + "type": "bf:Barcode", + "value": "33433057030870" } ], "holdingLocation_packed": [ "loc:rcmp2||Offsite" ], + "enumerationChronology": [ + "v. 17" + ], "idBarcode": [ "33433057030870" ], - "identifier": [ - "urn:shelfmark:Map Div. 84-146 v. 17", - "urn:barcode:33433057030870" + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" ], - "identifierV2": [ - { - "value": "Map Div. 84-146 v. 17", - "type": "bf:ShelfMark" - }, - { - "value": "33433057030870", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" + "id": "catalogItemType:25", + "label": "atlas" } ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "Map Div. 84-146" + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NL" ], - "requestable": [ - true - ], - "shelfMark": [ - "Map Div. 84-146 v. 17" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000017", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 17, "lte": 17 } - ], - "uri": "i13784147" + ] }, "sort": [ " 17-" @@ -1427,100 +1440,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:25", - "label": "atlas" + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" } ], + "identifier": [ + "urn:shelfmark:Map Div. 84-146 v. 15", + "urn:barcode:33433057030862" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000015", "catalogItemType_packed": [ "catalogItemType:25||atlas" ], - "enumerationChronology": [ - "v. 15" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 15-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "Map Div. 84-146 v. 15" + ], + "uri": "i13784146", + "identifierV2": [ { - "id": "loc:rcmp2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 15" + }, + { + "type": "bf:Barcode", + "value": "33433057030862" } ], "holdingLocation_packed": [ "loc:rcmp2||Offsite" ], + "enumerationChronology": [ + "v. 15" + ], "idBarcode": [ "33433057030862" ], - "identifier": [ - "urn:shelfmark:Map Div. 84-146 v. 15", - "urn:barcode:33433057030862" + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" ], - "identifierV2": [ - { - "value": "Map Div. 84-146 v. 15", - "type": "bf:ShelfMark" - }, - { - "value": "33433057030862", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" + "id": "catalogItemType:25", + "label": "atlas" } ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "Map Div. 84-146" + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NL" ], - "requestable": [ - true - ], - "shelfMark": [ - "Map Div. 84-146 v. 15" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000015", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 15, "lte": 15 } - ], - "uri": "i13784146" + ] }, "sort": [ " 15-" @@ -1535,100 +1548,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:25", - "label": "atlas" + "id": "orgs:1106", + "label": "Lionel Pincus and Princess Firyal Map Division" } ], + "identifier": [ + "urn:shelfmark:Map Div. 84-146 v. 14", + "urn:barcode:33433057030854" + ], + "physicalLocation": [ + "Map Div. 84-146" + ], + "shelfMark_sort": "aMap Div. 84-146 v. 000014", "catalogItemType_packed": [ "catalogItemType:25||atlas" ], - "enumerationChronology": [ - "v. 14" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 14-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "Map Div. 84-146 v. 14" + ], + "uri": "i13784145", + "identifierV2": [ { - "id": "loc:rcmp2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "Map Div. 84-146 v. 14" + }, + { + "type": "bf:Barcode", + "value": "33433057030854" } ], "holdingLocation_packed": [ "loc:rcmp2||Offsite" ], + "enumerationChronology": [ + "v. 14" + ], "idBarcode": [ "33433057030854" ], - "identifier": [ - "urn:shelfmark:Map Div. 84-146 v. 14", - "urn:barcode:33433057030854" + "owner_packed": [ + "orgs:1106||Lionel Pincus and Princess Firyal Map Division" ], - "identifierV2": [ - { - "value": "Map Div. 84-146 v. 14", - "type": "bf:ShelfMark" - }, - { - "value": "33433057030854", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1106", - "label": "Lionel Pincus and Princess Firyal Map Division" + "id": "catalogItemType:25", + "label": "atlas" } ], - "owner_packed": [ - "orgs:1106||Lionel Pincus and Princess Firyal Map Division" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "Map Div. 84-146" + "holdingLocation": [ + { + "id": "loc:rcmp2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NL" ], - "requestable": [ - true - ], - "shelfMark": [ - "Map Div. 84-146 v. 14" - ], - "shelfMark_sort": "aMap Div. 84-146 v. 000014", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 14, "lte": 14 } - ], - "uri": "i13784145" + ] }, "sort": [ " 14-" @@ -1684,15 +1697,18 @@ "createdYear": [ 1964 ], + "buildingLocationIds": [ + "rc" + ], "dateEndString": [ "9999" ], - "title": [ - "Brahmasūtraśāṅkarabhāṣyam. 'Brahmatatvavimarśinī' Hindīvyākhyāsahitam." - ], "type": [ "nypl:Item" ], + "title": [ + "Brahmasūtraśāṅkarabhāṣyam. 'Brahmatatvavimarśinī' Hindīvyākhyāsahitam." + ], "shelfMark": [ "*OKN 82-2276" ], @@ -1708,12 +1724,12 @@ "idLccn": [ "sa 65007118" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Vidyābhavara Saṃskrta granthamālā, 124" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Śaṅkarācārya", "Sastri, Hanumanadas, Swami" @@ -1724,9 +1740,6 @@ "dateStartYear": [ 1964 ], - "idOclc": [ - "NYPG002001282-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -1753,6 +1766,9 @@ "value": "(WaOLN)nyp0201842" } ], + "idOclc": [ + "NYPG002001282-B" + ], "popularity": 1, "dateEndYear": [ 9999 @@ -1807,15 +1823,15 @@ "placeOfPublication": [ "Vārāṇasī" ], + "titleAlt": [ + "Brahmasūtra Śaṅkarbhāṣya." + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Brahmasūtra Śaṅkarbhāṣya." - ], "dimensions": [ "23 cm." ] @@ -1842,88 +1858,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKN 82-2276", + "urn:barcode:33433058617816" + ], + "physicalLocation": [ + "*OKN 82-2276" + ], + "shelfMark_sort": "a*OKN 82-002276", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058617816" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKN 82-2276", - "urn:barcode:33433058617816" + "shelfMark": [ + "*OKN 82-2276" ], + "uri": "i13784177", "identifierV2": [ { - "value": "*OKN 82-2276", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKN 82-2276" }, { - "value": "33433058617816", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058617816" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058617816" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKN 82-2276" + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKN 82-2276" - ], - "shelfMark_sort": "a*OKN 82-002276", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13784177" + ] }, "sort": [ null @@ -1983,6 +1999,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Ikhtilāf al-fuqahāʼ" ], @@ -2129,88 +2148,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OGM 84-702", + "urn:barcode:33433001944960" + ], + "physicalLocation": [ + "*OGM 84-702" + ], + "shelfMark_sort": "a*OGM 84-000702", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433001944960" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGM 84-702", - "urn:barcode:33433001944960" + "shelfMark": [ + "*OGM 84-702" ], + "uri": "i10002358", "identifierV2": [ { - "value": "*OGM 84-702", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGM 84-702" }, { - "value": "33433001944960", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433001944960" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433001944960" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGM 84-702" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGM 84-702" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGM 84-000702", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10002358" + ] }, "sort": [ null @@ -2275,6 +2294,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Skandamahāpurāṇam" ], @@ -2421,100 +2443,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKOK 84-641 v. 5 pt 2", + "urn:barcode:33433013221423" + ], + "physicalLocation": [ + "*OKOK 84-641" + ], + "shelfMark_sort": "a*OKOK 84-641 v. 000005 pt 2", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 5 pt 2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 5-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OKOK 84-641 v. 5 pt 2" + ], + "uri": "i10002364", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OKOK 84-641 v. 5 pt 2" + }, + { + "type": "bf:Barcode", + "value": "33433013221423" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 5 pt 2" + ], "idBarcode": [ "33433013221423" ], - "identifier": [ - "urn:shelfmark:*OKOK 84-641 v. 5 pt 2", - "urn:barcode:33433013221423" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OKOK 84-641 v. 5 pt 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433013221423", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OKOK 84-641" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKOK 84-641 v. 5 pt 2" - ], - "shelfMark_sort": "a*OKOK 84-641 v. 000005 pt 2", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 5, "lte": 5 } - ], - "uri": "i10002364" + ] }, "sort": [ " 5-" @@ -2529,100 +2551,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKOK 84-641 v. 5 pt 1", + "urn:barcode:33433013221415" + ], + "physicalLocation": [ + "*OKOK 84-641" + ], + "shelfMark_sort": "a*OKOK 84-641 v. 000005 pt 1", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 5 pt 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 5-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OKOK 84-641 v. 5 pt 1" + ], + "uri": "i10002363", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OKOK 84-641 v. 5 pt 1" + }, + { + "type": "bf:Barcode", + "value": "33433013221415" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 5 pt 1" + ], "idBarcode": [ "33433013221415" ], - "identifier": [ - "urn:shelfmark:*OKOK 84-641 v. 5 pt 1", - "urn:barcode:33433013221415" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OKOK 84-641 v. 5 pt 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433013221415", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OKOK 84-641" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKOK 84-641 v. 5 pt 1" - ], - "shelfMark_sort": "a*OKOK 84-641 v. 000005 pt 1", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 5, "lte": 5 } - ], - "uri": "i10002363" + ] }, "sort": [ " 5-" @@ -2637,100 +2659,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKOK 84-641 v. 4", + "urn:barcode:33433013221407" + ], + "physicalLocation": [ + "*OKOK 84-641" + ], + "shelfMark_sort": "a*OKOK 84-641 v. 000004", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 4" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 4-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OKOK 84-641 v. 4" + ], + "uri": "i10002362", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OKOK 84-641 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433013221407" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 4" + ], "idBarcode": [ "33433013221407" ], - "identifier": [ - "urn:shelfmark:*OKOK 84-641 v. 4", - "urn:barcode:33433013221407" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OKOK 84-641 v. 4", - "type": "bf:ShelfMark" - }, - { - "value": "33433013221407", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OKOK 84-641" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKOK 84-641 v. 4" - ], - "shelfMark_sort": "a*OKOK 84-641 v. 000004", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 4, "lte": 4 } - ], - "uri": "i10002362" + ] }, "sort": [ " 4-" @@ -2785,6 +2807,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Dziesmiņas" ], @@ -2914,88 +2939,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*QYN 82-2046 Dala 1.", + "urn:barcode:33433013501782" + ], + "physicalLocation": [ + "*QYN 82-2046 Dala 1." + ], + "shelfMark_sort": "a*QYN 82-2046 Dala 1.", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433013501782" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*QYN 82-2046 Dala 1.", - "urn:barcode:33433013501782" + "shelfMark": [ + "*QYN 82-2046 Dala 1." ], + "uri": "i10002421", "identifierV2": [ { - "value": "*QYN 82-2046 Dala 1.", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*QYN 82-2046 Dala 1." }, { - "value": "33433013501782", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433013501782" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433013501782" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*QYN 82-2046 Dala 1." - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*QYN 82-2046 Dala 1." + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*QYN 82-2046 Dala 1.", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10002421" + ] }, "sort": [ null @@ -3055,6 +3080,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Nuẓum al-Fāṭimīyīn wa-rusūmuhum fī Miṣr. Institutions et cérémonial des Faṭimides en Égypte." ], @@ -3198,31 +3226,50 @@ }, "_score": null, "_source": { - "accessMessage": [ + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "identifier": [ + "urn:shelfmark:*OFP 82-1931", + "urn:barcode:33433001937121" ], - "catalogItemType": [ + "physicalLocation": [ + "*OFP 82-1931" + ], + "shelfMark_sort": "a*OFP 82-001931", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "status_packed": [ + "status:a||Available" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OFP 82-1931" + ], + "uri": "i10002566", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OFP 82-1931" + }, + { + "type": "bf:Barcode", + "value": "33433001937121" } ], "holdingLocation_packed": [ @@ -3231,55 +3278,36 @@ "idBarcode": [ "33433001937121" ], - "identifier": [ - "urn:shelfmark:*OFP 82-1931", - "urn:barcode:33433001937121" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OFP 82-1931", - "type": "bf:ShelfMark" - }, - { - "value": "33433001937121", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OFP 82-1931" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OFP 82-1931" - ], - "shelfMark_sort": "a*OFP 82-001931", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10002566" + ] }, "sort": [ null @@ -3338,6 +3366,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Sārasvata vyāsamulu; Telumgu kavitvapu tīru tennulu." ], @@ -3482,100 +3513,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLC 83-35 v. 5", + "urn:barcode:33433011197476" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000005", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 5" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 5-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLC 83-35 v. 5" + ], + "uri": "i10002605", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 5" + }, + { + "type": "bf:Barcode", + "value": "33433011197476" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 5" + ], "idBarcode": [ "33433011197476" ], - "identifier": [ - "urn:shelfmark:*OLC 83-35 v. 5", - "urn:barcode:33433011197476" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLC 83-35 v. 5", - "type": "bf:ShelfMark" - }, - { - "value": "33433011197476", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLC 83-35" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLC 83-35 v. 5" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000005", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 5, "lte": 5 } - ], - "uri": "i10002605" + ] }, "sort": [ " 5-" @@ -3590,100 +3621,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLC 83-35 v. 4", + "urn:barcode:33433011197468" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000004", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 4" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 4-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLC 83-35 v. 4" + ], + "uri": "i10002604", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433011197468" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 4" + ], "idBarcode": [ "33433011197468" ], - "identifier": [ - "urn:shelfmark:*OLC 83-35 v. 4", - "urn:barcode:33433011197468" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLC 83-35 v. 4", - "type": "bf:ShelfMark" - }, - { - "value": "33433011197468", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLC 83-35" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLC 83-35 v. 4" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000004", "status": [ { "id": "status:a", "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" + } ], "volumeRange": [ { "gte": 4, "lte": 4 } - ], - "uri": "i10002604" + ] }, "sort": [ " 4-" @@ -3698,100 +3729,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLC 83-35 v. 3", + "urn:barcode:33433011197450" + ], + "physicalLocation": [ + "*OLC 83-35" + ], + "shelfMark_sort": "a*OLC 83-35 v. 000003", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 3" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 3-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLC 83-35 v. 3" + ], + "uri": "i10002603", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLC 83-35 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433011197450" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 3" + ], "idBarcode": [ "33433011197450" ], - "identifier": [ - "urn:shelfmark:*OLC 83-35 v. 3", - "urn:barcode:33433011197450" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLC 83-35 v. 3", - "type": "bf:ShelfMark" - }, - { - "value": "33433011197450", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLC 83-35" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLC 83-35 v. 3" - ], - "shelfMark_sort": "a*OLC 83-35 v. 000003", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 3, "lte": 3 } - ], - "uri": "i10002603" + ] }, "sort": [ " 3-" @@ -3854,6 +3885,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Kuvempu sāhitya: Kelavu adhyayanagaḷu." ], @@ -3994,100 +4028,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLA 83-341 v. 3", + "urn:barcode:33433057523718" + ], + "physicalLocation": [ + "*OLA 83-341" + ], + "shelfMark_sort": "a*OLA 83-341 v. 000003", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 3" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 3-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLA 83-341 v. 3" + ], + "uri": "i12858227", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLA 83-341 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433057523718" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 3" + ], "idBarcode": [ "33433057523718" ], - "identifier": [ - "urn:shelfmark:*OLA 83-341 v. 3", - "urn:barcode:33433057523718" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLA 83-341 v. 3", - "type": "bf:ShelfMark" - }, - { - "value": "33433057523718", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLA 83-341" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLA 83-341 v. 3" - ], - "shelfMark_sort": "a*OLA 83-341 v. 000003", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 3, "lte": 3 } - ], - "uri": "i12858227" + ] }, "sort": [ " 3-" @@ -4102,31 +4136,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLA 83-3417 Library has: Vol. 1, 3.", + "urn:barcode:33433001707623" + ], + "physicalLocation": [ + "*OLA 83-3417 Library has: Vol. 1, 3." + ], + "shelfMark_sort": "a*OLA 83-3417 Library has: Vol. 1, 3.", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OLA 83-3417 Library has: Vol. 1, 3." + ], + "uri": "i10003188", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLA 83-3417 Library has: Vol. 1, 3." + }, + { + "type": "bf:Barcode", + "value": "33433001707623" } ], "holdingLocation_packed": [ @@ -4135,55 +4188,36 @@ "idBarcode": [ "33433001707623" ], - "identifier": [ - "urn:shelfmark:*OLA 83-3417 Library has: Vol. 1, 3.", - "urn:barcode:33433001707623" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLA 83-3417 Library has: Vol. 1, 3.", - "type": "bf:ShelfMark" - }, + "requestable": [ + true + ], + "catalogItemType": [ { - "value": "33433001707623", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner": [ + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "loc:rc2ma", + "label": "Offsite" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "*OLA 83-3417 Library has: Vol. 1, 3." - ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLA 83-3417 Library has: Vol. 1, 3." - ], - "shelfMark_sort": "a*OLA 83-3417 Library has: Vol. 1, 3.", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10003188" + ] }, "sort": [ null @@ -4226,6 +4260,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "A outra face de J. Simões Lopes Neto" ], @@ -4361,100 +4398,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JFK 84-291 v. 1", + "urn:barcode:33433003418559" + ], + "physicalLocation": [ + "JFK 84-291" + ], + "shelfMark_sort": "aJFK 84-291 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JFK 84-291 v. 1" + ], + "uri": "i10003383", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JFK 84-291 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433003418559" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433003418559" ], - "identifier": [ - "urn:shelfmark:JFK 84-291 v. 1", - "urn:barcode:33433003418559" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JFK 84-291 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433003418559", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JFK 84-291" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JFK 84-291 v. 1" - ], - "shelfMark_sort": "aJFK 84-291 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i10003383" + ] }, "sort": [ " 1-" @@ -4525,6 +4562,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Cografija" ], @@ -4658,91 +4698,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*ZO-221 11 Azerbaijani monographs", + "urn:barcode:33433105673499" + ], + "physicalLocation": [ + "*ZO-221" + ], + "shelfMark_sort": "a*ZO-221 11 Azerbaijani monographs", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "enumerationChronology": [ - "11 Azerbaijani monographs" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "formatLiteral": [ - "Text" + "status_packed": [ + "status:a||Available" ], - "holdingLocation": [ + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*ZO-221 11 Azerbaijani monographs" + ], + "uri": "i30081242", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*ZO-221 11 Azerbaijani monographs" + }, + { + "type": "bf:Barcode", + "value": "33433105673499" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "11 Azerbaijani monographs" + ], "idBarcode": [ "33433105673499" ], - "identifier": [ - "urn:shelfmark:*ZO-221 11 Azerbaijani monographs", - "urn:barcode:33433105673499" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*ZO-221 11 Azerbaijani monographs", - "type": "bf:ShelfMark" - }, - { - "value": "33433105673499", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*ZO-221" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*ZO-221 11 Azerbaijani monographs" - ], - "shelfMark_sort": "a*ZO-221 11 Azerbaijani monographs", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i30081242" + ] }, "sort": [ null @@ -4818,6 +4858,7 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [], "title": [ "Cografija" ], @@ -5282,6 +5323,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Mfuatano wa muundo na kazi za vyombo vya Serikali ya mapinduzi ya Zanzibar." ], @@ -5414,88 +5458,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "identifier": [ + "urn:shelfmark:Sc Ser.-N .Z288 Kituba cha 1-9", + "urn:barcode:33433030859007" ], - "enumerationChronology": [ - "Kituba cha 1-9" + "physicalLocation": [ + "Sc Ser.-N .Z288" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aSc Ser.-N .Z288 Kituba cha 1-000009", + "catalogItemType_packed": [ + "catalogItemType:3||serial" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433030859007" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc Ser.-N .Z288 Kituba cha 1-9", - "urn:barcode:33433030859007" + "shelfMark": [ + "Sc Ser.-N .Z288 Kituba cha 1-9" ], + "uri": "i10942241", "identifierV2": [ { - "value": "Sc Ser.-N .Z288 Kituba cha 1-9", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc Ser.-N .Z288 Kituba cha 1-9" }, { - "value": "33433030859007", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433030859007" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "enumerationChronology": [ + "Kituba cha 1-9" + ], + "idBarcode": [ + "33433030859007" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc Ser.-N .Z288" - ], "requestable": [ true ], - "shelfMark": [ - "Sc Ser.-N .Z288 Kituba cha 1-9" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc Ser.-N .Z288 Kituba cha 1-000009", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942241" + ] }, "sort": [ null @@ -5558,6 +5602,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Proceedings" ], @@ -5720,97 +5767,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc Ser.-M .N3674: 6th. 1982 no. 3-5", + "urn:barcode:33433072219805" + ], + "physicalLocation": [ + "Sc Ser.-M .N3674: 6th. 1982" + ], + "shelfMark_sort": "aSc Ser.-M .N3674: 6th. 1982 no. 000003-5", "catalogItemType_packed": [ "catalogItemType:3||serial" ], - "enumerationChronology": [ - "no. 3-5" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 3-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "Sc Ser.-M .N3674: 6th. 1982 no. 3-5" + ], + "uri": "i17447316", + "identifierV2": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .N3674: 6th. 1982 no. 3-5" + }, + { + "type": "bf:Barcode", + "value": "33433072219805" } ], "holdingLocation_packed": [ "loc:scff2||Schomburg Center - Research & Reference" ], + "enumerationChronology": [ + "no. 3-5" + ], "idBarcode": [ "33433072219805" ], - "identifier": [ - "urn:shelfmark:Sc Ser.-M .N3674: 6th. 1982 no. 3-5", - "urn:barcode:33433072219805" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .N3674: 6th. 1982 no. 3-5", - "type": "bf:ShelfMark" - }, - { - "value": "33433072219805", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } - ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc Ser.-M .N3674: 6th. 1982" - ], "requestable": [ true ], - "shelfMark": [ - "Sc Ser.-M .N3674: 6th. 1982 no. 3-5" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc Ser.-M .N3674: 6th. 1982 no. 000003-5", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 3, "lte": 5 } - ], - "uri": "i17447316" + ] }, "sort": [ " 3-" @@ -5825,97 +5872,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc Ser.-M .N3674: 6th. 1982 no. 1-2", + "urn:barcode:33433072219797" + ], + "physicalLocation": [ + "Sc Ser.-M .N3674: 6th. 1982" + ], + "shelfMark_sort": "aSc Ser.-M .N3674: 6th. 1982 no. 000001-2", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "no. 1-2" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "Sc Ser.-M .N3674: 6th. 1982 no. 1-2" + ], + "uri": "i14746590", + "identifierV2": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .N3674: 6th. 1982 no. 1-2" + }, + { + "type": "bf:Barcode", + "value": "33433072219797" } ], "holdingLocation_packed": [ "loc:scff2||Schomburg Center - Research & Reference" ], + "enumerationChronology": [ + "no. 1-2" + ], "idBarcode": [ "33433072219797" ], - "identifier": [ - "urn:shelfmark:Sc Ser.-M .N3674: 6th. 1982 no. 1-2", - "urn:barcode:33433072219797" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .N3674: 6th. 1982 no. 1-2", - "type": "bf:ShelfMark" - }, - { - "value": "33433072219797", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } - ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc Ser.-M .N3674: 6th. 1982" - ], "requestable": [ true ], - "shelfMark": [ - "Sc Ser.-M .N3674: 6th. 1982 no. 1-2" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc Ser.-M .N3674: 6th. 1982 no. 000001-2", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 2 } - ], - "uri": "i14746590" + ] }, "sort": [ " 1-" @@ -5964,6 +6011,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Leson kreyòl pou etranje ki pale franse \\" ], @@ -6126,88 +6176,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "identifier": [ + "urn:shelfmark:Sc Ser.-M .M468 t. 2, ptie 1", + "urn:barcode:33433017863220" ], - "enumerationChronology": [ - "t. 2, ptie 1" + "physicalLocation": [ + "Sc Ser.-M .M468" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aSc Ser.-M .M468 t. 2, ptie 000001", + "catalogItemType_packed": [ + "catalogItemType:3||serial" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433017863220" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc Ser.-M .M468 t. 2, ptie 1", - "urn:barcode:33433017863220" + "shelfMark": [ + "Sc Ser.-M .M468 t. 2, ptie 1" ], + "uri": "i11900486", "identifierV2": [ { - "value": "Sc Ser.-M .M468 t. 2, ptie 1", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .M468 t. 2, ptie 1" }, { - "value": "33433017863220", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433017863220" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "enumerationChronology": [ + "t. 2, ptie 1" + ], + "idBarcode": [ + "33433017863220" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc Ser.-M .M468" - ], "requestable": [ true ], - "shelfMark": [ - "Sc Ser.-M .M468 t. 2, ptie 1" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc Ser.-M .M468 t. 2, ptie 000001", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11900486" + ] }, "sort": [ null @@ -6261,6 +6311,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "sc" + ], "title": [ "En torno al jazz" ], @@ -6393,97 +6446,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc Ser.-L .V354 v. 2", + "urn:barcode:33433017895651" + ], + "physicalLocation": [ + "Sc Ser.-L .V354" + ], + "shelfMark_sort": "aSc Ser.-L .V354 v. 000002", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "Sc Ser.-L .V354 v. 2" + ], + "uri": "i11900496", + "identifierV2": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "type": "bf:ShelfMark", + "value": "Sc Ser.-L .V354 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433017895651" } ], "holdingLocation_packed": [ "loc:scff2||Schomburg Center - Research & Reference" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433017895651" ], - "identifier": [ - "urn:shelfmark:Sc Ser.-L .V354 v. 2", - "urn:barcode:33433017895651" - ], - "identifierV2": [ - { - "value": "Sc Ser.-L .V354 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433017895651", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } - ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc Ser.-L .V354" - ], "requestable": [ true ], - "shelfMark": [ - "Sc Ser.-L .V354 v. 2" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc Ser.-L .V354 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i11900496" + ] }, "sort": [ " 2-" @@ -6498,97 +6551,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc Ser.-L .V354 v. 1", + "urn:barcode:33433030890481" + ], + "physicalLocation": [ + "Sc Ser.-L .V354" + ], + "shelfMark_sort": "aSc Ser.-L .V354 v. 000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "Sc Ser.-L .V354 v. 1" + ], + "uri": "i11900495", + "identifierV2": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "type": "bf:ShelfMark", + "value": "Sc Ser.-L .V354 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433030890481" } ], "holdingLocation_packed": [ "loc:scff2||Schomburg Center - Research & Reference" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433030890481" ], - "identifier": [ - "urn:shelfmark:Sc Ser.-L .V354 v. 1", - "urn:barcode:33433030890481" - ], - "identifierV2": [ - { - "value": "Sc Ser.-L .V354 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433030890481", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } - ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc Ser.-L .V354" - ], "requestable": [ true ], - "shelfMark": [ - "Sc Ser.-L .V354 v. 1" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc Ser.-L .V354 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i11900495" + ] }, "sort": [ " 1-" @@ -6634,6 +6687,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Tem" ], @@ -6769,85 +6825,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc Ser.-M .T425", + "urn:barcode:33433076233265" + ], + "physicalLocation": [ + "Sc Ser.-M .T425" + ], + "shelfMark_sort": "aSc Ser.-M .T000425", "catalogItemType_packed": [ "catalogItemType:3||serial" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433076233265" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc Ser.-M .T425", - "urn:barcode:33433076233265" + "shelfMark": [ + "Sc Ser.-M .T425" ], + "uri": "i23169346", "identifierV2": [ { - "value": "Sc Ser.-M .T425", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .T425" }, { - "value": "33433076233265", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433076233265" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433076233265" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc Ser.-M .T425" - ], "requestable": [ true ], - "shelfMark": [ - "Sc Ser.-M .T425" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc Ser.-M .T000425", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i23169346" + ] }, "sort": [ null @@ -6893,6 +6949,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Kabiye" ], @@ -7030,85 +7089,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc F 84-135", + "urn:barcode:33433036872368" + ], + "physicalLocation": [ + "Sc F 84-135" + ], + "shelfMark_sort": "aSc F 84-000135", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433036872368" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc F 84-135", - "urn:barcode:33433036872368" + "shelfMark": [ + "Sc F 84-135" ], + "uri": "i11900585", "identifierV2": [ { - "value": "Sc F 84-135", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc F 84-135" }, { - "value": "33433036872368", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433036872368" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433036872368" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc F 84-135" - ], "requestable": [ true ], - "shelfMark": [ - "Sc F 84-135" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc F 84-000135", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11900585" + ] }, "sort": [ null @@ -7161,6 +7220,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "sc" + ], "title": [ "A History of Iota Phi Lambda Sorority." ], @@ -7320,21 +7382,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)", + "urn:barcode:33433061038323" + ], + "physicalLocation": [ + "Sc Ser.-M .H592" + ], + "shelfMark_sort": "aSc Ser.-M .H592 v. 000001, 2 (1928-19, 1959-69)", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -7344,79 +7408,77 @@ "lte": "1969" } ], - "enumerationChronology": [ - "v. 1, 2 (1928-19, 1959-69)" - ], - "enumerationChronology_sort": [ - " 1-1928" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061038323" + "enumerationChronology_sort": [ + " 1-1928" ], - "identifier": [ - "urn:shelfmark:Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)", - "urn:barcode:33433061038323" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)" ], + "uri": "i14746595", "identifierV2": [ { - "value": "Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)" }, { - "value": "33433061038323", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061038323" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" ], - "owner_packed": [ - "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + "enumerationChronology": [ + "v. 1, 2 (1928-19, 1959-69)" ], - "physicalLocation": [ - "Sc Ser.-M .H592" + "idBarcode": [ + "33433061038323" + ], + "owner_packed": [ + "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], "requestable": [ true ], - "shelfMark": [ - "Sc Ser.-M .H592 v. 1, 2 (1928-19, 1959-69)" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc Ser.-M .H592 v. 000001, 2 (1928-19, 1959-69)", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i14746595" + ] }, "sort": [ " 1-1928" @@ -7484,6 +7546,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Law and disorder a research position paper" ], @@ -7616,85 +7681,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc Micro R-4202", + "urn:barcode:33433059035760" + ], + "physicalLocation": [ + "Sc Micro R-4202" + ], + "shelfMark_sort": "aSc Micro R-004202", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433059035760" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc Micro R-4202", - "urn:barcode:33433059035760" + "shelfMark": [ + "Sc Micro R-4202" ], + "uri": "i24023455", "identifierV2": [ { - "value": "Sc Micro R-4202", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc Micro R-4202" }, { - "value": "33433059035760", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433059035760" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433059035760" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc Micro R-4202" - ], "requestable": [ true ], - "shelfMark": [ - "Sc Micro R-4202" + "catalogItemType": [ + { + "id": "catalogItemType:6", + "label": "microfilm service copy" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc Micro R-004202", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i24023455" + ] }, "sort": [ null @@ -8046,6 +8111,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Historia del Gran Caldas" ], @@ -8179,91 +8247,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:32", - "label": "google project, book" - } + "identifier": [ + "urn:shelfmark:HDK 84-1693 v. 1", + "urn:barcode:33433097665214" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "HDK 84-1693" + ], + "shelfMark_sort": "aHDK 84-1693 v. 000001", "catalogItemType_packed": [ "catalogItemType:32||google project, book" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "HDK 84-1693 v. 1" + ], + "uri": "i14746647", + "identifierV2": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "type": "bf:ShelfMark", + "value": "HDK 84-1693 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433097665214" } ], "holdingLocation_packed": [ "loc:mal92||Schwarzman Building - General Research Room 315" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433097665214" ], - "identifier": [ - "urn:shelfmark:HDK 84-1693 v. 1", - "urn:barcode:33433097665214" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "HDK 84-1693 v. 1", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433097665214", - "type": "bf:Barcode" + "id": "catalogItemType:32", + "label": "google project, book" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "HDK 84-1693" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "HDK 84-1693 v. 1" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "aHDK 84-1693 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i14746647" + ] }, "sort": [ " 1-" @@ -8310,6 +8378,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Ritsafn" ], @@ -8443,100 +8514,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JFL 84-217 v. 2", + "urn:barcode:33433004069567" + ], + "physicalLocation": [ + "JFL 84-217" + ], + "shelfMark_sort": "aJFL 84-217 v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JFL 84-217 v. 2" + ], + "uri": "i10003946", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JFL 84-217 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433004069567" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433004069567" ], - "identifier": [ - "urn:shelfmark:JFL 84-217 v. 2", - "urn:barcode:33433004069567" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], + "requestable": [ + true ], - "identifierV2": [ - { - "value": "JFL 84-217 v. 2", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433004069567", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner": [ + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "loc:rc2ma", + "label": "Offsite" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "JFL 84-217" - ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JFL 84-217 v. 2" - ], - "shelfMark_sort": "aJFL 84-217 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i10003946" + ] }, "sort": [ " 2-" @@ -8551,100 +8622,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JFL 84-217 v. 1", + "urn:barcode:33433004069559" + ], + "physicalLocation": [ + "JFL 84-217" + ], + "shelfMark_sort": "aJFL 84-217 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JFL 84-217 v. 1" + ], + "uri": "i10003945", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JFL 84-217 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433004069559" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433004069559" ], - "identifier": [ - "urn:shelfmark:JFL 84-217 v. 1", - "urn:barcode:33433004069559" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JFL 84-217 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433004069559", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JFL 84-217" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JFL 84-217 v. 1" - ], - "shelfMark_sort": "aJFL 84-217 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i10003945" + ] }, "sort": [ " 1-" @@ -8700,6 +8771,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Ritsafn" ], @@ -8831,100 +8905,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JFL 84-216 v. 2", + "urn:barcode:33433004069542" + ], + "physicalLocation": [ + "JFL 84-216" + ], + "shelfMark_sort": "aJFL 84-216 v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JFL 84-216 v. 2" + ], + "uri": "i10003948", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JFL 84-216 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433004069542" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433004069542" ], - "identifier": [ - "urn:shelfmark:JFL 84-216 v. 2", - "urn:barcode:33433004069542" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JFL 84-216 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433004069542", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JFL 84-216" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JFL 84-216 v. 2" - ], - "shelfMark_sort": "aJFL 84-216 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i10003948" + ] }, "sort": [ " 2-" @@ -8939,100 +9013,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JFL 84-216 v. 1", + "urn:barcode:33433004069534" + ], + "physicalLocation": [ + "JFL 84-216" + ], + "shelfMark_sort": "aJFL 84-216 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JFL 84-216 v. 1" + ], + "uri": "i10003947", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JFL 84-216 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433004069534" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433004069534" ], - "identifier": [ - "urn:shelfmark:JFL 84-216 v. 1", - "urn:barcode:33433004069534" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JFL 84-216 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433004069534", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JFL 84-216" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JFL 84-216 v. 1" - ], - "shelfMark_sort": "aJFL 84-216 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i10003947" + ] }, "sort": [ " 1-" @@ -9093,6 +9167,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Hellēnikē paradosiakē architektonikē" ], @@ -9232,88 +9309,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "identifier": [ + "urn:shelfmark:3-MQW+ 84-2551 v. 7", + "urn:barcode:33433105160679" ], + "physicalLocation": [ + "3-MQW+ 84-2551" + ], + "shelfMark_sort": "a3-MQW+ 84-2551 v. 000007", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v. 7" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 7-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "3-MQW+ 84-2551 v. 7" + ], + "uri": "i14746675", + "identifierV2": [ { - "id": "loc:mab98", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" + "type": "bf:ShelfMark", + "value": "3-MQW+ 84-2551 v. 7" + }, + { + "type": "bf:Barcode", + "value": "33433105160679" } ], "holdingLocation_packed": [ "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" ], + "enumerationChronology": [ + "v. 7" + ], "idBarcode": [ "33433105160679" ], - "identifier": [ - "urn:shelfmark:3-MQW+ 84-2551 v. 7", - "urn:barcode:33433105160679" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "3-MQW+ 84-2551 v. 7", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433105160679", - "type": "bf:Barcode" + "id": "catalogItemType:2", + "label": "book non-circ" } ], - "physicalLocation": [ - "3-MQW+ 84-2551" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "3-MQW+ 84-2551 v. 7" + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } ], - "shelfMark_sort": "a3-MQW+ 84-2551 v. 000007", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 7, "lte": 7 } - ], - "uri": "i14746675" + ] }, "sort": [ " 7-" @@ -9328,88 +9405,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "identifier": [ + "urn:shelfmark:3-MQW+ 84-2551 v. 6", + "urn:barcode:33433105160661" + ], + "physicalLocation": [ + "3-MQW+ 84-2551" ], + "shelfMark_sort": "a3-MQW+ 84-2551 v. 000006", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v. 6" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 6-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "3-MQW+ 84-2551 v. 6" + ], + "uri": "i14746674", + "identifierV2": [ { - "id": "loc:mab98", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" + "type": "bf:ShelfMark", + "value": "3-MQW+ 84-2551 v. 6" + }, + { + "type": "bf:Barcode", + "value": "33433105160661" } ], "holdingLocation_packed": [ "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" ], + "enumerationChronology": [ + "v. 6" + ], "idBarcode": [ "33433105160661" ], - "identifier": [ - "urn:shelfmark:3-MQW+ 84-2551 v. 6", - "urn:barcode:33433105160661" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "3-MQW+ 84-2551 v. 6", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433105160661", - "type": "bf:Barcode" + "id": "catalogItemType:2", + "label": "book non-circ" } ], - "physicalLocation": [ - "3-MQW+ 84-2551" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "3-MQW+ 84-2551 v. 6" + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } ], - "shelfMark_sort": "a3-MQW+ 84-2551 v. 000006", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 6, "lte": 6 } - ], - "uri": "i14746674" + ] }, "sort": [ " 6-" @@ -9424,88 +9501,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "identifier": [ + "urn:shelfmark:3-MQW+ 84-2551 v. 5", + "urn:barcode:33433105160653" + ], + "physicalLocation": [ + "3-MQW+ 84-2551" ], + "shelfMark_sort": "a3-MQW+ 84-2551 v. 000005", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v. 5" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 5-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "3-MQW+ 84-2551 v. 5" + ], + "uri": "i14746673", + "identifierV2": [ { - "id": "loc:mab98", - "label": "Schwarzman Building M2 - Art and Architecture Room 300" + "type": "bf:ShelfMark", + "value": "3-MQW+ 84-2551 v. 5" + }, + { + "type": "bf:Barcode", + "value": "33433105160653" } ], "holdingLocation_packed": [ "loc:mab98||Schwarzman Building M2 - Art and Architecture Room 300" ], + "enumerationChronology": [ + "v. 5" + ], "idBarcode": [ "33433105160653" ], - "identifier": [ - "urn:shelfmark:3-MQW+ 84-2551 v. 5", - "urn:barcode:33433105160653" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "3-MQW+ 84-2551 v. 5", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433105160653", - "type": "bf:Barcode" + "id": "catalogItemType:2", + "label": "book non-circ" } ], - "physicalLocation": [ - "3-MQW+ 84-2551" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "3-MQW+ 84-2551 v. 5" + "holdingLocation": [ + { + "id": "loc:mab98", + "label": "Schwarzman Building M2 - Art and Architecture Room 300" + } ], - "shelfMark_sort": "a3-MQW+ 84-2551 v. 000005", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 5, "lte": 5 } - ], - "uri": "i14746673" + ] }, "sort": [ " 5-" @@ -9563,6 +9640,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Quadruple 2" ], @@ -9697,91 +9777,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:ICM (Austria) 85-584 v. 2", + "urn:barcode:33433090390752" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "ICM (Austria) 85-584" + ], + "shelfMark_sort": "aICM (Austria) 85-584 v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "ICM (Austria) 85-584 v. 2" + ], + "uri": "i14746681", + "identifierV2": [ { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" + "type": "bf:ShelfMark", + "value": "ICM (Austria) 85-584 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433090390752" } ], "holdingLocation_packed": [ "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433090390752" ], - "identifier": [ - "urn:shelfmark:ICM (Austria) 85-584 v. 2", - "urn:barcode:33433090390752" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "ICM (Austria) 85-584 v. 2", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433090390752", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "ICM (Austria) 85-584" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "ICM (Austria) 85-584 v. 2" + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } ], - "shelfMark_sort": "aICM (Austria) 85-584 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i14746681" + ] }, "sort": [ " 2-" @@ -9845,6 +9925,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Āciriya nikaṇṭu : cēntaṉ tivākaram, piṅkala nikaṇṭu, cūṭāmaṇi, kayātaram ākiya nikaṇṭukaḷiṉ oppumaip pakutikaḷuṭaṉ" ], @@ -9988,88 +10071,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-3259", + "urn:barcode:33433061303693" + ], + "physicalLocation": [ + "*OLB 84-3259" + ], + "shelfMark_sort": "a*OLB 84-003259", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061303693" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-3259", - "urn:barcode:33433061303693" + "shelfMark": [ + "*OLB 84-3259" ], + "uri": "i13785013", "identifierV2": [ { - "value": "*OLB 84-3259", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-3259" }, { - "value": "33433061303693", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061303693" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061303693" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-3259" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-3259" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-003259", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13785013" + ] }, "sort": [ null @@ -10084,31 +10167,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*OLB 84-3259", + "urn:barcode:33433061354662" + ], + "physicalLocation": [ + "*OLB 84-3259" + ], + "shelfMark_sort": "a*OLB 84-003259", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Text" + "shelfMark": [ + "*OLB 84-3259" ], - "holdingLocation": [ + "uri": "i13785014", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLB 84-3259" + }, + { + "type": "bf:Barcode", + "value": "33433061354662" } ], "holdingLocation_packed": [ @@ -10117,55 +10219,36 @@ "idBarcode": [ "33433061354662" ], - "identifier": [ - "urn:shelfmark:*OLB 84-3259", - "urn:barcode:33433061354662" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLB 84-3259", - "type": "bf:ShelfMark" - }, - { - "value": "33433061354662", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLB 84-3259" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLB 84-3259" - ], - "shelfMark_sort": "a*OLB 84-003259", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13785014" + ] }, "sort": [ null @@ -11023,6 +11106,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Jānapada sāhityadarśana" ], @@ -11166,100 +11252,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLA 83-2636 v. 4", + "urn:barcode:33433013119130" + ], + "physicalLocation": [ + "*OLA 83-2636" + ], + "shelfMark_sort": "a*OLA 83-2636 v. 000004", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 4" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 4-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLA 83-2636 v. 4" + ], + "uri": "i10004641", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLA 83-2636 v. 4" + }, + { + "type": "bf:Barcode", + "value": "33433013119130" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 4" + ], "idBarcode": [ "33433013119130" ], - "identifier": [ - "urn:shelfmark:*OLA 83-2636 v. 4", - "urn:barcode:33433013119130" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLA 83-2636 v. 4", - "type": "bf:ShelfMark" - }, - { - "value": "33433013119130", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLA 83-2636" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLA 83-2636 v. 4" - ], - "shelfMark_sort": "a*OLA 83-2636 v. 000004", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 4, "lte": 4 } - ], - "uri": "i10004641" + ] }, "sort": [ " 4-" @@ -11274,100 +11360,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLA 83-2636 v. 2", + "urn:barcode:33433005544246" + ], + "physicalLocation": [ + "*OLA 83-2636" + ], + "shelfMark_sort": "a*OLA 83-2636 v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLA 83-2636 v. 2" + ], + "uri": "i10004640", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLA 83-2636 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433005544246" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433005544246" ], - "identifier": [ - "urn:shelfmark:*OLA 83-2636 v. 2", - "urn:barcode:33433005544246" - ], - "identifierV2": [ - { - "value": "*OLA 83-2636 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433005544246", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLA 83-2636" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLA 83-2636 v. 2" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLA 83-2636 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i10004640" + ] }, "sort": [ " 2-" @@ -11382,100 +11468,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLA 83-2636 v. 1", + "urn:barcode:33433005544238" + ], + "physicalLocation": [ + "*OLA 83-2636" + ], + "shelfMark_sort": "a*OLA 83-2636 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLA 83-2636 v. 1" + ], + "uri": "i10004639", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLA 83-2636 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433005544238" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433005544238" ], - "identifier": [ - "urn:shelfmark:*OLA 83-2636 v. 1", - "urn:barcode:33433005544238" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLA 83-2636 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433005544238", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLA 83-2636" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLA 83-2636 v. 1" - ], - "shelfMark_sort": "a*OLA 83-2636 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i10004639" + ] }, "sort": [ " 1-" @@ -11534,6 +11620,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Aḍwāʼ ʻalá mutashābihāt al-Qurʼān ; yaḥtawī ʻalá 1600 suʼāl wa-jawāb" ], @@ -11663,88 +11752,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OGDM 82-3193", + "urn:barcode:33433005577105" + ], + "physicalLocation": [ + "*OGDM 82-3193" + ], + "shelfMark_sort": "a*OGDM 82-003193", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433005577105" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGDM 82-3193", - "urn:barcode:33433005577105" + "shelfMark": [ + "*OGDM 82-3193" ], + "uri": "i10004653", "identifierV2": [ { - "value": "*OGDM 82-3193", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGDM 82-3193" }, { - "value": "33433005577105", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433005577105" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005577105" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGDM 82-3193" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGDM 82-3193" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGDM 82-003193", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10004653" + ] }, "sort": [ null @@ -11822,15 +11911,18 @@ "createdYear": [ 1983 ], + "buildingLocationIds": [ + "sc" + ], "dateEndString": [ "9999" ], - "title": [ - "La Région d'In Gall--Tegidda n Tesemt (Niger) : programme archéologique d'urgence, 1977-1981." - ], "type": [ "nypl:Item" ], + "title": [ + "La Région d'In Gall--Tegidda n Tesemt (Niger) : programme archéologique d'urgence, 1977-1981." + ], "shelfMark": [ "Sc F 87-35" ], @@ -11843,12 +11935,12 @@ "idLccn": [ "84121246" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Etudes nigériennes ; no 47-52" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Grébénart, Danilo.", "Paris, François, 1946-", @@ -11858,9 +11950,6 @@ "dateStartYear": [ 1983 ], - "idOclc": [ - "12840091" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -11911,6 +12000,9 @@ "value": "(OCoLC)12840091" } ], + "idOclc": [ + "12840091" + ], "dateEndYear": [ 9999 ], @@ -11918,10 +12010,6 @@ "publicationStatement": [ "Niamey : Institut de recherches en sciences humaines, 1983-<1992>" ], - "idIsbn": [ - "2859210601 (v. 4)", - "9782859210601 (v. 4)" - ], "identifier": [ "urn:shelfmark:Sc F 87-35", "urn:bnum:10008408", @@ -11935,6 +12023,10 @@ "urn:lccn:84121246", "urn:identifier:(OCoLC)12840091" ], + "idIsbn": [ + "2859210601 (v. 4)", + "9782859210601 (v. 4)" + ], "numCheckinCardItems": [ 0 ], @@ -12014,88 +12106,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "identifier": [ + "urn:shelfmark:Sc F 87-35 t. 4-5", + "urn:barcode:33433057875258" ], - "enumerationChronology": [ - "t. 4-5" + "physicalLocation": [ + "Sc F 87-35" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aSc F 87-35 t. 4-000005", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433057875258" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc F 87-35 t. 4-5", - "urn:barcode:33433057875258" + "shelfMark": [ + "Sc F 87-35 t. 4-5" ], + "uri": "i12540453", "identifierV2": [ { - "value": "Sc F 87-35 t. 4-5", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc F 87-35 t. 4-5" }, { - "value": "33433057875258", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433057875258" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "enumerationChronology": [ + "t. 4-5" + ], + "idBarcode": [ + "33433057875258" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc F 87-35" - ], "requestable": [ true ], - "shelfMark": [ - "Sc F 87-35 t. 4-5" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc F 87-35 t. 4-000005", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540453" + ] }, "sort": [ null @@ -12110,88 +12202,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "identifier": [ + "urn:shelfmark:Sc F 87-35 t. 3", + "urn:barcode:33433057875068" ], - "enumerationChronology": [ - "t. 3" + "physicalLocation": [ + "Sc F 87-35" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aSc F 87-35 t. 000003", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433057875068" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc F 87-35 t. 3", - "urn:barcode:33433057875068" + "shelfMark": [ + "Sc F 87-35 t. 3" ], + "uri": "i12540452", "identifierV2": [ { - "value": "Sc F 87-35 t. 3", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc F 87-35 t. 3" }, { - "value": "33433057875068", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433057875068" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "enumerationChronology": [ + "t. 3" + ], + "idBarcode": [ + "33433057875068" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc F 87-35" - ], "requestable": [ true ], - "shelfMark": [ - "Sc F 87-35 t. 3" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc F 87-35 t. 000003", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540452" + ] }, "sort": [ null @@ -12206,88 +12298,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "identifier": [ + "urn:shelfmark:Sc F 87-35 t. 2", + "urn:barcode:33433057875050" ], - "enumerationChronology": [ - "t. 2" + "physicalLocation": [ + "Sc F 87-35" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aSc F 87-35 t. 000002", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433057875050" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc F 87-35 t. 2", - "urn:barcode:33433057875050" + "shelfMark": [ + "Sc F 87-35 t. 2" ], + "uri": "i12540451", "identifierV2": [ { - "value": "Sc F 87-35 t. 2", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc F 87-35 t. 2" }, { - "value": "33433057875050", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433057875050" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "enumerationChronology": [ + "t. 2" + ], + "idBarcode": [ + "33433057875050" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc F 87-35" - ], "requestable": [ true ], - "shelfMark": [ - "Sc F 87-35 t. 2" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc F 87-35 t. 000002", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540451" + ] }, "sort": [ null @@ -12654,15 +12746,18 @@ "createdYear": [ 1986 ], + "buildingLocationIds": [ + "rc" + ], "dateEndString": [ "9999" ], - "title": [ - "Novellae : pars graeca" - ], "type": [ "nypl:Item" ], + "title": [ + "Novellae : pars graeca" + ], "shelfMark": [ "JLN 88-42" ], @@ -12675,20 +12770,17 @@ "creatorLiteral": [ "Bartoletti Colombo, Anna Maria." ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Legum Iustiniani imperatoris vocabularium" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Archi, Gian Gualberto." ], "dateStartYear": [ - 1986 - ], - "idOclc": [ - "NYPG008000116-B" + 1986 ], "identifierV2": [ { @@ -12712,6 +12804,9 @@ "value": "(WaOLN)nyp0208964" } ], + "idOclc": [ + "NYPG008000116-B" + ], "dateEndYear": [ 9999 ], @@ -12719,9 +12814,6 @@ "publicationStatement": [ "Milano : Cisalpino-Goliardica, c1986-" ], - "idIsbn": [ - "8820505517 (v. 1)" - ], "identifier": [ "urn:shelfmark:JLN 88-42", "urn:bnum:10008989", @@ -12729,6 +12821,9 @@ "urn:oclc:NYPG008000116-B", "urn:identifier:(WaOLN)nyp0208964" ], + "idIsbn": [ + "8820505517 (v. 1)" + ], "numCheckinCardItems": [ 0 ], @@ -12798,100 +12893,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JLN 88-42 v. 5", + "urn:barcode:33433079237768" + ], + "physicalLocation": [ + "JLN 88-42" + ], + "shelfMark_sort": "aJLN 88-42 v. 000005", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 5" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 5-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JLN 88-42 v. 5" + ], + "uri": "i17447326", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JLN 88-42 v. 5" + }, + { + "type": "bf:Barcode", + "value": "33433079237768" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 5" + ], "idBarcode": [ "33433079237768" ], - "identifier": [ - "urn:shelfmark:JLN 88-42 v. 5", - "urn:barcode:33433079237768" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JLN 88-42 v. 5", - "type": "bf:ShelfMark" - }, - { - "value": "33433079237768", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JLN 88-42" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JLN 88-42 v. 5" - ], - "shelfMark_sort": "aJLN 88-42 v. 000005", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 5, "lte": 5 } - ], - "uri": "i17447326" + ] }, "sort": [ " 5-" @@ -12906,100 +13001,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JLN 88-42 v. 3", + "urn:barcode:33433079237776" + ], + "physicalLocation": [ + "JLN 88-42" + ], + "shelfMark_sort": "aJLN 88-42 v. 000003", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 3" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 3-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JLN 88-42 v. 3" + ], + "uri": "i17447327", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JLN 88-42 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433079237776" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 3" + ], "idBarcode": [ "33433079237776" ], - "identifier": [ - "urn:shelfmark:JLN 88-42 v. 3", - "urn:barcode:33433079237776" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JLN 88-42 v. 3", - "type": "bf:ShelfMark" - }, - { - "value": "33433079237776", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JLN 88-42" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JLN 88-42 v. 3" - ], - "shelfMark_sort": "aJLN 88-42 v. 000003", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 3, "lte": 3 } - ], - "uri": "i17447327" + ] }, "sort": [ " 3-" @@ -13014,100 +13109,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JLN 88-42 v. 2", + "urn:barcode:33433079237784" + ], + "physicalLocation": [ + "JLN 88-42" + ], + "shelfMark_sort": "aJLN 88-42 v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JLN 88-42 v. 2" + ], + "uri": "i17447328", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JLN 88-42 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433079237784" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433079237784" ], - "identifier": [ - "urn:shelfmark:JLN 88-42 v. 2", - "urn:barcode:33433079237784" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JLN 88-42 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433079237784", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JLN 88-42" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JLN 88-42 v. 2" - ], - "shelfMark_sort": "aJLN 88-42 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i17447328" + ] }, "sort": [ " 2-" @@ -13168,6 +13263,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Datapro reports on minicomputers" ], @@ -13302,100 +13400,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JSF 85-437 v. 3", + "urn:barcode:33433059486757" + ], + "physicalLocation": [ + "JSF 85-437" + ], + "shelfMark_sort": "aJSF 85-437 v. 000003", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 3" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 3-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JSF 85-437 v. 3" + ], + "uri": "i13785402", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JSF 85-437 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433059486757" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 3" + ], "idBarcode": [ "33433059486757" ], - "identifier": [ - "urn:shelfmark:JSF 85-437 v. 3", - "urn:barcode:33433059486757" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JSF 85-437 v. 3", - "type": "bf:ShelfMark" - }, - { - "value": "33433059486757", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JSF 85-437" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JSF 85-437 v. 3" - ], - "shelfMark_sort": "aJSF 85-437 v. 000003", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 3, "lte": 3 } - ], - "uri": "i13785402" + ] }, "sort": [ " 3-" @@ -13410,100 +13508,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JSF 85-437 v. 2", + "urn:barcode:33433059486500" + ], + "physicalLocation": [ + "JSF 85-437" + ], + "shelfMark_sort": "aJSF 85-437 v. 000002", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JSF 85-437 v. 2" + ], + "uri": "i13785401", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JSF 85-437 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433059486500" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433059486500" ], - "identifier": [ - "urn:shelfmark:JSF 85-437 v. 2", - "urn:barcode:33433059486500" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JSF 85-437 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433059486500", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:2", + "label": "book non-circ" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JSF 85-437" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JSF 85-437 v. 2" - ], - "shelfMark_sort": "aJSF 85-437 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i13785401" + ] }, "sort": [ " 2-" @@ -13518,100 +13616,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JSF 85-437 v. 1", + "urn:barcode:33433037693862" + ], + "physicalLocation": [ + "JSF 85-437" + ], + "shelfMark_sort": "aJSF 85-437 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JSF 85-437 v. 1" + ], + "uri": "i12540492", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JSF 85-437 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433037693862" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433037693862" ], - "identifier": [ - "urn:shelfmark:JSF 85-437 v. 1", - "urn:barcode:33433037693862" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JSF 85-437 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433037693862", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JSF 85-437" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JSF 85-437 v. 1" - ], - "shelfMark_sort": "aJSF 85-437 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i12540492" + ] }, "sort": [ " 1-" @@ -13675,6 +13773,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Datapro directory of microcomputer software" ], @@ -13811,100 +13912,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JSF 85-438 v. 3", + "urn:barcode:33433059486724" + ], + "physicalLocation": [ + "JSF 85-438" + ], + "shelfMark_sort": "aJSF 85-438 v. 000003", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 3" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 3-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JSF 85-438 v. 3" + ], + "uri": "i13785404", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JSF 85-438 v. 3" + }, + { + "type": "bf:Barcode", + "value": "33433059486724" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 3" + ], "idBarcode": [ "33433059486724" ], - "identifier": [ - "urn:shelfmark:JSF 85-438 v. 3", - "urn:barcode:33433059486724" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JSF 85-438 v. 3", - "type": "bf:ShelfMark" - }, - { - "value": "33433059486724", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JSF 85-438" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JSF 85-438 v. 3" - ], - "shelfMark_sort": "aJSF 85-438 v. 000003", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 3, "lte": 3 } - ], - "uri": "i13785404" + ] }, "sort": [ " 3-" @@ -13919,100 +14020,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JSF 85-438 v. 2", + "urn:barcode:33433059486450" + ], + "physicalLocation": [ + "JSF 85-438" + ], + "shelfMark_sort": "aJSF 85-438 v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JSF 85-438 v. 2" + ], + "uri": "i13785403", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JSF 85-438 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433059486450" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433059486450" ], - "identifier": [ - "urn:shelfmark:JSF 85-438 v. 2", - "urn:barcode:33433059486450" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JSF 85-438 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433059486450", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JSF 85-438" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JSF 85-438 v. 2" - ], - "shelfMark_sort": "aJSF 85-438 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i13785403" + ] }, "sort": [ " 2-" @@ -14027,100 +14128,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JSF 85-438 v. 1", + "urn:barcode:33433037693870" + ], + "physicalLocation": [ + "JSF 85-438" + ], + "shelfMark_sort": "aJSF 85-438 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JSF 85-438 v. 1" + ], + "uri": "i12540493", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JSF 85-438 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433037693870" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433037693870" ], - "identifier": [ - "urn:shelfmark:JSF 85-438 v. 1", - "urn:barcode:33433037693870" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JSF 85-438 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433037693870", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JSF 85-438" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JSF 85-438 v. 1" - ], - "shelfMark_sort": "aJSF 85-438 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i12540493" + ] }, "sort": [ " 1-" @@ -14179,6 +14280,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Ilakkaṇat tokai." ], @@ -14322,100 +14426,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 85-879 v. 2", + "urn:barcode:33433061304865" + ], + "physicalLocation": [ + "*OLB 85-879" + ], + "shelfMark_sort": "a*OLB 85-879 v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLB 85-879 v. 2" + ], + "uri": "i13785411", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLB 85-879 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433061304865" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433061304865" ], - "identifier": [ - "urn:shelfmark:*OLB 85-879 v. 2", - "urn:barcode:33433061304865" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLB 85-879 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433061304865", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLB 85-879" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLB 85-879 v. 2" - ], - "shelfMark_sort": "a*OLB 85-879 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i13785411" + ] }, "sort": [ " 2-" @@ -14430,100 +14534,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 85-879 v. 1", + "urn:barcode:33433061304857" + ], + "physicalLocation": [ + "*OLB 85-879" + ], + "shelfMark_sort": "a*OLB 85-879 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLB 85-879 v. 1" + ], + "uri": "i13785410", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLB 85-879 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433061304857" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433061304857" ], - "identifier": [ - "urn:shelfmark:*OLB 85-879 v. 1", - "urn:barcode:33433061304857" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLB 85-879 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433061304857", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLB 85-879" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLB 85-879 v. 1" - ], - "shelfMark_sort": "a*OLB 85-879 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i13785410" + ] }, "sort": [ " 1-" @@ -14567,15 +14671,18 @@ "createdYear": [ 1960 ], + "buildingLocationIds": [ + "ma" + ], "dateEndString": [ "9999" ], - "title": [ - "Villiputtūrār iyaṟṟiya Makāpāratam; Vai. Mu. Kōpālakiruṣṇamācāriyar iyaṟṟiya uraiyuṭaṉ." - ], "type": [ "nypl:Item" ], + "title": [ + "Villiputtūrār iyaṟṟiya Makāpāratam; Vai. Mu. Kōpālakiruṣṇamācāriyar iyaṟṟiya uraiyuṭaṉ." + ], "shelfMark": [ "*OLY 87-5294" ], @@ -14604,9 +14711,6 @@ "dateStartYear": [ 1960 ], - "idOclc": [ - "NYPG009000066-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -14633,6 +14737,9 @@ "value": "(WaOLN)nyp0209293" } ], + "idOclc": [ + "NYPG009000066-B" + ], "popularity": 7, "dateEndYear": [ 9999 @@ -14715,91 +14822,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 87-5294 v. 9-10", + "urn:barcode:33433059585376" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 87-5294" ], + "shelfMark_sort": "a*OLY 87-5294 v. 000009-10", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 9-10" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 9-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLY 87-5294 v. 9-10" + ], + "uri": "i13785440", + "identifierV2": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "type": "bf:ShelfMark", + "value": "*OLY 87-5294 v. 9-10" + }, + { + "type": "bf:Barcode", + "value": "33433059585376" } ], "holdingLocation_packed": [ "loc:mal92||Schwarzman Building - General Research Room 315" ], + "enumerationChronology": [ + "v. 9-10" + ], "idBarcode": [ "33433059585376" ], - "identifier": [ - "urn:shelfmark:*OLY 87-5294 v. 9-10", - "urn:barcode:33433059585376" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "*OLY 87-5294 v. 9-10", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433059585376", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "*OLY 87-5294" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "*OLY 87-5294 v. 9-10" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 87-5294 v. 000009-10", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 9, "lte": 10 } - ], - "uri": "i13785440" + ] }, "sort": [ " 9-" @@ -14814,91 +14921,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*OLY 87-5294 v. 6-8", + "urn:barcode:33433059585368" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "*OLY 87-5294" + ], + "shelfMark_sort": "a*OLY 87-5294 v. 000006-8", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 6-8" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 6-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLY 87-5294 v. 6-8" + ], + "uri": "i13785439", + "identifierV2": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "type": "bf:ShelfMark", + "value": "*OLY 87-5294 v. 6-8" + }, + { + "type": "bf:Barcode", + "value": "33433059585368" } ], "holdingLocation_packed": [ "loc:mal92||Schwarzman Building - General Research Room 315" ], + "enumerationChronology": [ + "v. 6-8" + ], "idBarcode": [ "33433059585368" ], - "identifier": [ - "urn:shelfmark:*OLY 87-5294 v. 6-8", - "urn:barcode:33433059585368" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "*OLY 87-5294 v. 6-8", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433059585368", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "*OLY 87-5294" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "*OLY 87-5294 v. 6-8" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "a*OLY 87-5294 v. 000006-8", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 6, "lte": 8 } - ], - "uri": "i13785439" + ] }, "sort": [ " 6-" @@ -14913,14 +15020,63 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "identifier": [ + "urn:shelfmark:*OLY 87-5294 v. 5", + "urn:barcode:33433059585350" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*OLY 87-5294" + ], + "shelfMark_sort": "a*OLY 87-5294 v. 000005", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], "accessMessage": [ { "id": "accessMessage:1", "label": "Use in library" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 5-" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OLY 87-5294 v. 5" + ], + "uri": "i13785438", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OLY 87-5294 v. 5" + }, + { + "type": "bf:Barcode", + "value": "33433059585350" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" + ], + "enumerationChronology": [ + "v. 5" + ], + "idBarcode": [ + "33433059585350" + ], + "requestable": [ + true ], "catalogItemType": [ { @@ -14928,15 +15084,6 @@ "label": "book, limited circ, MaRLI" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "enumerationChronology": [ - "v. 5" - ], - "enumerationChronology_sort": [ - " 5-" - ], "formatLiteral": [ "Text" ], @@ -14946,58 +15093,18 @@ "label": "Schwarzman Building - General Research Room 315" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" - ], - "idBarcode": [ - "33433059585350" - ], - "identifier": [ - "urn:shelfmark:*OLY 87-5294 v. 5", - "urn:barcode:33433059585350" - ], - "identifierV2": [ - { - "value": "*OLY 87-5294 v. 5", - "type": "bf:ShelfMark" - }, - { - "value": "33433059585350", - "type": "bf:Barcode" - } - ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "*OLY 87-5294" - ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLY 87-5294 v. 5" - ], - "shelfMark_sort": "a*OLY 87-5294 v. 000005", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 5, "lte": 5 } - ], - "uri": "i13785438" + ] }, "sort": [ " 5-" @@ -15068,6 +15175,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Orus emgek mektebteri ycyn qïrghïz tilinin oquu kitebi" ], @@ -15202,100 +15312,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*ZO-258, no. 1 no. 1-22", + "urn:barcode:33433105667400" + ], + "physicalLocation": [ + "*ZO-258, no. 1" + ], + "shelfMark_sort": "a*ZO-258, no. 000001 no. 1-22", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "enumerationChronology": [ - "no. 1-22" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*ZO-258, no. 1 no. 1-22" + ], + "uri": "i30068355", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*ZO-258, no. 1 no. 1-22" + }, + { + "type": "bf:Barcode", + "value": "33433105667400" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "no. 1-22" + ], "idBarcode": [ "33433105667400" ], - "identifier": [ - "urn:shelfmark:*ZO-258, no. 1 no. 1-22", - "urn:barcode:33433105667400" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*ZO-258, no. 1 no. 1-22", - "type": "bf:ShelfMark" - }, - { - "value": "33433105667400", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*ZO-258, no. 1" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*ZO-258, no. 1 no. 1-22" - ], - "shelfMark_sort": "a*ZO-258, no. 000001 no. 1-22", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 22 } - ], - "uri": "i30068355" + ] }, "sort": [ " 1-" @@ -15355,6 +15465,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "The book of Jared supplement[s] : a family record showing descendants of John Jared, 1737-1805, Hannah Whitacre, Rachel Palmer" ], @@ -15485,82 +15598,82 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "identifier": [ + "urn:shelfmark:APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 2", + "urn:barcode:33433093160152" ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" + "m2CustomerCode": [ + "XA" ], - "enumerationChronology": [ - "Suppl. 2" + "physicalLocation": [ + "APV (Jared) 85-2860 Suppl. Suppl. 1-2." ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aAPV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 000002", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433093160152" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 2", - "urn:barcode:33433093160152" + "shelfMark": [ + "APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 2" ], + "uri": "i27564651", "identifierV2": [ { - "value": "APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 2", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 2" }, { - "value": "33433093160152", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433093160152" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" ], - "physicalLocation": [ - "APV (Jared) 85-2860 Suppl. Suppl. 1-2." + "enumerationChronology": [ + "Suppl. 2" + ], + "idBarcode": [ + "33433093160152" ], "requestable": [ true ], - "shelfMark": [ - "APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 2" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } ], - "shelfMark_sort": "aAPV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 000002", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i27564651" + ] }, "sort": [ null @@ -15575,82 +15688,82 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "identifier": [ + "urn:shelfmark:APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 1", + "urn:barcode:33433093160145" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "APV (Jared) 85-2860 Suppl. Suppl. 1-2." + ], + "shelfMark_sort": "aAPV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 000001", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "accessMessage:1", + "label": "Use in library" } ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" + "status_packed": [ + "status:a||Available" ], - "enumerationChronology": [ - "Suppl. 1" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Text" + "shelfMark": [ + "APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 1" ], - "holdingLocation": [ + "uri": "i27564640", + "identifierV2": [ { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" + "type": "bf:ShelfMark", + "value": "APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 1" + }, + { + "type": "bf:Barcode", + "value": "33433093160145" } ], "holdingLocation_packed": [ "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" ], + "enumerationChronology": [ + "Suppl. 1" + ], "idBarcode": [ "33433093160145" ], - "identifier": [ - "urn:shelfmark:APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 1", - "urn:barcode:33433093160145" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 1", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433093160145", - "type": "bf:Barcode" + "id": "catalogItemType:2", + "label": "book non-circ" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "APV (Jared) 85-2860 Suppl. Suppl. 1-2." - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "APV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 1" + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } ], - "shelfMark_sort": "aAPV (Jared) 85-2860 Suppl. Suppl. 1-2. Suppl. 000001", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i27564640" + ] }, "sort": [ null @@ -15665,82 +15778,82 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:APV (Jared) 85-2860 Suppl. Suppl. 1-2 Suppl. ", + "urn:barcode:33433093160137" ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "m2CustomerCode": [ + "XA" ], - "enumerationChronology": [ - "Suppl. " + "physicalLocation": [ + "APV (Jared) 85-2860 Suppl. Suppl. 1-2" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aAPV (Jared) 85-2860 Suppl. Suppl. 1-2 Suppl. ", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433093160137" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:APV (Jared) 85-2860 Suppl. Suppl. 1-2 Suppl. ", - "urn:barcode:33433093160137" + "shelfMark": [ + "APV (Jared) 85-2860 Suppl. Suppl. 1-2 Suppl. " ], + "uri": "i14747026", "identifierV2": [ { - "value": "APV (Jared) 85-2860 Suppl. Suppl. 1-2 Suppl. ", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "APV (Jared) 85-2860 Suppl. Suppl. 1-2 Suppl. " }, { - "value": "33433093160137", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433093160137" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" ], - "physicalLocation": [ - "APV (Jared) 85-2860 Suppl. Suppl. 1-2" + "enumerationChronology": [ + "Suppl. " + ], + "idBarcode": [ + "33433093160137" ], "requestable": [ true ], - "shelfMark": [ - "APV (Jared) 85-2860 Suppl. Suppl. 1-2 Suppl. " + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } ], - "shelfMark_sort": "aAPV (Jared) 85-2860 Suppl. Suppl. 1-2 Suppl. ", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14747026" + ] }, "sort": [ null @@ -15790,6 +15903,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "sc" + ], "title": [ "The holy Qur'an : the last testament" ], @@ -15945,97 +16061,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc Ser.-M .K786 v. 1-3", + "urn:barcode:33433070348341" + ], + "physicalLocation": [ + "Sc Ser.-M .K786" + ], + "shelfMark_sort": "aSc Ser.-M .K786 v. 000001-3", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v. 1-3" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "Sc Ser.-M .K786 v. 1-3" + ], + "uri": "i14747080", + "identifierV2": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "type": "bf:ShelfMark", + "value": "Sc Ser.-M .K786 v. 1-3" + }, + { + "type": "bf:Barcode", + "value": "33433070348341" } ], "holdingLocation_packed": [ "loc:scff2||Schomburg Center - Research & Reference" ], + "enumerationChronology": [ + "v. 1-3" + ], "idBarcode": [ "33433070348341" ], - "identifier": [ - "urn:shelfmark:Sc Ser.-M .K786 v. 1-3", - "urn:barcode:33433070348341" - ], - "identifierV2": [ - { - "value": "Sc Ser.-M .K786 v. 1-3", - "type": "bf:ShelfMark" - }, - { - "value": "33433070348341", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } - ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc Ser.-M .K786" - ], "requestable": [ true ], - "shelfMark": [ - "Sc Ser.-M .K786 v. 1-3" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc Ser.-M .K786 v. 000001-3", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 3 } - ], - "uri": "i14747080" + ] }, "sort": [ " 1-" @@ -16098,15 +16214,18 @@ "createdYear": [ 1958 ], + "buildingLocationIds": [ + "rc" + ], "dateEndString": [ "9999" ], - "title": [ - "Italy presents." - ], "type": [ "nypl:Item" ], + "title": [ + "Italy presents." + ], "shelfMark": [ "JLM 81-304" ], @@ -16132,10 +16251,6 @@ "dateStartYear": [ 1958 ], - "idOclc": [ - "1754066", - "NYPG010-S" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -16170,6 +16285,10 @@ "value": "(OCoLC)1754066" } ], + "idOclc": [ + "1754066", + "NYPG010-S" + ], "uniformTitle": [ "Quality." ], @@ -16226,15 +16345,15 @@ "placeOfPublication": [ "Rome" ], + "titleAlt": [ + "Italian trade magazine." + ], "issuance": [ { "id": "urn:biblevel:s", "label": "serial" } ], - "titleAlt": [ - "Italian trade magazine." - ], "dimensions": [ "29 cm." ] @@ -16261,21 +16380,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JLM 81-304 1970-1972", + "urn:barcode:33433017526959" + ], + "physicalLocation": [ + "JLM 81-304" + ], + "shelfMark_sort": "aJLM 81-304 1970-001972", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -16285,76 +16406,74 @@ "lte": "1972" } ], - "enumerationChronology": [ - "1970-1972" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1970" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JLM 81-304 1970-1972" + ], + "uri": "i12540520", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JLM 81-304 1970-1972" + }, + { + "type": "bf:Barcode", + "value": "33433017526959" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "1970-1972" + ], "idBarcode": [ "33433017526959" ], - "identifier": [ - "urn:shelfmark:JLM 81-304 1970-1972", - "urn:barcode:33433017526959" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JLM 81-304 1970-1972", - "type": "bf:ShelfMark" - }, - { - "value": "33433017526959", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JLM 81-304" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JLM 81-304 1970-1972" - ], - "shelfMark_sort": "aJLM 81-304 1970-001972", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540520" + ] }, "sort": [ " -1970" @@ -16369,21 +16488,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JLM 81-304 1967-1969", + "urn:barcode:33433017526942" + ], + "physicalLocation": [ + "JLM 81-304" + ], + "shelfMark_sort": "aJLM 81-304 1967-001969", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -16393,76 +16514,74 @@ "lte": "1969" } ], - "enumerationChronology": [ - "1967-1969" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:t||In transit" ], "enumerationChronology_sort": [ " -1967" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JLM 81-304 1967-1969" + ], + "uri": "i12540519", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JLM 81-304 1967-1969" + }, + { + "type": "bf:Barcode", + "value": "33433017526942" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "1967-1969" + ], "idBarcode": [ "33433017526942" ], - "identifier": [ - "urn:shelfmark:JLM 81-304 1967-1969", - "urn:barcode:33433017526942" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "JLM 81-304 1967-1969", - "type": "bf:ShelfMark" - }, - { - "value": "33433017526942", - "type": "bf:Barcode" - } + "requestable": [ + false ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JLM 81-304" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - false - ], - "shelfMark": [ - "JLM 81-304 1967-1969" - ], - "shelfMark_sort": "aJLM 81-304 1967-001969", "status": [ { "id": "status:t", "label": "In transit" } - ], - "status_packed": [ - "status:t||In transit" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540519" + ] }, "sort": [ " -1967" @@ -16535,6 +16654,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "The K.A.R.D. files--Adamson ancestry" ], @@ -17128,6 +17250,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Index of records Reformed Protestant Dutch Church of Herkimer" ], @@ -17260,91 +17385,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } - ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" + "identifier": [ + "urn:shelfmark:APR (Herkimer, N.Y.) 85-424 Index v. 2", + "urn:barcode:33433085274375" ], - "enumerationChronology": [ - "v. 2" + "m2CustomerCode": [ + "XF" ], - "enumerationChronology_sort": [ - " 2-" + "physicalLocation": [ + "APR (Herkimer, N.Y.) 85-424 Index" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aAPR (Herkimer, N.Y.) 85-424 Index v. 000002", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433085274375" + "enumerationChronology_sort": [ + " 2-" ], - "identifier": [ - "urn:shelfmark:APR (Herkimer, N.Y.) 85-424 Index v. 2", - "urn:barcode:33433085274375" + "type": [ + "bf:Item" ], + "shelfMark": [ + "APR (Herkimer, N.Y.) 85-424 Index v. 2" + ], + "uri": "i24831672", "identifierV2": [ { - "value": "APR (Herkimer, N.Y.) 85-424 Index v. 2", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "APR (Herkimer, N.Y.) 85-424 Index v. 2" }, { - "value": "33433085274375", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433085274375" } ], - "m2CustomerCode": [ - "XF" + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" + ], + "enumerationChronology": [ + "v. 2" ], - "physicalLocation": [ - "APR (Herkimer, N.Y.) 85-424 Index" + "idBarcode": [ + "33433085274375" ], "requestable": [ true ], - "shelfMark": [ - "APR (Herkimer, N.Y.) 85-424 Index v. 2" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } ], - "shelfMark_sort": "aAPR (Herkimer, N.Y.) 85-424 Index v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i24831672" + ] }, "sort": [ " 2-" @@ -17359,97 +17484,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1105", + "label": "Irma and Paul Milstein Division of United States History, Local History and Genealogy" } ], + "identifier": [ + "urn:shelfmark:APR (Herkimer, N.Y.) 85-424 Index v. 1-2", + "urn:barcode:33433032068110" + ], + "physicalLocation": [ + "APR (Herkimer, N.Y.) 85-424 Index" + ], + "shelfMark_sort": "aAPR (Herkimer, N.Y.) 85-424 Index v. 000001-2", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v. 1-2" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "APR (Herkimer, N.Y.) 85-424 Index v. 1-2" + ], + "uri": "i11901094", + "identifierV2": [ { - "id": "loc:magg2", - "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" + "type": "bf:ShelfMark", + "value": "APR (Herkimer, N.Y.) 85-424 Index v. 1-2" + }, + { + "type": "bf:Barcode", + "value": "33433032068110" } ], "holdingLocation_packed": [ "loc:magg2||Schwarzman Building - Milstein Division Mezzanine Room 121" ], + "enumerationChronology": [ + "v. 1-2" + ], "idBarcode": [ "33433032068110" ], - "identifier": [ - "urn:shelfmark:APR (Herkimer, N.Y.) 85-424 Index v. 1-2", - "urn:barcode:33433032068110" - ], - "identifierV2": [ - { - "value": "APR (Herkimer, N.Y.) 85-424 Index v. 1-2", - "type": "bf:ShelfMark" - }, - { - "value": "33433032068110", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1105", - "label": "Irma and Paul Milstein Division of United States History, Local History and Genealogy" - } - ], "owner_packed": [ "orgs:1105||Irma and Paul Milstein Division of United States History, Local History and Genealogy" ], - "physicalLocation": [ - "APR (Herkimer, N.Y.) 85-424 Index" - ], "requestable": [ false ], - "shelfMark": [ - "APR (Herkimer, N.Y.) 85-424 Index v. 1-2" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:magg2", + "label": "Schwarzman Building - Milstein Division Mezzanine Room 121" + } ], - "shelfMark_sort": "aAPR (Herkimer, N.Y.) 85-424 Index v. 000001-2", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 2 } - ], - "uri": "i11901094" + ] }, "sort": [ " 1-" @@ -17504,6 +17629,9 @@ "numItemsTotal": [ 92 ], + "buildingLocationIds": [ + "pa" + ], "createdYear": [ 1977 ], @@ -17516,12 +17644,12 @@ "type": [ "nypl:Item" ], - "shelfMark": [ - "*LA 81-296" - ], "numItemVolumesParsed": [ 57 ], + "shelfMark": [ + "*LA 81-296" + ], "createdString": [ "1977" ], @@ -17575,10 +17703,10 @@ "value": "(OCoLC)5909505" } ], + "popularity": 2, "uniformTitle": [ "Musica (Milan, Italy)" ], - "popularity": 2, "dateEndYear": [ 9999 ], @@ -17712,7 +17840,7 @@ "status": "Arrived" }, { - "coverage": "Vol. 46 No. 358 (Jul. 2024)", + "coverage": "Vol. 47 No. 358 (Jul. 2024)", "position": 15, "type": "nypl:CheckInBox", "shelfMark": [ @@ -17721,13 +17849,13 @@ "status": "Arrived" }, { - "coverage": "Vol. 46 No. 359 (Jul. 2024)", + "coverage": "Vol. 47 No. 359 (Sep. 2024)", "position": 16, "type": "nypl:CheckInBox", "shelfMark": [ "*LA 81-296" ], - "status": "Expected" + "status": "Arrived" }, { "coverage": "Vol. 46 No. 360 (Aug. 2024)", @@ -17741,7 +17869,7 @@ ], "holdingStatement": [ "1:1(May/Jun 1977)-12:53(Dec/Jan 1988/89),13:55(Apr/May 1989)-21:105(Oct/Dec 1997)-25:132(Dec 2001/Jan 2002),27:165(Apr 2005)-32:212(Dec/Jan 2010)", - "v. 32, no. 213 (2010-02) - v. 38, no. 269 (2015-09); v. 38, no. 271 (2015-11) - v. 40, no. 294 (2018-03); v. 41, no. 296 (2018-05) - v. 46, no. 358 (2024-07/08)" + "v. 32, no. 213 (2010-02) - v. 38, no. 269 (2015-09); v. 38, no. 271 (2015-11) - v. 40, no. 294 (2018-03); v. 41, no. 296 (2018-05) - v. 47, no. 359 (2024-09)" ], "identifier": [ { @@ -17770,7 +17898,7 @@ "uri": "h1036576" } ], - "updatedAt": 1726584288067, + "updatedAt": 1731427005315, "publicationStatement": [ "[Milano, Ed. Diapason Milano]" ], @@ -17851,7 +17979,7 @@ "_id": "b10010674", "_nested": { "field": "items", - "offset": 87 + "offset": 89 }, "_score": null, "_source": { @@ -17866,15 +17994,15 @@ ], "dateRange": [ { - "gte": "2024-06-01", - "lte": "2024-06-01" + "gte": "2024-09-01", + "lte": "2024-09-01" } ], "enumerationChronology": [ - "Vol. 47 No. 357 (Jun. 2024)" + "Vol. 47 No. 359 (Sep. 2024)" ], "enumerationChronology_sort": [ - " 47-2024-06-01" + " 47-2024-09-01" ], "formatLiteral": [ "Text" @@ -17910,7 +18038,7 @@ "type": [ "nypl:CheckinCardItem" ], - "uri": "i-h1036576-4", + "uri": "i-h1036576-2", "volumeRange": [ { "gte": 47, @@ -17918,11 +18046,11 @@ } ], "volumeRaw": [ - "Vol. 47 No. 357" + "Vol. 47 No. 359" ] }, "sort": [ - " 47-2024-06-01" + " 47-2024-09-01" ] }, { @@ -17930,7 +18058,7 @@ "_id": "b10010674", "_nested": { "field": "items", - "offset": 86 + "offset": 88 }, "_score": null, "_source": { @@ -17945,15 +18073,15 @@ ], "dateRange": [ { - "gte": "2024-05-01", - "lte": "2024-05-01" + "gte": "2024-07-01", + "lte": "2024-07-01" } ], "enumerationChronology": [ - "Vol. 47 No. 356 (May. 2024)" + "Vol. 47 No. 358 (Jul. 2024)" ], "enumerationChronology_sort": [ - " 47-2024-05-01" + " 47-2024-07-01" ], "formatLiteral": [ "Text" @@ -17989,7 +18117,7 @@ "type": [ "nypl:CheckinCardItem" ], - "uri": "i-h1036576-5", + "uri": "i-h1036576-3", "volumeRange": [ { "gte": 47, @@ -17997,11 +18125,11 @@ } ], "volumeRaw": [ - "Vol. 47 No. 356" + "Vol. 47 No. 358" ] }, "sort": [ - " 47-2024-05-01" + " 47-2024-07-01" ] }, { @@ -18009,7 +18137,7 @@ "_id": "b10010674", "_nested": { "field": "items", - "offset": 90 + "offset": 87 }, "_score": null, "_source": { @@ -18024,15 +18152,15 @@ ], "dateRange": [ { - "gte": "2024-08-01", - "lte": "2024-08-01" + "gte": "2024-06-01", + "lte": "2024-06-01" } ], "enumerationChronology": [ - "Vol. 46 No. 360 (Aug. 2024)" + "Vol. 47 No. 357 (Jun. 2024)" ], "enumerationChronology_sort": [ - " 46-2024-08-01" + " 47-2024-06-01" ], "formatLiteral": [ "Text" @@ -18058,29 +18186,29 @@ "shelfMark_sort": "a*LA 81-000296", "status": [ { - "id": "status:na", - "label": "Not available" + "id": "status:a", + "label": "Available" } ], "status_packed": [ - "status:na||Not available" + "status:a||Available" ], "type": [ "nypl:CheckinCardItem" ], - "uri": "i-h1036576-1", + "uri": "i-h1036576-4", "volumeRange": [ { - "gte": 46, - "lte": 46 + "gte": 47, + "lte": 47 } ], "volumeRaw": [ - "Vol. 46 No. 360" + "Vol. 47 No. 357" ] }, "sort": [ - " 46-2024-08-01" + " 47-2024-06-01" ] } ] @@ -18140,6 +18268,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Rapport de la Commission d'enquête sur les faits de la guerre" ], @@ -18277,100 +18408,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*Z-3990 no. 1-9", + "urn:barcode:33433106577558" + ], + "physicalLocation": [ + "*Z-3990" + ], + "shelfMark_sort": "a*Z-3990 no. 000001-9", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "enumerationChronology": [ - "no. 1-9" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*Z-3990 no. 1-9" + ], + "uri": "i24076474", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*Z-3990 no. 1-9" + }, + { + "type": "bf:Barcode", + "value": "33433106577558" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "no. 1-9" + ], "idBarcode": [ "33433106577558" ], - "identifier": [ - "urn:shelfmark:*Z-3990 no. 1-9", - "urn:barcode:33433106577558" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*Z-3990 no. 1-9", - "type": "bf:ShelfMark" - }, - { - "value": "33433106577558", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*Z-3990" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*Z-3990 no. 1-9" - ], - "shelfMark_sort": "a*Z-3990 no. 000001-9", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 9 } - ], - "uri": "i24076474" + ] }, "sort": [ " 1-" diff --git a/test/fixtures/query-98fe5ca79f11a69fa96548ec09895402.json b/test/fixtures/query-98fe5ca79f11a69fa96548ec09895402.json index 287da47c..53813b69 100644 --- a/test/fixtures/query-98fe5ca79f11a69fa96548ec09895402.json +++ b/test/fixtures/query-98fe5ca79f11a69fa96548ec09895402.json @@ -1,5 +1,5 @@ { - "took": 21, + "took": 23, "timed_out": false, "_shards": { "total": 2, @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.120333, + "max_score": 14.890072, "hits": [ { "_index": "resources-2024-10-22", "_id": "b10833141", - "_score": 15.120333, + "_score": 14.890072, "_source": { "extent": [ "volumes : illustrations ;" @@ -167,7 +167,7 @@ "value": "(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" } ], - "popularity": 1039, + "popularity": 1042, "uniformTitle": [ "New Yorker (New York, N.Y. : 1925)" ], @@ -1405,7 +1405,7 @@ "shelfMark": [ "*DA+ (New Yorker)" ], - "status": "Expected" + "status": "Arrived" }, { "coverage": "Vol. 100 No. 37 (Nov. 11, 2024)", @@ -1414,7 +1414,7 @@ "shelfMark": [ "*DA+ (New Yorker)" ], - "status": "Expected" + "status": "Arrived" }, { "coverage": "Vol. 100 No. 38 (Nov. 18, 2024)", @@ -1423,7 +1423,7 @@ "shelfMark": [ "*DA+ (New Yorker)" ], - "status": "Expected" + "status": "Arrived" }, { "coverage": "Vol. 100 No. 39 (Nov. 25, 2024)", @@ -1482,7 +1482,7 @@ ], "holdingStatement": [ "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--", - "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26)" + "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26); v. 100, no. 38 (2024-11-18)" ], "identifier": [ { @@ -1511,7 +1511,7 @@ "uri": "h1144777" } ], - "updatedAt": 1729702613931, + "updatedAt": 1731688335474, "publicationStatement": [ "New York : F-R Pub. Corp., 1925-", "[New York] : D. Carey", @@ -1589,13 +1589,13 @@ ] }, "inner_hits": { - "allItems": { + "items": { "hits": { "total": { - "value": 848, + "value": 575, "relation": "eq" }, - "max_score": 0, + "max_score": null, "hits": [ { "_index": "resources-2024-10-22", @@ -1604,7 +1604,7 @@ "field": "items", "offset": 0 }, - "_score": 0, + "_score": null, "_source": { "accessMessage": [ { @@ -1703,7 +1703,10 @@ "lte": 97 } ] - } + }, + "sort": [ + " 97-2021" + ] }, { "_index": "resources-2024-10-22", @@ -1712,7 +1715,7 @@ "field": "items", "offset": 1 }, - "_score": 0, + "_score": null, "_source": { "accessMessage": [ { @@ -1811,7 +1814,10 @@ "lte": 97 } ] - } + }, + "sort": [ + " 97-2021" + ] }, { "_index": "resources-2024-10-22", @@ -1820,7 +1826,7 @@ "field": "items", "offset": 2 }, - "_score": 0, + "_score": null, "_source": { "accessMessage": [ { @@ -1919,25 +1925,17 @@ "lte": 97 } ] - } - } - ] - } - }, - "items": { - "hits": { - "total": { - "value": 575, - "relation": "eq" - }, - "max_score": null, - "hits": [ + }, + "sort": [ + " 97-2021" + ] + }, { "_index": "resources-2024-10-22", "_id": "b10833141", "_nested": { "field": "items", - "offset": 0 + "offset": 3 }, "_score": null, "_source": { @@ -1961,15 +1959,15 @@ ], "dateRange": [ { - "gte": "2021", + "gte": "2020", "lte": "2021" } ], "enumerationChronology": [ - "v. 97 (May 10-July 26, 2021)" + "v. 96 (Nov 2020-Feb 8, 2021)" ], "enumerationChronology_sort": [ - " 97-2021" + " 96-2020" ], "formatLiteral": [ "Text" @@ -1984,19 +1982,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433136780354" + "33433136742404" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", - "urn:barcode:33433136780354" + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", + "urn:barcode:33433136742404" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", + "value": "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", "type": "bf:ShelfMark" }, { - "value": "33433136780354", + "value": "33433136742404", "type": "bf:Barcode" } ], @@ -2016,9 +2014,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)" + "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (May 10-July 26, 2021)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Nov 2020-Feb 8, 2021)", "status": [ { "id": "status:a", @@ -2031,16 +2029,16 @@ "type": [ "bf:Item" ], - "uri": "i40904678", + "uri": "i40269792", "volumeRange": [ { - "gte": 97, - "lte": 97 + "gte": 96, + "lte": 96 } ] }, "sort": [ - " 97-2021" + " 96-2020" ] }, { @@ -2048,7 +2046,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 1 + "offset": 4 }, "_score": null, "_source": { @@ -2072,15 +2070,15 @@ ], "dateRange": [ { - "gte": "2021", - "lte": "2021" + "gte": "2020", + "lte": "2020" } ], "enumerationChronology": [ - "v. 97 (Feb 15-May 3, 2021)" + "v. 96 (May-July 2020)" ], "enumerationChronology_sort": [ - " 97-2021" + " 96-2020" ], "formatLiteral": [ "Text" @@ -2095,19 +2093,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433136780347" + "33433136742420" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", - "urn:barcode:33433136780347" + "urn:shelfmark:*DA+ (New Yorker) v. 96 (May-July 2020)", + "urn:barcode:33433136742420" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", + "value": "*DA+ (New Yorker) v. 96 (May-July 2020)", "type": "bf:ShelfMark" }, { - "value": "33433136780347", + "value": "33433136742420", "type": "bf:Barcode" } ], @@ -2127,9 +2125,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)" + "*DA+ (New Yorker) v. 96 (May-July 2020)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Feb 15-May 3, 2021)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (May-July 2020)", "status": [ { "id": "status:a", @@ -2142,16 +2140,16 @@ "type": [ "bf:Item" ], - "uri": "i40904674", + "uri": "i40269798", "volumeRange": [ { - "gte": 97, - "lte": 97 + "gte": 96, + "lte": 96 } ] }, "sort": [ - " 97-2021" + " 96-2020" ] }, { @@ -2159,7 +2157,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 2 + "offset": 5 }, "_score": null, "_source": { @@ -2183,15 +2181,15 @@ ], "dateRange": [ { - "gte": "2021", - "lte": "2021" + "gte": "2020", + "lte": "2020" } ], "enumerationChronology": [ - "v. 97 (Aug. 2-Oct 25, 2021)" + "v. 96 (Feb 17-April 2020)" ], "enumerationChronology_sort": [ - " 97-2021" + " 96-2020" ], "formatLiteral": [ "Text" @@ -2206,19 +2204,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433136780362" + "33433136742438" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", - "urn:barcode:33433136780362" + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", + "urn:barcode:33433136742438" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", + "value": "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", "type": "bf:ShelfMark" }, { - "value": "33433136780362", + "value": "33433136742438", "type": "bf:Barcode" } ], @@ -2238,9 +2236,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)" + "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Aug. 2-Oct 25, 2021)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Feb 17-April 2020)", "status": [ { "id": "status:a", @@ -2253,16 +2251,16 @@ "type": [ "bf:Item" ], - "uri": "i40904679", + "uri": "i40269804", "volumeRange": [ { - "gte": 97, - "lte": 97 + "gte": 96, + "lte": 96 } ] }, "sort": [ - " 97-2021" + " 96-2020" ] }, { @@ -2270,7 +2268,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 3 + "offset": 6 }, "_score": null, "_source": { @@ -2295,11 +2293,11 @@ "dateRange": [ { "gte": "2020", - "lte": "2021" + "lte": "2020" } ], "enumerationChronology": [ - "v. 96 (Nov 2020-Feb 8, 2021)" + "v. 96 (Aug-Oct 2020)" ], "enumerationChronology_sort": [ " 96-2020" @@ -2317,19 +2315,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433136742404" + "33433136742412" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", - "urn:barcode:33433136742404" + "urn:shelfmark:*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", + "urn:barcode:33433136742412" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)", + "value": "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", "type": "bf:ShelfMark" }, { - "value": "33433136742404", + "value": "33433136742412", "type": "bf:Barcode" } ], @@ -2349,9 +2347,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 96 (Nov 2020-Feb 8, 2021)" + "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Nov 2020-Feb 8, 2021)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Aug-Oct 2020)", "status": [ { "id": "status:a", @@ -2364,7 +2362,7 @@ "type": [ "bf:Item" ], - "uri": "i40269792", + "uri": "i40269794", "volumeRange": [ { "gte": 96, @@ -2381,18 +2379,18 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 4 + "offset": 7 }, "_score": null, "_source": { "accessMessage": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "accessMessage:1", + "label": "Use in library" } ], "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "accessMessage:1||Use in library" ], "catalogItemType": [ { @@ -2405,15 +2403,15 @@ ], "dateRange": [ { - "gte": "2020", - "lte": "2020" + "gte": "2019", + "lte": "2019" } ], "enumerationChronology": [ - "v. 96 (May-July 2020)" + "v. 95 (Oct-Nov. 2019)" ], "enumerationChronology_sort": [ - " 96-2020" + " 95-2019" ], "formatLiteral": [ "Text" @@ -2428,19 +2426,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433136742420" + "33433130033321" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 96 (May-July 2020)", - "urn:barcode:33433136742420" + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", + "urn:barcode:33433130033321" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 96 (May-July 2020)", + "value": "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", "type": "bf:ShelfMark" }, { - "value": "33433136742420", + "value": "33433130033321", "type": "bf:Barcode" } ], @@ -2460,9 +2458,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 96 (May-July 2020)" + "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (May-July 2020)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Oct-Nov. 2019)", "status": [ { "id": "status:a", @@ -2475,16 +2473,16 @@ "type": [ "bf:Item" ], - "uri": "i40269798", + "uri": "i40232403", "volumeRange": [ { - "gte": 96, - "lte": 96 + "gte": 95, + "lte": 95 } ] }, "sort": [ - " 96-2020" + " 95-2019" ] }, { @@ -2492,18 +2490,18 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 5 + "offset": 8 }, "_score": null, "_source": { "accessMessage": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "accessMessage:1", + "label": "Use in library" } ], "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "accessMessage:1||Use in library" ], "catalogItemType": [ { @@ -2516,15 +2514,15 @@ ], "dateRange": [ { - "gte": "2020", - "lte": "2020" + "gte": "2019", + "lte": "2019" } ], "enumerationChronology": [ - "v. 96 (Feb 17-April 2020)" + "v. 95 (May-July 2019)" ], "enumerationChronology_sort": [ - " 96-2020" + " 95-2019" ], "formatLiteral": [ "Text" @@ -2539,19 +2537,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433136742438" + "33433130033305" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", - "urn:barcode:33433136742438" + "urn:shelfmark:*DA+ (New Yorker) v. 95 (May-July 2019)", + "urn:barcode:33433130033305" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)", + "value": "*DA+ (New Yorker) v. 95 (May-July 2019)", "type": "bf:ShelfMark" }, { - "value": "33433136742438", + "value": "33433130033305", "type": "bf:Barcode" } ], @@ -2571,9 +2569,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 96 (Feb 17-April 2020)" + "*DA+ (New Yorker) v. 95 (May-July 2019)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Feb 17-April 2020)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (May-July 2019)", "status": [ { "id": "status:a", @@ -2586,16 +2584,16 @@ "type": [ "bf:Item" ], - "uri": "i40269804", + "uri": "i40232398", "volumeRange": [ { - "gte": 96, - "lte": 96 + "gte": 95, + "lte": 95 } ] }, "sort": [ - " 96-2020" + " 95-2019" ] }, { @@ -2603,18 +2601,18 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 6 + "offset": 9 }, "_score": null, "_source": { "accessMessage": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "accessMessage:1", + "label": "Use in library" } ], "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "accessMessage:1||Use in library" ], "catalogItemType": [ { @@ -2627,15 +2625,15 @@ ], "dateRange": [ { - "gte": "2020", - "lte": "2020" + "gte": "2019", + "lte": "2019" } ], "enumerationChronology": [ - "v. 96 (Aug-Oct 2020)" + "v. 95 (Feb 18-April 2019)" ], "enumerationChronology_sort": [ - " 96-2020" + " 95-2019" ], "formatLiteral": [ "Text" @@ -2650,19 +2648,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433136742412" + "33433130033297" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", - "urn:barcode:33433136742412" + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", + "urn:barcode:33433130033297" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)", + "value": "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", "type": "bf:ShelfMark" }, { - "value": "33433136742412", + "value": "33433130033297", "type": "bf:Barcode" } ], @@ -2682,9 +2680,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 96 (Aug-Oct 2020)" + "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000096 (Aug-Oct 2020)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Feb 18-April 2019)", "status": [ { "id": "status:a", @@ -2697,16 +2695,16 @@ "type": [ "bf:Item" ], - "uri": "i40269794", + "uri": "i40232353", "volumeRange": [ { - "gte": 96, - "lte": 96 + "gte": 95, + "lte": 95 } ] }, "sort": [ - " 96-2020" + " 95-2019" ] }, { @@ -2714,7 +2712,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 7 + "offset": 10 }, "_score": null, "_source": { @@ -2739,11 +2737,11 @@ "dateRange": [ { "gte": "2019", - "lte": "2019" + "lte": "2020" } ], "enumerationChronology": [ - "v. 95 (Oct-Nov. 2019)" + "v. 95 (Dec. 2019-Feb. 10, 2020)" ], "enumerationChronology_sort": [ " 95-2019" @@ -2761,19 +2759,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433130033321" + "33433130033339" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", - "urn:barcode:33433130033321" + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", + "urn:barcode:33433130033339" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)", + "value": "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", "type": "bf:ShelfMark" }, { - "value": "33433130033321", + "value": "33433130033339", "type": "bf:Barcode" } ], @@ -2793,9 +2791,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 95 (Oct-Nov. 2019)" + "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Oct-Nov. 2019)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Dec. 2019-Feb. 10, 2020)", "status": [ { "id": "status:a", @@ -2808,7 +2806,7 @@ "type": [ "bf:Item" ], - "uri": "i40232403", + "uri": "i40232406", "volumeRange": [ { "gte": 95, @@ -2825,7 +2823,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 8 + "offset": 11 }, "_score": null, "_source": { @@ -2854,7 +2852,7 @@ } ], "enumerationChronology": [ - "v. 95 (May-July 2019)" + "v. 95 (Aug.-Sept. 2019)" ], "enumerationChronology_sort": [ " 95-2019" @@ -2872,19 +2870,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433130033305" + "33433130033313" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 95 (May-July 2019)", - "urn:barcode:33433130033305" + "urn:shelfmark:*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", + "urn:barcode:33433130033313" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 95 (May-July 2019)", + "value": "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", "type": "bf:ShelfMark" }, { - "value": "33433130033305", + "value": "33433130033313", "type": "bf:Barcode" } ], @@ -2904,9 +2902,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 95 (May-July 2019)" + "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (May-July 2019)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Aug.-Sept. 2019)", "status": [ { "id": "status:a", @@ -2919,7 +2917,7 @@ "type": [ "bf:Item" ], - "uri": "i40232398", + "uri": "i40232401", "volumeRange": [ { "gte": 95, @@ -2936,7 +2934,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 9 + "offset": 23 }, "_score": null, "_source": { @@ -2960,15 +2958,15 @@ ], "dateRange": [ { - "gte": "2019", - "lte": "2019" + "gte": "2016", + "lte": "2016" } ], "enumerationChronology": [ - "v. 95 (Feb 18-April 2019)" + "v. 92 (July-Sept. 2016)" ], "enumerationChronology_sort": [ - " 95-2019" + " 92-2016" ], "formatLiteral": [ "Text" @@ -2983,19 +2981,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433130033297" + "33433119872095" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", - "urn:barcode:33433130033297" + "urn:shelfmark:*DA+ (New Yorker) v. 92 (July-Sept. 2016)", + "urn:barcode:33433119872095" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)", + "value": "*DA+ (New Yorker) v. 92 (July-Sept. 2016)", "type": "bf:ShelfMark" }, { - "value": "33433130033297", + "value": "33433119872095", "type": "bf:Barcode" } ], @@ -3015,9 +3013,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 95 (Feb 18-April 2019)" + "*DA+ (New Yorker) v. 92 (July-Sept. 2016)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Feb 18-April 2019)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (July-Sept. 2016)", "status": [ { "id": "status:a", @@ -3030,16 +3028,16 @@ "type": [ "bf:Item" ], - "uri": "i40232353", + "uri": "i36060542", "volumeRange": [ { - "gte": 95, - "lte": 95 + "gte": 92, + "lte": 92 } ] }, "sort": [ - " 95-2019" + " 92-2016" ] }, { @@ -3047,7 +3045,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 10 + "offset": 26 }, "_score": null, "_source": { @@ -3071,15 +3069,15 @@ ], "dateRange": [ { - "gte": "2019", - "lte": "2020" + "gte": "2015", + "lte": "2015" } ], "enumerationChronology": [ - "v. 95 (Dec. 2019-Feb. 10, 2020)" + "v. 91 (Sept.-Oct. 2015)" ], "enumerationChronology_sort": [ - " 95-2019" + " 91-2015" ], "formatLiteral": [ "Text" @@ -3094,19 +3092,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433130033339" + "33433119872087" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", - "urn:barcode:33433130033339" + "urn:shelfmark:*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", + "urn:barcode:33433119872087" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)", + "value": "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", "type": "bf:ShelfMark" }, { - "value": "33433130033339", + "value": "33433119872087", "type": "bf:Barcode" } ], @@ -3126,9 +3124,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 95 (Dec. 2019-Feb. 10, 2020)" + "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Dec. 2019-Feb. 10, 2020)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Sept.-Oct. 2015)", "status": [ { "id": "status:a", @@ -3141,16 +3139,16 @@ "type": [ "bf:Item" ], - "uri": "i40232406", + "uri": "i36060538", "volumeRange": [ { - "gte": 95, - "lte": 95 + "gte": 91, + "lte": 91 } ] }, "sort": [ - " 95-2019" + " 91-2015" ] }, { @@ -3158,7 +3156,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 11 + "offset": 43 }, "_score": null, "_source": { @@ -3182,15 +3180,15 @@ ], "dateRange": [ { - "gte": "2019", - "lte": "2019" + "gte": "2011", + "lte": "2011" } ], "enumerationChronology": [ - "v. 95 (Aug.-Sept. 2019)" + "v. 87 (Oct-Nov 2011)" ], "enumerationChronology_sort": [ - " 95-2019" + " 87-2011" ], "formatLiteral": [ "Text" @@ -3205,19 +3203,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433130033313" + "33433099610952" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", - "urn:barcode:33433130033313" + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", + "urn:barcode:33433099610952" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)", + "value": "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", "type": "bf:ShelfMark" }, { - "value": "33433130033313", + "value": "33433099610952", "type": "bf:Barcode" } ], @@ -3237,9 +3235,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 95 (Aug.-Sept. 2019)" + "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000095 (Aug.-Sept. 2019)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Oct-Nov 2011)", "status": [ { "id": "status:a", @@ -3252,16 +3250,16 @@ "type": [ "bf:Item" ], - "uri": "i40232401", + "uri": "i28878991", "volumeRange": [ { - "gte": 95, - "lte": 95 + "gte": 87, + "lte": 87 } ] }, "sort": [ - " 95-2019" + " 87-2011" ] }, { @@ -3269,7 +3267,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 23 + "offset": 44 }, "_score": null, "_source": { @@ -3293,15 +3291,15 @@ ], "dateRange": [ { - "gte": "2016", - "lte": "2016" + "gte": "2011", + "lte": "2011" } ], "enumerationChronology": [ - "v. 92 (July-Sept. 2016)" + "v. 87 (June-July 2011)" ], "enumerationChronology_sort": [ - " 92-2016" + " 87-2011" ], "formatLiteral": [ "Text" @@ -3316,19 +3314,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433119872095" + "33433099611083" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 92 (July-Sept. 2016)", - "urn:barcode:33433119872095" + "urn:shelfmark:*DA+ (New Yorker) v. 87 (June-July 2011)", + "urn:barcode:33433099611083" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 92 (July-Sept. 2016)", + "value": "*DA+ (New Yorker) v. 87 (June-July 2011)", "type": "bf:ShelfMark" }, { - "value": "33433119872095", + "value": "33433099611083", "type": "bf:Barcode" } ], @@ -3348,9 +3346,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 92 (July-Sept. 2016)" + "*DA+ (New Yorker) v. 87 (June-July 2011)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000092 (July-Sept. 2016)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (June-July 2011)", "status": [ { "id": "status:a", @@ -3363,16 +3361,16 @@ "type": [ "bf:Item" ], - "uri": "i36060542", + "uri": "i28878983", "volumeRange": [ { - "gte": 92, - "lte": 92 + "gte": 87, + "lte": 87 } ] }, "sort": [ - " 92-2016" + " 87-2011" ] }, { @@ -3380,7 +3378,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 26 + "offset": 45 }, "_score": null, "_source": { @@ -3404,15 +3402,15 @@ ], "dateRange": [ { - "gte": "2015", - "lte": "2015" + "gte": "2011", + "lte": "2011" } ], "enumerationChronology": [ - "v. 91 (Sept.-Oct. 2015)" + "v. 87 (Feb. 14-Mar. 28, 2011)" ], "enumerationChronology_sort": [ - " 91-2015" + " 87-2011" ], "formatLiteral": [ "Text" @@ -3427,19 +3425,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433119872087" + "33433099611109" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", - "urn:barcode:33433119872087" + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", + "urn:barcode:33433099611109" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)", + "value": "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", "type": "bf:ShelfMark" }, { - "value": "33433119872087", + "value": "33433099611109", "type": "bf:Barcode" } ], @@ -3459,9 +3457,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 91 (Sept.-Oct. 2015)" + "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000091 (Sept.-Oct. 2015)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Feb. 14-Mar. 28, 2011)", "status": [ { "id": "status:a", @@ -3474,16 +3472,16 @@ "type": [ "bf:Item" ], - "uri": "i36060538", + "uri": "i28878974", "volumeRange": [ { - "gte": 91, - "lte": 91 + "gte": 87, + "lte": 87 } ] }, "sort": [ - " 91-2015" + " 87-2011" ] }, { @@ -3491,7 +3489,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 43 + "offset": 46 }, "_score": null, "_source": { @@ -3516,11 +3514,11 @@ "dateRange": [ { "gte": "2011", - "lte": "2011" + "lte": "2012" } ], "enumerationChronology": [ - "v. 87 (Oct-Nov 2011)" + "v. 87 (Dec. 5, 2011-Feb. 6, 2012)" ], "enumerationChronology_sort": [ " 87-2011" @@ -3538,19 +3536,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099610952" + "33433099610945" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", - "urn:barcode:33433099610952" + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", + "urn:barcode:33433099610945" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)", + "value": "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", "type": "bf:ShelfMark" }, { - "value": "33433099610952", + "value": "33433099610945", "type": "bf:Barcode" } ], @@ -3570,9 +3568,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Oct-Nov 2011)" + "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Oct-Nov 2011)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Dec. 5, 2011-Feb. 6, 2012)", "status": [ { "id": "status:a", @@ -3585,7 +3583,7 @@ "type": [ "bf:Item" ], - "uri": "i28878991", + "uri": "i28879000", "volumeRange": [ { "gte": 87, @@ -3602,7 +3600,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 44 + "offset": 47 }, "_score": null, "_source": { @@ -3631,7 +3629,7 @@ } ], "enumerationChronology": [ - "v. 87 (June-July 2011)" + "v. 87 (Aug-Sept 2011)" ], "enumerationChronology_sort": [ " 87-2011" @@ -3649,19 +3647,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611083" + "33433099611075" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 87 (June-July 2011)", - "urn:barcode:33433099611083" + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", + "urn:barcode:33433099611075" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 87 (June-July 2011)", + "value": "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", "type": "bf:ShelfMark" }, { - "value": "33433099611083", + "value": "33433099611075", "type": "bf:Barcode" } ], @@ -3681,9 +3679,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 87 (June-July 2011)" + "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (June-July 2011)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Aug-Sept 2011)", "status": [ { "id": "status:a", @@ -3696,7 +3694,7 @@ "type": [ "bf:Item" ], - "uri": "i28878983", + "uri": "i28878989", "volumeRange": [ { "gte": 87, @@ -3713,7 +3711,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 45 + "offset": 48 }, "_score": null, "_source": { @@ -3742,7 +3740,7 @@ } ], "enumerationChronology": [ - "v. 87 (Feb. 14-Mar. 28, 2011)" + "v. 87 (Apr-May 2011)" ], "enumerationChronology_sort": [ " 87-2011" @@ -3760,19 +3758,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611109" + "33433099611091" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", - "urn:barcode:33433099611109" + "urn:shelfmark:*DA+ (New Yorker) v. 87 (Apr-May 2011)", + "urn:barcode:33433099611091" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)", + "value": "*DA+ (New Yorker) v. 87 (Apr-May 2011)", "type": "bf:ShelfMark" }, { - "value": "33433099611109", + "value": "33433099611091", "type": "bf:Barcode" } ], @@ -3792,9 +3790,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Feb. 14-Mar. 28, 2011)" + "*DA+ (New Yorker) v. 87 (Apr-May 2011)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Feb. 14-Mar. 28, 2011)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Apr-May 2011)", "status": [ { "id": "status:a", @@ -3807,7 +3805,7 @@ "type": [ "bf:Item" ], - "uri": "i28878974", + "uri": "i28878981", "volumeRange": [ { "gte": 87, @@ -3824,7 +3822,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 46 + "offset": 49 }, "_score": null, "_source": { @@ -3848,15 +3846,15 @@ ], "dateRange": [ { - "gte": "2011", - "lte": "2012" + "gte": "2010", + "lte": "2010" } ], "enumerationChronology": [ - "v. 87 (Dec. 5, 2011-Feb. 6, 2012)" + "v. 86 inc. (May-July 2010)" ], "enumerationChronology_sort": [ - " 87-2011" + " 86-2010" ], "formatLiteral": [ "Text" @@ -3871,19 +3869,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099610945" + "33433099612925" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", - "urn:barcode:33433099610945" + "urn:shelfmark:*DA+ (New Yorker) v. 86 inc. (May-July 2010)", + "urn:barcode:33433099612925" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)", + "value": "*DA+ (New Yorker) v. 86 inc. (May-July 2010)", "type": "bf:ShelfMark" }, { - "value": "33433099610945", + "value": "33433099612925", "type": "bf:Barcode" } ], @@ -3903,9 +3901,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Dec. 5, 2011-Feb. 6, 2012)" + "*DA+ (New Yorker) v. 86 inc. (May-July 2010)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Dec. 5, 2011-Feb. 6, 2012)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 inc. (May-July 2010)", "status": [ { "id": "status:a", @@ -3918,16 +3916,16 @@ "type": [ "bf:Item" ], - "uri": "i28879000", + "uri": "i28974701", "volumeRange": [ { - "gte": 87, - "lte": 87 + "gte": 86, + "lte": 86 } ] }, "sort": [ - " 87-2011" + " 86-2010" ] }, { @@ -3935,7 +3933,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 47 + "offset": 50 }, "_score": null, "_source": { @@ -3959,15 +3957,15 @@ ], "dateRange": [ { - "gte": "2011", - "lte": "2011" + "gte": "2010", + "lte": "2010" } ], "enumerationChronology": [ - "v. 87 (Aug-Sept 2011)" + "v. 86 (Oct-Nov 2010)" ], "enumerationChronology_sort": [ - " 87-2011" + " 86-2010" ], "formatLiteral": [ "Text" @@ -3982,19 +3980,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611075" + "33433099611125" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", - "urn:barcode:33433099611075" + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", + "urn:barcode:33433099611125" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)", + "value": "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", "type": "bf:ShelfMark" }, { - "value": "33433099611075", + "value": "33433099611125", "type": "bf:Barcode" } ], @@ -4014,9 +4012,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Aug-Sept 2011)" + "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Aug-Sept 2011)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Oct-Nov 2010)", "status": [ { "id": "status:a", @@ -4029,16 +4027,16 @@ "type": [ "bf:Item" ], - "uri": "i28878989", + "uri": "i28878958", "volumeRange": [ { - "gte": 87, - "lte": 87 + "gte": 86, + "lte": 86 } ] }, "sort": [ - " 87-2011" + " 86-2010" ] }, { @@ -4046,7 +4044,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 48 + "offset": 51 }, "_score": null, "_source": { @@ -4070,15 +4068,15 @@ ], "dateRange": [ { - "gte": "2011", - "lte": "2011" + "gte": "2010", + "lte": "2010" } ], "enumerationChronology": [ - "v. 87 (Apr-May 2011)" + "v. 86 (Feb. 15-Apr. 26, 2010)" ], "enumerationChronology_sort": [ - " 87-2011" + " 86-2010" ], "formatLiteral": [ "Text" @@ -4093,19 +4091,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611091" + "33433099611141" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 87 (Apr-May 2011)", - "urn:barcode:33433099611091" + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", + "urn:barcode:33433099611141" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 87 (Apr-May 2011)", + "value": "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", "type": "bf:ShelfMark" }, { - "value": "33433099611091", + "value": "33433099611141", "type": "bf:Barcode" } ], @@ -4125,9 +4123,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 87 (Apr-May 2011)" + "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000087 (Apr-May 2011)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Feb. 15-Apr. 26, 2010)", "status": [ { "id": "status:a", @@ -4140,16 +4138,16 @@ "type": [ "bf:Item" ], - "uri": "i28878981", + "uri": "i28878948", "volumeRange": [ { - "gte": 87, - "lte": 87 + "gte": 86, + "lte": 86 } ] }, "sort": [ - " 87-2011" + " 86-2010" ] }, { @@ -4157,7 +4155,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 49 + "offset": 52 }, "_score": null, "_source": { @@ -4182,11 +4180,11 @@ "dateRange": [ { "gte": "2010", - "lte": "2010" + "lte": "2011" } ], "enumerationChronology": [ - "v. 86 inc. (May-July 2010)" + "v. 86 (Dec. 6, 2010-Feb. 7, 2011)" ], "enumerationChronology_sort": [ " 86-2010" @@ -4204,19 +4202,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099612925" + "33433099611117" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 86 inc. (May-July 2010)", - "urn:barcode:33433099612925" + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", + "urn:barcode:33433099611117" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 86 inc. (May-July 2010)", + "value": "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", "type": "bf:ShelfMark" }, { - "value": "33433099612925", + "value": "33433099611117", "type": "bf:Barcode" } ], @@ -4236,9 +4234,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 86 inc. (May-July 2010)" + "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 inc. (May-July 2010)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Dec. 6, 2010-Feb. 7, 2011)", "status": [ { "id": "status:a", @@ -4251,7 +4249,7 @@ "type": [ "bf:Item" ], - "uri": "i28974701", + "uri": "i28878970", "volumeRange": [ { "gte": 86, @@ -4268,7 +4266,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 50 + "offset": 53 }, "_score": null, "_source": { @@ -4297,7 +4295,7 @@ } ], "enumerationChronology": [ - "v. 86 (Oct-Nov 2010)" + "v. 86 (Aug-Sept 2010)" ], "enumerationChronology_sort": [ " 86-2010" @@ -4315,19 +4313,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611125" + "33433099611133" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", - "urn:barcode:33433099611125" + "urn:shelfmark:*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", + "urn:barcode:33433099611133" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)", + "value": "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", "type": "bf:ShelfMark" }, { - "value": "33433099611125", + "value": "33433099611133", "type": "bf:Barcode" } ], @@ -4347,9 +4345,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 86 (Oct-Nov 2010)" + "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Oct-Nov 2010)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Aug-Sept 2010)", "status": [ { "id": "status:a", @@ -4362,7 +4360,7 @@ "type": [ "bf:Item" ], - "uri": "i28878958", + "uri": "i28878953", "volumeRange": [ { "gte": 86, @@ -4379,7 +4377,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 51 + "offset": 54 }, "_score": null, "_source": { @@ -4403,15 +4401,15 @@ ], "dateRange": [ { - "gte": "2010", - "lte": "2010" + "gte": "2009", + "lte": "2009" } ], "enumerationChronology": [ - "v. 86 (Feb. 15-Apr. 26, 2010)" + "v. 85 (Oct-Nov 2009)" ], "enumerationChronology_sort": [ - " 86-2010" + " 85-2009" ], "formatLiteral": [ "Text" @@ -4426,19 +4424,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611141" + "33433099611166" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", - "urn:barcode:33433099611141" + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", + "urn:barcode:33433099611166" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)", + "value": "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", "type": "bf:ShelfMark" }, { - "value": "33433099611141", + "value": "33433099611166", "type": "bf:Barcode" } ], @@ -4458,9 +4456,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 86 (Feb. 15-Apr. 26, 2010)" + "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Feb. 15-Apr. 26, 2010)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Oct-Nov 2009)", "status": [ { "id": "status:a", @@ -4473,16 +4471,16 @@ "type": [ "bf:Item" ], - "uri": "i28878948", + "uri": "i28878932", "volumeRange": [ { - "gte": 86, - "lte": 86 + "gte": 85, + "lte": 85 } ] }, "sort": [ - " 86-2010" + " 85-2009" ] }, { @@ -4490,7 +4488,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 52 + "offset": 55 }, "_score": null, "_source": { @@ -4514,15 +4512,15 @@ ], "dateRange": [ { - "gte": "2010", - "lte": "2011" + "gte": "2009", + "lte": "2009" } ], "enumerationChronology": [ - "v. 86 (Dec. 6, 2010-Feb. 7, 2011)" + "v. 85 (May-June 2009)" ], "enumerationChronology_sort": [ - " 86-2010" + " 85-2009" ], "formatLiteral": [ "Text" @@ -4537,19 +4535,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611117" + "33433099611182" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", - "urn:barcode:33433099611117" + "urn:shelfmark:*DA+ (New Yorker) v. 85 (May-June 2009)", + "urn:barcode:33433099611182" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)", + "value": "*DA+ (New Yorker) v. 85 (May-June 2009)", "type": "bf:ShelfMark" }, { - "value": "33433099611117", + "value": "33433099611182", "type": "bf:Barcode" } ], @@ -4569,9 +4567,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 86 (Dec. 6, 2010-Feb. 7, 2011)" + "*DA+ (New Yorker) v. 85 (May-June 2009)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Dec. 6, 2010-Feb. 7, 2011)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (May-June 2009)", "status": [ { "id": "status:a", @@ -4584,16 +4582,16 @@ "type": [ "bf:Item" ], - "uri": "i28878970", + "uri": "i28878920", "volumeRange": [ { - "gte": 86, - "lte": 86 + "gte": 85, + "lte": 85 } ] }, "sort": [ - " 86-2010" + " 85-2009" ] }, { @@ -4601,7 +4599,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 53 + "offset": 56 }, "_score": null, "_source": { @@ -4625,15 +4623,15 @@ ], "dateRange": [ { - "gte": "2010", - "lte": "2010" + "gte": "2009", + "lte": "2009" } ], "enumerationChronology": [ - "v. 86 (Aug-Sept 2010)" + "v. 85 (Feb. 9-Apr. 27, 2009)" ], "enumerationChronology_sort": [ - " 86-2010" + " 85-2009" ], "formatLiteral": [ "Text" @@ -4648,19 +4646,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611133" + "33433099611190" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", - "urn:barcode:33433099611133" + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", + "urn:barcode:33433099611190" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)", + "value": "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", "type": "bf:ShelfMark" }, { - "value": "33433099611133", + "value": "33433099611190", "type": "bf:Barcode" } ], @@ -4680,9 +4678,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 86 (Aug-Sept 2010)" + "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000086 (Aug-Sept 2010)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Feb. 9-Apr. 27, 2009)", "status": [ { "id": "status:a", @@ -4695,16 +4693,16 @@ "type": [ "bf:Item" ], - "uri": "i28878953", + "uri": "i28878911", "volumeRange": [ { - "gte": 86, - "lte": 86 + "gte": 85, + "lte": 85 } ] }, "sort": [ - " 86-2010" + " 85-2009" ] }, { @@ -4712,7 +4710,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 54 + "offset": 57 }, "_score": null, "_source": { @@ -4741,7 +4739,7 @@ } ], "enumerationChronology": [ - "v. 85 (Oct-Nov 2009)" + "v. 85 (Aug. 10-Sept. 28, 2009)" ], "enumerationChronology_sort": [ " 85-2009" @@ -4759,19 +4757,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611166" + "33433099611174" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", - "urn:barcode:33433099611166" + "urn:shelfmark:*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", + "urn:barcode:33433099611174" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)", + "value": "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", "type": "bf:ShelfMark" }, { - "value": "33433099611166", + "value": "33433099611174", "type": "bf:Barcode" } ], @@ -4791,9 +4789,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 85 (Oct-Nov 2009)" + "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Oct-Nov 2009)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Aug. 10-Sept. 28, 2009)", "status": [ { "id": "status:a", @@ -4806,7 +4804,7 @@ "type": [ "bf:Item" ], - "uri": "i28878932", + "uri": "i28878925", "volumeRange": [ { "gte": 85, @@ -4823,7 +4821,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 55 + "offset": 58 }, "_score": null, "_source": { @@ -4847,15 +4845,15 @@ ], "dateRange": [ { - "gte": "2009", - "lte": "2009" + "gte": "2008", + "lte": "2008" } ], "enumerationChronology": [ - "v. 85 (May-June 2009)" + "v. 84 (Oct-Nov 2008)" ], "enumerationChronology_sort": [ - " 85-2009" + " 84-2008" ], "formatLiteral": [ "Text" @@ -4870,19 +4868,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611182" + "33433085063992" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 85 (May-June 2009)", - "urn:barcode:33433099611182" + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", + "urn:barcode:33433085063992" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 85 (May-June 2009)", + "value": "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", "type": "bf:ShelfMark" }, { - "value": "33433099611182", + "value": "33433085063992", "type": "bf:Barcode" } ], @@ -4902,9 +4900,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 85 (May-June 2009)" + "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (May-June 2009)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Oct-Nov 2008)", "status": [ { "id": "status:a", @@ -4917,16 +4915,16 @@ "type": [ "bf:Item" ], - "uri": "i28878920", + "uri": "i25589223", "volumeRange": [ { - "gte": 85, - "lte": 85 + "gte": 84, + "lte": 84 } ] }, "sort": [ - " 85-2009" + " 84-2008" ] }, { @@ -4934,7 +4932,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 56 + "offset": 59 }, "_score": null, "_source": { @@ -4958,15 +4956,15 @@ ], "dateRange": [ { - "gte": "2009", - "lte": "2009" + "gte": "2008", + "lte": "2008" } ], "enumerationChronology": [ - "v. 85 (Feb. 9-Apr. 27, 2009)" + "v. 84 (June-July 2008)" ], "enumerationChronology_sort": [ - " 85-2009" + " 84-2008" ], "formatLiteral": [ "Text" @@ -4981,19 +4979,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611190" + "33433085064008" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", - "urn:barcode:33433099611190" + "urn:shelfmark:*DA+ (New Yorker) v. 84 (June-July 2008)", + "urn:barcode:33433085064008" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)", + "value": "*DA+ (New Yorker) v. 84 (June-July 2008)", "type": "bf:ShelfMark" }, { - "value": "33433099611190", + "value": "33433085064008", "type": "bf:Barcode" } ], @@ -5013,9 +5011,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 85 (Feb. 9-Apr. 27, 2009)" + "*DA+ (New Yorker) v. 84 (June-July 2008)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Feb. 9-Apr. 27, 2009)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (June-July 2008)", "status": [ { "id": "status:a", @@ -5028,16 +5026,16 @@ "type": [ "bf:Item" ], - "uri": "i28878911", + "uri": "i25589214", "volumeRange": [ { - "gte": 85, - "lte": 85 + "gte": 84, + "lte": 84 } ] }, "sort": [ - " 85-2009" + " 84-2008" ] }, { @@ -5045,7 +5043,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 57 + "offset": 60 }, "_score": null, "_source": { @@ -5069,15 +5067,15 @@ ], "dateRange": [ { - "gte": "2009", - "lte": "2009" + "gte": "2008", + "lte": "2008" } ], "enumerationChronology": [ - "v. 85 (Aug. 10-Sept. 28, 2009)" + "v. 84 (Feb. 11-Mar. 31 , 2008)" ], "enumerationChronology_sort": [ - " 85-2009" + " 84-2008" ], "formatLiteral": [ "Text" @@ -5092,19 +5090,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433099611174" + "33433085063950" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", - "urn:barcode:33433099611174" + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", + "urn:barcode:33433085063950" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)", + "value": "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", "type": "bf:ShelfMark" }, { - "value": "33433099611174", + "value": "33433085063950", "type": "bf:Barcode" } ], @@ -5124,9 +5122,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 85 (Aug. 10-Sept. 28, 2009)" + "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000085 (Aug. 10-Sept. 28, 2009)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Feb. 11-Mar. 31 , 2008)", "status": [ { "id": "status:a", @@ -5139,16 +5137,16 @@ "type": [ "bf:Item" ], - "uri": "i28878925", + "uri": "i25589272", "volumeRange": [ { - "gte": 85, - "lte": 85 + "gte": 84, + "lte": 84 } ] }, "sort": [ - " 85-2009" + " 84-2008" ] }, { @@ -5156,7 +5154,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 58 + "offset": 61 }, "_score": null, "_source": { @@ -5181,11 +5179,11 @@ "dateRange": [ { "gte": "2008", - "lte": "2008" + "lte": "2009" } ], "enumerationChronology": [ - "v. 84 (Oct-Nov 2008)" + "v. 84 (Dec 1, 2008-Feb 2, 2009)" ], "enumerationChronology_sort": [ " 84-2008" @@ -5203,19 +5201,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085063992" + "33433085063976" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", - "urn:barcode:33433085063992" + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", + "urn:barcode:33433085063976" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)", + "value": "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", "type": "bf:ShelfMark" }, { - "value": "33433085063992", + "value": "33433085063976", "type": "bf:Barcode" } ], @@ -5235,9 +5233,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Oct-Nov 2008)" + "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Oct-Nov 2008)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Dec 1, 2008-Feb 2, 2009)", "status": [ { "id": "status:a", @@ -5250,7 +5248,7 @@ "type": [ "bf:Item" ], - "uri": "i25589223", + "uri": "i25589242", "volumeRange": [ { "gte": 84, @@ -5267,7 +5265,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 59 + "offset": 62 }, "_score": null, "_source": { @@ -5296,7 +5294,7 @@ } ], "enumerationChronology": [ - "v. 84 (June-July 2008)" + "v. 84 (Aug-Sept 2008 & Suppl.)" ], "enumerationChronology_sort": [ " 84-2008" @@ -5314,19 +5312,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085064008" + "33433085064172" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 84 (June-July 2008)", - "urn:barcode:33433085064008" + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", + "urn:barcode:33433085064172" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 84 (June-July 2008)", + "value": "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", "type": "bf:ShelfMark" }, { - "value": "33433085064008", + "value": "33433085064172", "type": "bf:Barcode" } ], @@ -5346,9 +5344,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 84 (June-July 2008)" + "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (June-July 2008)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Aug-Sept 2008 & Suppl.)", "status": [ { "id": "status:a", @@ -5361,7 +5359,7 @@ "type": [ "bf:Item" ], - "uri": "i25589214", + "uri": "i25589287", "volumeRange": [ { "gte": 84, @@ -5378,7 +5376,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 60 + "offset": 63 }, "_score": null, "_source": { @@ -5407,7 +5405,7 @@ } ], "enumerationChronology": [ - "v. 84 (Feb. 11-Mar. 31 , 2008)" + "v. 84 (Apr-May 2008)" ], "enumerationChronology_sort": [ " 84-2008" @@ -5425,19 +5423,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085063950" + "33433085064214" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", - "urn:barcode:33433085063950" + "urn:shelfmark:*DA+ (New Yorker) v. 84 (Apr-May 2008)", + "urn:barcode:33433085064214" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)", + "value": "*DA+ (New Yorker) v. 84 (Apr-May 2008)", "type": "bf:ShelfMark" }, { - "value": "33433085063950", + "value": "33433085064214", "type": "bf:Barcode" } ], @@ -5457,9 +5455,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Feb. 11-Mar. 31 , 2008)" + "*DA+ (New Yorker) v. 84 (Apr-May 2008)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Feb. 11-Mar. 31 , 2008)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Apr-May 2008)", "status": [ { "id": "status:a", @@ -5472,7 +5470,7 @@ "type": [ "bf:Item" ], - "uri": "i25589272", + "uri": "i25589205", "volumeRange": [ { "gte": 84, @@ -5489,7 +5487,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 61 + "offset": 64 }, "_score": null, "_source": { @@ -5513,15 +5511,15 @@ ], "dateRange": [ { - "gte": "2008", - "lte": "2009" + "gte": "2007", + "lte": "2007" } ], "enumerationChronology": [ - "v. 84 (Dec 1, 2008-Feb 2, 2009)" + "v. 83 (Oct-Nov 2007 & Suppl.)" ], "enumerationChronology_sort": [ - " 84-2008" + " 83-2007" ], "formatLiteral": [ "Text" @@ -5536,19 +5534,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085063976" + "33433085063984" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", - "urn:barcode:33433085063976" + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", + "urn:barcode:33433085063984" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)", + "value": "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", "type": "bf:ShelfMark" }, { - "value": "33433085063976", + "value": "33433085063984", "type": "bf:Barcode" } ], @@ -5568,9 +5566,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Dec 1, 2008-Feb 2, 2009)" + "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Dec 1, 2008-Feb 2, 2009)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Oct-Nov 2007 & Suppl.)", "status": [ { "id": "status:a", @@ -5583,16 +5581,16 @@ "type": [ "bf:Item" ], - "uri": "i25589242", + "uri": "i25589229", "volumeRange": [ { - "gte": 84, - "lte": 84 + "gte": 83, + "lte": 83 } ] }, "sort": [ - " 84-2008" + " 83-2007" ] }, { @@ -5600,7 +5598,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 62 + "offset": 65 }, "_score": null, "_source": { @@ -5624,15 +5622,15 @@ ], "dateRange": [ { - "gte": "2008", - "lte": "2008" + "gte": "2007", + "lte": "2007" } ], "enumerationChronology": [ - "v. 84 (Aug-Sept 2008 & Suppl.)" + "v. 83 (June 25-July 30, 2007)" ], "enumerationChronology_sort": [ - " 84-2008" + " 83-2007" ], "formatLiteral": [ "Text" @@ -5647,19 +5645,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085064172" + "33433085063943" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", - "urn:barcode:33433085064172" + "urn:shelfmark:*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", + "urn:barcode:33433085063943" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)", + "value": "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", "type": "bf:ShelfMark" }, { - "value": "33433085064172", + "value": "33433085063943", "type": "bf:Barcode" } ], @@ -5679,9 +5677,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Aug-Sept 2008 & Suppl.)" + "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Aug-Sept 2008 & Suppl.)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (June 25-July 30, 2007)", "status": [ { "id": "status:a", @@ -5694,16 +5692,16 @@ "type": [ "bf:Item" ], - "uri": "i25589287", + "uri": "i25589274", "volumeRange": [ { - "gte": 84, - "lte": 84 + "gte": 83, + "lte": 83 } ] }, "sort": [ - " 84-2008" + " 83-2007" ] }, { @@ -5711,7 +5709,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 63 + "offset": 66 }, "_score": null, "_source": { @@ -5735,15 +5733,15 @@ ], "dateRange": [ { - "gte": "2008", - "lte": "2008" + "gte": "2007", + "lte": "2007" } ], "enumerationChronology": [ - "v. 84 (Apr-May 2008)" + "v. 83 (Feb. 19-Mar. 26, 2007)" ], "enumerationChronology_sort": [ - " 84-2008" + " 83-2007" ], "formatLiteral": [ "Text" @@ -5758,19 +5756,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085064214" + "33433085064180" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 84 (Apr-May 2008)", - "urn:barcode:33433085064214" + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", + "urn:barcode:33433085064180" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 84 (Apr-May 2008)", + "value": "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", "type": "bf:ShelfMark" }, { - "value": "33433085064214", + "value": "33433085064180", "type": "bf:Barcode" } ], @@ -5790,9 +5788,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 84 (Apr-May 2008)" + "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000084 (Apr-May 2008)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Feb. 19-Mar. 26, 2007)", "status": [ { "id": "status:a", @@ -5805,16 +5803,16 @@ "type": [ "bf:Item" ], - "uri": "i25589205", + "uri": "i25589278", "volumeRange": [ { - "gte": 84, - "lte": 84 + "gte": 83, + "lte": 83 } ] }, "sort": [ - " 84-2008" + " 83-2007" ] }, { @@ -5822,7 +5820,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 64 + "offset": 67 }, "_score": null, "_source": { @@ -5847,11 +5845,11 @@ "dateRange": [ { "gte": "2007", - "lte": "2007" + "lte": "2008" } ], "enumerationChronology": [ - "v. 83 (Oct-Nov 2007 & Suppl.)" + "v. 83 (Dec. 3, 2007-Feb. 4, 2008)" ], "enumerationChronology_sort": [ " 83-2007" @@ -5869,19 +5867,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085063984" + "33433085064206" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", - "urn:barcode:33433085063984" + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", + "urn:barcode:33433085064206" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)", + "value": "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", "type": "bf:ShelfMark" }, { - "value": "33433085063984", + "value": "33433085064206", "type": "bf:Barcode" } ], @@ -5901,9 +5899,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Oct-Nov 2007 & Suppl.)" + "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Oct-Nov 2007 & Suppl.)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Dec. 3, 2007-Feb. 4, 2008)", "status": [ { "id": "status:a", @@ -5916,7 +5914,7 @@ "type": [ "bf:Item" ], - "uri": "i25589229", + "uri": "i25589263", "volumeRange": [ { "gte": 83, @@ -5933,7 +5931,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 65 + "offset": 68 }, "_score": null, "_source": { @@ -5962,7 +5960,7 @@ } ], "enumerationChronology": [ - "v. 83 (June 25-July 30, 2007)" + "v. 83 (Aug-Sept 2007 & Suppl.)" ], "enumerationChronology_sort": [ " 83-2007" @@ -5980,19 +5978,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085063943" + "33433085063968" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", - "urn:barcode:33433085063943" + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", + "urn:barcode:33433085063968" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)", + "value": "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", "type": "bf:ShelfMark" }, { - "value": "33433085063943", + "value": "33433085063968", "type": "bf:Barcode" } ], @@ -6012,9 +6010,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 83 (June 25-July 30, 2007)" + "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (June 25-July 30, 2007)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Aug-Sept 2007 & Suppl.)", "status": [ { "id": "status:a", @@ -6027,7 +6025,7 @@ "type": [ "bf:Item" ], - "uri": "i25589274", + "uri": "i25589251", "volumeRange": [ { "gte": 83, @@ -6044,7 +6042,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 66 + "offset": 69 }, "_score": null, "_source": { @@ -6073,7 +6071,7 @@ } ], "enumerationChronology": [ - "v. 83 (Feb. 19-Mar. 26, 2007)" + "v. 83 (Apr. 2-May 21, 2007)" ], "enumerationChronology_sort": [ " 83-2007" @@ -6091,19 +6089,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085064180" + "33433085064198" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", - "urn:barcode:33433085064180" + "urn:shelfmark:*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", + "urn:barcode:33433085064198" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)", + "value": "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", "type": "bf:ShelfMark" }, { - "value": "33433085064180", + "value": "33433085064198", "type": "bf:Barcode" } ], @@ -6123,9 +6121,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Feb. 19-Mar. 26, 2007)" + "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Feb. 19-Mar. 26, 2007)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Apr. 2-May 21, 2007)", "status": [ { "id": "status:a", @@ -6138,7 +6136,7 @@ "type": [ "bf:Item" ], - "uri": "i25589278", + "uri": "i25589269", "volumeRange": [ { "gte": 83, @@ -6155,7 +6153,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 67 + "offset": 70 }, "_score": null, "_source": { @@ -6179,15 +6177,15 @@ ], "dateRange": [ { - "gte": "2007", - "lte": "2008" + "gte": "2006", + "lte": "2006" } ], "enumerationChronology": [ - "v. 83 (Dec. 3, 2007-Feb. 4, 2008)" + "v. 82 (Oct.-Nov. 2006)" ], "enumerationChronology_sort": [ - " 83-2007" + " 82-2006" ], "formatLiteral": [ "Text" @@ -6202,19 +6200,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085064206" + "33433084240575" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", - "urn:barcode:33433085064206" + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", + "urn:barcode:33433084240575" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)", + "value": "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", "type": "bf:ShelfMark" }, { - "value": "33433085064206", + "value": "33433084240575", "type": "bf:Barcode" } ], @@ -6234,9 +6232,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Dec. 3, 2007-Feb. 4, 2008)" + "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Dec. 3, 2007-Feb. 4, 2008)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Oct.-Nov. 2006)", "status": [ { "id": "status:a", @@ -6249,16 +6247,16 @@ "type": [ "bf:Item" ], - "uri": "i25589263", + "uri": "i17474922", "volumeRange": [ { - "gte": 83, - "lte": 83 + "gte": 82, + "lte": 82 } ] }, "sort": [ - " 83-2007" + " 82-2006" ] }, { @@ -6266,7 +6264,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 68 + "offset": 71 }, "_score": null, "_source": { @@ -6290,15 +6288,15 @@ ], "dateRange": [ { - "gte": "2007", - "lte": "2007" + "gte": "2006", + "lte": "2006" } ], "enumerationChronology": [ - "v. 83 (Aug-Sept 2007 & Suppl.)" + "v. 82 (May-June 2006)" ], "enumerationChronology_sort": [ - " 83-2007" + " 82-2006" ], "formatLiteral": [ "Text" @@ -6313,19 +6311,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085063968" + "33433084240559" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", - "urn:barcode:33433085063968" + "urn:shelfmark:*DA+ (New Yorker) v. 82 (May-June 2006)", + "urn:barcode:33433084240559" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)", + "value": "*DA+ (New Yorker) v. 82 (May-June 2006)", "type": "bf:ShelfMark" }, { - "value": "33433085063968", + "value": "33433084240559", "type": "bf:Barcode" } ], @@ -6345,9 +6343,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Aug-Sept 2007 & Suppl.)" + "*DA+ (New Yorker) v. 82 (May-June 2006)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Aug-Sept 2007 & Suppl.)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (May-June 2006)", "status": [ { "id": "status:a", @@ -6360,16 +6358,16 @@ "type": [ "bf:Item" ], - "uri": "i25589251", + "uri": "i17474920", "volumeRange": [ { - "gte": 83, - "lte": 83 + "gte": 82, + "lte": 82 } ] }, "sort": [ - " 83-2007" + " 82-2006" ] }, { @@ -6377,7 +6375,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 69 + "offset": 72 }, "_score": null, "_source": { @@ -6401,15 +6399,15 @@ ], "dateRange": [ { - "gte": "2007", - "lte": "2007" + "gte": "2006", + "lte": "2006" } ], "enumerationChronology": [ - "v. 83 (Apr. 2-May 21, 2007)" + "v. 82 (July-Sept. & Suppl. 2006)" ], "enumerationChronology_sort": [ - " 83-2007" + " 82-2006" ], "formatLiteral": [ "Text" @@ -6424,19 +6422,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433085064198" + "33433084240567" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", - "urn:barcode:33433085064198" + "urn:shelfmark:*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", + "urn:barcode:33433084240567" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)", + "value": "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", "type": "bf:ShelfMark" }, { - "value": "33433085064198", + "value": "33433084240567", "type": "bf:Barcode" } ], @@ -6456,9 +6454,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 83 (Apr. 2-May 21, 2007)" + "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000083 (Apr. 2-May 21, 2007)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (July-Sept. & Suppl. 2006)", "status": [ { "id": "status:a", @@ -6471,16 +6469,16 @@ "type": [ "bf:Item" ], - "uri": "i25589269", + "uri": "i17474921", "volumeRange": [ { - "gte": 83, - "lte": 83 + "gte": 82, + "lte": 82 } ] }, "sort": [ - " 83-2007" + " 82-2006" ] }, { @@ -6488,7 +6486,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 70 + "offset": 73 }, "_score": null, "_source": { @@ -6517,7 +6515,7 @@ } ], "enumerationChronology": [ - "v. 82 (Oct.-Nov. 2006)" + "v. 82 (Feb. 13-Apr. 24, 2006)" ], "enumerationChronology_sort": [ " 82-2006" @@ -6535,19 +6533,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240575" + "33433084240542" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", - "urn:barcode:33433084240575" + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", + "urn:barcode:33433084240542" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)", + "value": "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", "type": "bf:ShelfMark" }, { - "value": "33433084240575", + "value": "33433084240542", "type": "bf:Barcode" } ], @@ -6567,9 +6565,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 82 (Oct.-Nov. 2006)" + "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Oct.-Nov. 2006)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Feb. 13-Apr. 24, 2006)", "status": [ { "id": "status:a", @@ -6582,7 +6580,7 @@ "type": [ "bf:Item" ], - "uri": "i17474922", + "uri": "i17474919", "volumeRange": [ { "gte": 82, @@ -6599,7 +6597,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 71 + "offset": 74 }, "_score": null, "_source": { @@ -6624,11 +6622,11 @@ "dateRange": [ { "gte": "2006", - "lte": "2006" + "lte": "2007" } ], "enumerationChronology": [ - "v. 82 (May-June 2006)" + "v. 82 (Dec. 4, 2006-Feb. 12, 2007)" ], "enumerationChronology_sort": [ " 82-2006" @@ -6646,19 +6644,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240559" + "33433084240583" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 82 (May-June 2006)", - "urn:barcode:33433084240559" + "urn:shelfmark:*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", + "urn:barcode:33433084240583" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 82 (May-June 2006)", + "value": "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", "type": "bf:ShelfMark" }, { - "value": "33433084240559", + "value": "33433084240583", "type": "bf:Barcode" } ], @@ -6678,9 +6676,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 82 (May-June 2006)" + "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (May-June 2006)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Dec. 4, 2006-Feb. 12, 2007)", "status": [ { "id": "status:a", @@ -6693,7 +6691,7 @@ "type": [ "bf:Item" ], - "uri": "i17474920", + "uri": "i17474923", "volumeRange": [ { "gte": 82, @@ -6710,7 +6708,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 72 + "offset": 75 }, "_score": null, "_source": { @@ -6734,15 +6732,15 @@ ], "dateRange": [ { - "gte": "2006", - "lte": "2006" + "gte": "2005", + "lte": "2005" } ], "enumerationChronology": [ - "v. 82 (July-Sept. & Suppl. 2006)" + "v. 81 (Oct.-Nov. 2005)" ], "enumerationChronology_sort": [ - " 82-2006" + " 81-2005" ], "formatLiteral": [ "Text" @@ -6757,19 +6755,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240567" + "33433084240526" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", - "urn:barcode:33433084240567" + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", + "urn:barcode:33433084240526" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)", + "value": "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", "type": "bf:ShelfMark" }, { - "value": "33433084240567", + "value": "33433084240526", "type": "bf:Barcode" } ], @@ -6789,9 +6787,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 82 (July-Sept. & Suppl. 2006)" + "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (July-Sept. & Suppl. 2006)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Oct.-Nov. 2005)", "status": [ { "id": "status:a", @@ -6804,16 +6802,16 @@ "type": [ "bf:Item" ], - "uri": "i17474921", + "uri": "i17474917", "volumeRange": [ { - "gte": 82, - "lte": 82 + "gte": 81, + "lte": 81 } ] }, "sort": [ - " 82-2006" + " 81-2005" ] }, { @@ -6821,7 +6819,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 73 + "offset": 76 }, "_score": null, "_source": { @@ -6845,15 +6843,15 @@ ], "dateRange": [ { - "gte": "2006", - "lte": "2006" + "gte": "2005", + "lte": "2005" } ], "enumerationChronology": [ - "v. 82 (Feb. 13-Apr. 24, 2006)" + "v. 81 (June 27-Sept.26,2005;Suppl.)" ], "enumerationChronology_sort": [ - " 82-2006" + " 81-2005" ], "formatLiteral": [ "Text" @@ -6868,19 +6866,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240542" + "33433084240518" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", - "urn:barcode:33433084240542" + "urn:shelfmark:*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", + "urn:barcode:33433084240518" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)", + "value": "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", "type": "bf:ShelfMark" }, { - "value": "33433084240542", + "value": "33433084240518", "type": "bf:Barcode" } ], @@ -6900,9 +6898,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 82 (Feb. 13-Apr. 24, 2006)" + "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Feb. 13-Apr. 24, 2006)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (June 27-Sept.26,2005;Suppl.)", "status": [ { "id": "status:a", @@ -6915,16 +6913,16 @@ "type": [ "bf:Item" ], - "uri": "i17474919", + "uri": "i17474916", "volumeRange": [ { - "gte": 82, - "lte": 82 + "gte": 81, + "lte": 81 } ] }, "sort": [ - " 82-2006" + " 81-2005" ] }, { @@ -6932,7 +6930,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 74 + "offset": 77 }, "_score": null, "_source": { @@ -6956,15 +6954,15 @@ ], "dateRange": [ { - "gte": "2006", - "lte": "2007" + "gte": "2005", + "lte": "2005" } ], "enumerationChronology": [ - "v. 82 (Dec. 4, 2006-Feb. 12, 2007)" + "v. 81 (Feb. 14-Mar. 28, 2005)" ], "enumerationChronology_sort": [ - " 82-2006" + " 81-2005" ], "formatLiteral": [ "Text" @@ -6979,19 +6977,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240583" + "33433084240492" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", - "urn:barcode:33433084240583" + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", + "urn:barcode:33433084240492" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)", + "value": "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", "type": "bf:ShelfMark" }, { - "value": "33433084240583", + "value": "33433084240492", "type": "bf:Barcode" } ], @@ -7011,9 +7009,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 82 (Dec. 4, 2006-Feb. 12, 2007)" + "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000082 (Dec. 4, 2006-Feb. 12, 2007)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Feb. 14-Mar. 28, 2005)", "status": [ { "id": "status:a", @@ -7026,16 +7024,16 @@ "type": [ "bf:Item" ], - "uri": "i17474923", + "uri": "i17474914", "volumeRange": [ { - "gte": 82, - "lte": 82 + "gte": 81, + "lte": 81 } ] }, "sort": [ - " 82-2006" + " 81-2005" ] }, { @@ -7043,7 +7041,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 75 + "offset": 78 }, "_score": null, "_source": { @@ -7068,11 +7066,11 @@ "dateRange": [ { "gte": "2005", - "lte": "2005" + "lte": "2006" } ], "enumerationChronology": [ - "v. 81 (Oct.-Nov. 2005)" + "v. 81 (Dec. 5, 2005-Feb. 6, 2006)" ], "enumerationChronology_sort": [ " 81-2005" @@ -7090,19 +7088,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240526" + "33433084240534" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", - "urn:barcode:33433084240526" + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", + "urn:barcode:33433084240534" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)", + "value": "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", "type": "bf:ShelfMark" }, { - "value": "33433084240526", + "value": "33433084240534", "type": "bf:Barcode" } ], @@ -7122,9 +7120,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 81 (Oct.-Nov. 2005)" + "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Oct.-Nov. 2005)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Dec. 5, 2005-Feb. 6, 2006)", "status": [ { "id": "status:a", @@ -7137,7 +7135,7 @@ "type": [ "bf:Item" ], - "uri": "i17474917", + "uri": "i17474918", "volumeRange": [ { "gte": 81, @@ -7154,7 +7152,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 76 + "offset": 79 }, "_score": null, "_source": { @@ -7183,7 +7181,7 @@ } ], "enumerationChronology": [ - "v. 81 (June 27-Sept.26,2005;Suppl.)" + "v. 81 (Apr.-May 2005)" ], "enumerationChronology_sort": [ " 81-2005" @@ -7201,19 +7199,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240518" + "33433084240500" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", - "urn:barcode:33433084240518" + "urn:shelfmark:*DA+ (New Yorker) v. 81 (Apr.-May 2005)", + "urn:barcode:33433084240500" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)", + "value": "*DA+ (New Yorker) v. 81 (Apr.-May 2005)", "type": "bf:ShelfMark" }, { - "value": "33433084240518", + "value": "33433084240500", "type": "bf:Barcode" } ], @@ -7233,9 +7231,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 81 (June 27-Sept.26,2005;Suppl.)" + "*DA+ (New Yorker) v. 81 (Apr.-May 2005)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (June 27-Sept.26,2005;Suppl.)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Apr.-May 2005)", "status": [ { "id": "status:a", @@ -7248,7 +7246,7 @@ "type": [ "bf:Item" ], - "uri": "i17474916", + "uri": "i17474915", "volumeRange": [ { "gte": 81, @@ -7265,7 +7263,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 77 + "offset": 80 }, "_score": null, "_source": { @@ -7289,15 +7287,15 @@ ], "dateRange": [ { - "gte": "2005", - "lte": "2005" + "gte": "2004", + "lte": "2004" } ], "enumerationChronology": [ - "v. 81 (Feb. 14-Mar. 28, 2005)" + "v. 80 (Oct.-Nov. 2004)" ], "enumerationChronology_sort": [ - " 81-2005" + " 80-2004" ], "formatLiteral": [ "Text" @@ -7312,19 +7310,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240492" + "33433084240476" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", - "urn:barcode:33433084240492" + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", + "urn:barcode:33433084240476" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)", + "value": "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", "type": "bf:ShelfMark" }, { - "value": "33433084240492", + "value": "33433084240476", "type": "bf:Barcode" } ], @@ -7344,9 +7342,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 81 (Feb. 14-Mar. 28, 2005)" + "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Feb. 14-Mar. 28, 2005)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Oct.-Nov. 2004)", "status": [ { "id": "status:a", @@ -7359,16 +7357,16 @@ "type": [ "bf:Item" ], - "uri": "i17474914", + "uri": "i17474912", "volumeRange": [ { - "gte": 81, - "lte": 81 + "gte": 80, + "lte": 80 } ] }, "sort": [ - " 81-2005" + " 80-2004" ] }, { @@ -7376,7 +7374,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 78 + "offset": 81 }, "_score": null, "_source": { @@ -7400,15 +7398,15 @@ ], "dateRange": [ { - "gte": "2005", - "lte": "2006" + "gte": "2004", + "lte": "2004" } ], "enumerationChronology": [ - "v. 81 (Dec. 5, 2005-Feb. 6, 2006)" + "v. 80 (May-June 2004)" ], "enumerationChronology_sort": [ - " 81-2005" + " 80-2004" ], "formatLiteral": [ "Text" @@ -7423,19 +7421,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240534" + "33433084240468" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", - "urn:barcode:33433084240534" + "urn:shelfmark:*DA+ (New Yorker) v. 80 (May-June 2004)", + "urn:barcode:33433084240468" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)", + "value": "*DA+ (New Yorker) v. 80 (May-June 2004)", "type": "bf:ShelfMark" }, { - "value": "33433084240534", + "value": "33433084240468", "type": "bf:Barcode" } ], @@ -7455,9 +7453,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 81 (Dec. 5, 2005-Feb. 6, 2006)" + "*DA+ (New Yorker) v. 80 (May-June 2004)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Dec. 5, 2005-Feb. 6, 2006)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (May-June 2004)", "status": [ { "id": "status:a", @@ -7470,16 +7468,16 @@ "type": [ "bf:Item" ], - "uri": "i17474918", + "uri": "i17474911", "volumeRange": [ { - "gte": 81, - "lte": 81 + "gte": 80, + "lte": 80 } ] }, "sort": [ - " 81-2005" + " 80-2004" ] }, { @@ -7487,7 +7485,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 79 + "offset": 82 }, "_score": null, "_source": { @@ -7511,15 +7509,15 @@ ], "dateRange": [ { - "gte": "2005", - "lte": "2005" + "gte": "2004", + "lte": "2004" } ], "enumerationChronology": [ - "v. 81 (Apr.-May 2005)" + "v. 80 (July-Sept 2004)" ], "enumerationChronology_sort": [ - " 81-2005" + " 80-2004" ], "formatLiteral": [ "Text" @@ -7534,19 +7532,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240500" + "33433078508037" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 81 (Apr.-May 2005)", - "urn:barcode:33433084240500" + "urn:shelfmark:*DA+ (New Yorker) v. 80 (July-Sept 2004)", + "urn:barcode:33433078508037" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 81 (Apr.-May 2005)", + "value": "*DA+ (New Yorker) v. 80 (July-Sept 2004)", "type": "bf:ShelfMark" }, { - "value": "33433084240500", + "value": "33433078508037", "type": "bf:Barcode" } ], @@ -7566,9 +7564,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 81 (Apr.-May 2005)" + "*DA+ (New Yorker) v. 80 (July-Sept 2004)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000081 (Apr.-May 2005)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (July-Sept 2004)", "status": [ { "id": "status:a", @@ -7581,16 +7579,16 @@ "type": [ "bf:Item" ], - "uri": "i17474915", + "uri": "i17474399", "volumeRange": [ { - "gte": 81, - "lte": 81 + "gte": 80, + "lte": 80 } ] }, "sort": [ - " 81-2005" + " 80-2004" ] }, { @@ -7598,7 +7596,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 80 + "offset": 83 }, "_score": null, "_source": { @@ -7627,7 +7625,7 @@ } ], "enumerationChronology": [ - "v. 80 (Oct.-Nov. 2004)" + "v. 80 (Feb. 16- Apr. 26 2004)" ], "enumerationChronology_sort": [ " 80-2004" @@ -7645,19 +7643,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240476" + "33433080028222" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", - "urn:barcode:33433084240476" + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", + "urn:barcode:33433080028222" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)", + "value": "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", "type": "bf:ShelfMark" }, { - "value": "33433084240476", + "value": "33433080028222", "type": "bf:Barcode" } ], @@ -7677,9 +7675,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 80 (Oct.-Nov. 2004)" + "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Oct.-Nov. 2004)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Feb. 16- Apr. 26 2004)", "status": [ { "id": "status:a", @@ -7692,7 +7690,7 @@ "type": [ "bf:Item" ], - "uri": "i17474912", + "uri": "i17474447", "volumeRange": [ { "gte": 80, @@ -7709,7 +7707,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 81 + "offset": 84 }, "_score": null, "_source": { @@ -7734,11 +7732,11 @@ "dateRange": [ { "gte": "2004", - "lte": "2004" + "lte": "2005" } ], "enumerationChronology": [ - "v. 80 (May-June 2004)" + "v. 80 (Dec. 6, 2004-Feb. 7, 2005)" ], "enumerationChronology_sort": [ " 80-2004" @@ -7756,19 +7754,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240468" + "33433084240484" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 80 (May-June 2004)", - "urn:barcode:33433084240468" + "urn:shelfmark:*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", + "urn:barcode:33433084240484" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 80 (May-June 2004)", + "value": "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", "type": "bf:ShelfMark" }, { - "value": "33433084240468", + "value": "33433084240484", "type": "bf:Barcode" } ], @@ -7788,9 +7786,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 80 (May-June 2004)" + "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (May-June 2004)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Dec. 6, 2004-Feb. 7, 2005)", "status": [ { "id": "status:a", @@ -7803,7 +7801,7 @@ "type": [ "bf:Item" ], - "uri": "i17474911", + "uri": "i17474913", "volumeRange": [ { "gte": 80, @@ -7820,7 +7818,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 82 + "offset": 85 }, "_score": null, "_source": { @@ -7844,15 +7842,15 @@ ], "dateRange": [ { - "gte": "2004", - "lte": "2004" + "gte": "2003", + "lte": "2003" } ], "enumerationChronology": [ - "v. 80 (July-Sept 2004)" + "v. 79 (Oct.-Nov. 2003)" ], "enumerationChronology_sort": [ - " 80-2004" + " 79-2003" ], "formatLiteral": [ "Text" @@ -7867,19 +7865,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078508037" + "33433084240443" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 80 (July-Sept 2004)", - "urn:barcode:33433078508037" + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", + "urn:barcode:33433084240443" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 80 (July-Sept 2004)", + "value": "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", "type": "bf:ShelfMark" }, { - "value": "33433078508037", + "value": "33433084240443", "type": "bf:Barcode" } ], @@ -7899,9 +7897,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 80 (July-Sept 2004)" + "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (July-Sept 2004)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Oct.-Nov. 2003)", "status": [ { "id": "status:a", @@ -7914,16 +7912,16 @@ "type": [ "bf:Item" ], - "uri": "i17474399", + "uri": "i17474909", "volumeRange": [ { - "gte": 80, - "lte": 80 + "gte": 79, + "lte": 79 } ] }, "sort": [ - " 80-2004" + " 79-2003" ] }, { @@ -7931,7 +7929,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 83 + "offset": 86 }, "_score": null, "_source": { @@ -7955,15 +7953,15 @@ ], "dateRange": [ { - "gte": "2004", - "lte": "2004" + "gte": "2003", + "lte": "2003" } ], "enumerationChronology": [ - "v. 80 (Feb. 16- Apr. 26 2004)" + "v. 79 (June-July 2003)" ], "enumerationChronology_sort": [ - " 80-2004" + " 79-2003" ], "formatLiteral": [ "Text" @@ -7978,19 +7976,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433080028222" + "33433084240427" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", - "urn:barcode:33433080028222" + "urn:shelfmark:*DA+ (New Yorker) v. 79 (June-July 2003)", + "urn:barcode:33433084240427" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)", + "value": "*DA+ (New Yorker) v. 79 (June-July 2003)", "type": "bf:ShelfMark" }, { - "value": "33433080028222", + "value": "33433084240427", "type": "bf:Barcode" } ], @@ -8010,9 +8008,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 80 (Feb. 16- Apr. 26 2004)" + "*DA+ (New Yorker) v. 79 (June-July 2003)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Feb. 16- Apr. 26 2004)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (June-July 2003)", "status": [ { "id": "status:a", @@ -8025,16 +8023,16 @@ "type": [ "bf:Item" ], - "uri": "i17474447", + "uri": "i17474907", "volumeRange": [ { - "gte": 80, - "lte": 80 + "gte": 79, + "lte": 79 } ] }, "sort": [ - " 80-2004" + " 79-2003" ] }, { @@ -8042,7 +8040,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 84 + "offset": 87 }, "_score": null, "_source": { @@ -8066,15 +8064,15 @@ ], "dateRange": [ { - "gte": "2004", - "lte": "2005" + "gte": "2003", + "lte": "2003" } ], "enumerationChronology": [ - "v. 80 (Dec. 6, 2004-Feb. 7, 2005)" + "v. 79 (Feb. 17-Mar. 31, 2003)" ], "enumerationChronology_sort": [ - " 80-2004" + " 79-2003" ], "formatLiteral": [ "Text" @@ -8089,19 +8087,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240484" + "33433084240401" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", - "urn:barcode:33433084240484" + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", + "urn:barcode:33433084240401" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)", + "value": "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", "type": "bf:ShelfMark" }, { - "value": "33433084240484", + "value": "33433084240401", "type": "bf:Barcode" } ], @@ -8121,9 +8119,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 80 (Dec. 6, 2004-Feb. 7, 2005)" + "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000080 (Dec. 6, 2004-Feb. 7, 2005)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Feb. 17-Mar. 31, 2003)", "status": [ { "id": "status:a", @@ -8136,16 +8134,16 @@ "type": [ "bf:Item" ], - "uri": "i17474913", + "uri": "i17474905", "volumeRange": [ { - "gte": 80, - "lte": 80 + "gte": 79, + "lte": 79 } ] }, "sort": [ - " 80-2004" + " 79-2003" ] }, { @@ -8153,7 +8151,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 85 + "offset": 88 }, "_score": null, "_source": { @@ -8178,11 +8176,11 @@ "dateRange": [ { "gte": "2003", - "lte": "2003" + "lte": "2004" } ], "enumerationChronology": [ - "v. 79 (Oct.-Nov. 2003)" + "v. 79 (Dec. 1, 2003-Feb. 9, 2004)" ], "enumerationChronology_sort": [ " 79-2003" @@ -8200,19 +8198,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240443" + "33433084240450" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", - "urn:barcode:33433084240443" + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", + "urn:barcode:33433084240450" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)", + "value": "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", "type": "bf:ShelfMark" }, { - "value": "33433084240443", + "value": "33433084240450", "type": "bf:Barcode" } ], @@ -8232,9 +8230,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Oct.-Nov. 2003)" + "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Oct.-Nov. 2003)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Dec. 1, 2003-Feb. 9, 2004)", "status": [ { "id": "status:a", @@ -8247,7 +8245,7 @@ "type": [ "bf:Item" ], - "uri": "i17474909", + "uri": "i17474910", "volumeRange": [ { "gte": 79, @@ -8264,7 +8262,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 86 + "offset": 89 }, "_score": null, "_source": { @@ -8293,7 +8291,7 @@ } ], "enumerationChronology": [ - "v. 79 (June-July 2003)" + "v. 79 (Aug-Sept. 2003)" ], "enumerationChronology_sort": [ " 79-2003" @@ -8311,19 +8309,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240427" + "33433084240435" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 79 (June-July 2003)", - "urn:barcode:33433084240427" + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", + "urn:barcode:33433084240435" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 79 (June-July 2003)", + "value": "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", "type": "bf:ShelfMark" }, { - "value": "33433084240427", + "value": "33433084240435", "type": "bf:Barcode" } ], @@ -8343,9 +8341,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 79 (June-July 2003)" + "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (June-July 2003)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Aug-Sept. 2003)", "status": [ { "id": "status:a", @@ -8358,7 +8356,7 @@ "type": [ "bf:Item" ], - "uri": "i17474907", + "uri": "i17474908", "volumeRange": [ { "gte": 79, @@ -8375,7 +8373,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 87 + "offset": 90 }, "_score": null, "_source": { @@ -8404,7 +8402,7 @@ } ], "enumerationChronology": [ - "v. 79 (Feb. 17-Mar. 31, 2003)" + "v. 79 (Apr.-May 2003)" ], "enumerationChronology_sort": [ " 79-2003" @@ -8422,19 +8420,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240401" + "33433084240419" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", - "urn:barcode:33433084240401" + "urn:shelfmark:*DA+ (New Yorker) v. 79 (Apr.-May 2003)", + "urn:barcode:33433084240419" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)", + "value": "*DA+ (New Yorker) v. 79 (Apr.-May 2003)", "type": "bf:ShelfMark" }, { - "value": "33433084240401", + "value": "33433084240419", "type": "bf:Barcode" } ], @@ -8454,9 +8452,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Feb. 17-Mar. 31, 2003)" + "*DA+ (New Yorker) v. 79 (Apr.-May 2003)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Feb. 17-Mar. 31, 2003)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Apr.-May 2003)", "status": [ { "id": "status:a", @@ -8469,7 +8467,7 @@ "type": [ "bf:Item" ], - "uri": "i17474905", + "uri": "i17474906", "volumeRange": [ { "gte": 79, @@ -8486,7 +8484,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 88 + "offset": 91 }, "_score": null, "_source": { @@ -8510,15 +8508,15 @@ ], "dateRange": [ { - "gte": "2003", - "lte": "2004" + "gte": "2002", + "lte": "2002" } ], "enumerationChronology": [ - "v. 79 (Dec. 1, 2003-Feb. 9, 2004)" + "v. 78 (Oct.-Nov. 2002)" ], "enumerationChronology_sort": [ - " 79-2003" + " 78-2002" ], "formatLiteral": [ "Text" @@ -8533,19 +8531,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240450" + "33433084240385" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", - "urn:barcode:33433084240450" + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", + "urn:barcode:33433084240385" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)", + "value": "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", "type": "bf:ShelfMark" }, { - "value": "33433084240450", + "value": "33433084240385", "type": "bf:Barcode" } ], @@ -8565,9 +8563,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Dec. 1, 2003-Feb. 9, 2004)" + "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Dec. 1, 2003-Feb. 9, 2004)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Oct.-Nov. 2002)", "status": [ { "id": "status:a", @@ -8580,16 +8578,16 @@ "type": [ "bf:Item" ], - "uri": "i17474910", + "uri": "i17474903", "volumeRange": [ { - "gte": 79, - "lte": 79 + "gte": 78, + "lte": 78 } ] }, "sort": [ - " 79-2003" + " 78-2002" ] }, { @@ -8597,7 +8595,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 89 + "offset": 92 }, "_score": null, "_source": { @@ -8621,15 +8619,15 @@ ], "dateRange": [ { - "gte": "2003", - "lte": "2003" + "gte": "2002", + "lte": "2002" } ], "enumerationChronology": [ - "v. 79 (Aug-Sept. 2003)" + "v. 78 (June-July 2002)" ], "enumerationChronology_sort": [ - " 79-2003" + " 78-2002" ], "formatLiteral": [ "Text" @@ -8644,19 +8642,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240435" + "33433084240369" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", - "urn:barcode:33433084240435" + "urn:shelfmark:*DA+ (New Yorker) v. 78 (June-July 2002)", + "urn:barcode:33433084240369" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)", + "value": "*DA+ (New Yorker) v. 78 (June-July 2002)", "type": "bf:ShelfMark" }, { - "value": "33433084240435", + "value": "33433084240369", "type": "bf:Barcode" } ], @@ -8676,9 +8674,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Aug-Sept. 2003)" + "*DA+ (New Yorker) v. 78 (June-July 2002)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Aug-Sept. 2003)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (June-July 2002)", "status": [ { "id": "status:a", @@ -8691,16 +8689,16 @@ "type": [ "bf:Item" ], - "uri": "i17474908", + "uri": "i17474901", "volumeRange": [ { - "gte": 79, - "lte": 79 + "gte": 78, + "lte": 78 } ] }, "sort": [ - " 79-2003" + " 78-2002" ] }, { @@ -8708,7 +8706,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 90 + "offset": 93 }, "_score": null, "_source": { @@ -8732,15 +8730,15 @@ ], "dateRange": [ { - "gte": "2003", - "lte": "2003" + "gte": "2002", + "lte": "2002" } ], "enumerationChronology": [ - "v. 79 (Apr.-May 2003)" + "v. 78 (Feb. 18-Mar. 25, 2002)" ], "enumerationChronology_sort": [ - " 79-2003" + " 78-2002" ], "formatLiteral": [ "Text" @@ -8755,19 +8753,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240419" + "33433084240344" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 79 (Apr.-May 2003)", - "urn:barcode:33433084240419" + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", + "urn:barcode:33433084240344" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 79 (Apr.-May 2003)", + "value": "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", "type": "bf:ShelfMark" }, { - "value": "33433084240419", + "value": "33433084240344", "type": "bf:Barcode" } ], @@ -8787,9 +8785,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 79 (Apr.-May 2003)" + "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000079 (Apr.-May 2003)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Feb. 18-Mar. 25, 2002)", "status": [ { "id": "status:a", @@ -8802,16 +8800,16 @@ "type": [ "bf:Item" ], - "uri": "i17474906", + "uri": "i17474899", "volumeRange": [ { - "gte": 79, - "lte": 79 + "gte": 78, + "lte": 78 } ] }, "sort": [ - " 79-2003" + " 78-2002" ] }, { @@ -8819,7 +8817,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 91 + "offset": 94 }, "_score": null, "_source": { @@ -8844,11 +8842,11 @@ "dateRange": [ { "gte": "2002", - "lte": "2002" + "lte": "2003" } ], "enumerationChronology": [ - "v. 78 (Oct.-Nov. 2002)" + "v. 78 (Dec. 2, 2002-Feb. 10, 2003)" ], "enumerationChronology_sort": [ " 78-2002" @@ -8866,19 +8864,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240385" + "33433084240393" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", - "urn:barcode:33433084240385" + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", + "urn:barcode:33433084240393" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)", + "value": "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", "type": "bf:ShelfMark" }, { - "value": "33433084240385", + "value": "33433084240393", "type": "bf:Barcode" } ], @@ -8898,9 +8896,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Oct.-Nov. 2002)" + "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Oct.-Nov. 2002)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Dec. 2, 2002-Feb. 10, 2003)", "status": [ { "id": "status:a", @@ -8913,7 +8911,7 @@ "type": [ "bf:Item" ], - "uri": "i17474903", + "uri": "i17474904", "volumeRange": [ { "gte": 78, @@ -8930,7 +8928,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 92 + "offset": 95 }, "_score": null, "_source": { @@ -8959,7 +8957,7 @@ } ], "enumerationChronology": [ - "v. 78 (June-July 2002)" + "v. 78 (Aug.-Sept. 2002)" ], "enumerationChronology_sort": [ " 78-2002" @@ -8977,19 +8975,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240369" + "33433084240377" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 78 (June-July 2002)", - "urn:barcode:33433084240369" + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", + "urn:barcode:33433084240377" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 78 (June-July 2002)", + "value": "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", "type": "bf:ShelfMark" }, { - "value": "33433084240369", + "value": "33433084240377", "type": "bf:Barcode" } ], @@ -9009,9 +9007,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 78 (June-July 2002)" + "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (June-July 2002)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Aug.-Sept. 2002)", "status": [ { "id": "status:a", @@ -9024,7 +9022,7 @@ "type": [ "bf:Item" ], - "uri": "i17474901", + "uri": "i17474902", "volumeRange": [ { "gte": 78, @@ -9041,7 +9039,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 93 + "offset": 96 }, "_score": null, "_source": { @@ -9070,7 +9068,7 @@ } ], "enumerationChronology": [ - "v. 78 (Feb. 18-Mar. 25, 2002)" + "v. 78 (Apr.-May 2002)" ], "enumerationChronology_sort": [ " 78-2002" @@ -9088,19 +9086,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240344" + "33433084240351" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", - "urn:barcode:33433084240344" + "urn:shelfmark:*DA+ (New Yorker) v. 78 (Apr.-May 2002)", + "urn:barcode:33433084240351" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)", + "value": "*DA+ (New Yorker) v. 78 (Apr.-May 2002)", "type": "bf:ShelfMark" }, { - "value": "33433084240344", + "value": "33433084240351", "type": "bf:Barcode" } ], @@ -9120,9 +9118,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Feb. 18-Mar. 25, 2002)" + "*DA+ (New Yorker) v. 78 (Apr.-May 2002)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Feb. 18-Mar. 25, 2002)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Apr.-May 2002)", "status": [ { "id": "status:a", @@ -9135,7 +9133,7 @@ "type": [ "bf:Item" ], - "uri": "i17474899", + "uri": "i17474900", "volumeRange": [ { "gte": 78, @@ -9152,7 +9150,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 94 + "offset": 97 }, "_score": null, "_source": { @@ -9176,15 +9174,15 @@ ], "dateRange": [ { - "gte": "2002", - "lte": "2003" + "gte": "2001", + "lte": "2001" } ], "enumerationChronology": [ - "v. 78 (Dec. 2, 2002-Feb. 10, 2003)" + "v. 77 (Oct. -Nov. 2001)" ], "enumerationChronology_sort": [ - " 78-2002" + " 77-2001" ], "formatLiteral": [ "Text" @@ -9199,19 +9197,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240393" + "33433084240328" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", - "urn:barcode:33433084240393" + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", + "urn:barcode:33433084240328" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)", + "value": "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", "type": "bf:ShelfMark" }, { - "value": "33433084240393", + "value": "33433084240328", "type": "bf:Barcode" } ], @@ -9231,9 +9229,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Dec. 2, 2002-Feb. 10, 2003)" + "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Dec. 2, 2002-Feb. 10, 2003)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Oct. -Nov. 2001)", "status": [ { "id": "status:a", @@ -9246,16 +9244,16 @@ "type": [ "bf:Item" ], - "uri": "i17474904", + "uri": "i17474897", "volumeRange": [ { - "gte": 78, - "lte": 78 + "gte": 77, + "lte": 77 } ] }, "sort": [ - " 78-2002" + " 77-2001" ] }, { @@ -9263,7 +9261,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 95 + "offset": 98 }, "_score": null, "_source": { @@ -9287,15 +9285,15 @@ ], "dateRange": [ { - "gte": "2002", - "lte": "2002" + "gte": "2001", + "lte": "2001" } ], "enumerationChronology": [ - "v. 78 (Aug.-Sept. 2002)" + "v. 77 (May-July 2001)" ], "enumerationChronology_sort": [ - " 78-2002" + " 77-2001" ], "formatLiteral": [ "Text" @@ -9310,19 +9308,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240377" + "33433079991612" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", - "urn:barcode:33433084240377" + "urn:shelfmark:*DA+ (New Yorker) v. 77 (May-July 2001)", + "urn:barcode:33433079991612" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)", + "value": "*DA+ (New Yorker) v. 77 (May-July 2001)", "type": "bf:ShelfMark" }, { - "value": "33433084240377", + "value": "33433079991612", "type": "bf:Barcode" } ], @@ -9342,9 +9340,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Aug.-Sept. 2002)" + "*DA+ (New Yorker) v. 77 (May-July 2001)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Aug.-Sept. 2002)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (May-July 2001)", "status": [ { "id": "status:a", @@ -9357,16 +9355,16 @@ "type": [ "bf:Item" ], - "uri": "i17474902", + "uri": "i17474446", "volumeRange": [ { - "gte": 78, - "lte": 78 + "gte": 77, + "lte": 77 } ] }, "sort": [ - " 78-2002" + " 77-2001" ] }, { @@ -9374,7 +9372,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 96 + "offset": 99 }, "_score": null, "_source": { @@ -9398,15 +9396,15 @@ ], "dateRange": [ { - "gte": "2002", - "lte": "2002" + "gte": "2001", + "lte": "2001" } ], "enumerationChronology": [ - "v. 78 (Apr.-May 2002)" + "v. 77 (Feb. 19-Apr. 30, 2001)" ], "enumerationChronology_sort": [ - " 78-2002" + " 77-2001" ], "formatLiteral": [ "Text" @@ -9421,19 +9419,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240351" + "33433084240302" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 78 (Apr.-May 2002)", - "urn:barcode:33433084240351" + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", + "urn:barcode:33433084240302" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 78 (Apr.-May 2002)", + "value": "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", "type": "bf:ShelfMark" }, { - "value": "33433084240351", + "value": "33433084240302", "type": "bf:Barcode" } ], @@ -9453,9 +9451,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 78 (Apr.-May 2002)" + "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000078 (Apr.-May 2002)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Feb. 19-Apr. 30, 2001)", "status": [ { "id": "status:a", @@ -9468,16 +9466,16 @@ "type": [ "bf:Item" ], - "uri": "i17474900", + "uri": "i17474895", "volumeRange": [ { - "gte": 78, - "lte": 78 + "gte": 77, + "lte": 77 } ] }, "sort": [ - " 78-2002" + " 77-2001" ] }, { @@ -9485,7 +9483,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 97 + "offset": 100 }, "_score": null, "_source": { @@ -9510,11 +9508,11 @@ "dateRange": [ { "gte": "2001", - "lte": "2001" + "lte": "2002" } ], "enumerationChronology": [ - "v. 77 (Oct. -Nov. 2001)" + "v. 77 (Dec. 3, 2001-Feb. 11, 2002)" ], "enumerationChronology_sort": [ " 77-2001" @@ -9532,19 +9530,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240328" + "33433084240336" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", - "urn:barcode:33433084240328" + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", + "urn:barcode:33433084240336" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)", + "value": "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", "type": "bf:ShelfMark" }, { - "value": "33433084240328", + "value": "33433084240336", "type": "bf:Barcode" } ], @@ -9564,9 +9562,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 77 (Oct. -Nov. 2001)" + "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Oct. -Nov. 2001)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Dec. 3, 2001-Feb. 11, 2002)", "status": [ { "id": "status:a", @@ -9579,7 +9577,7 @@ "type": [ "bf:Item" ], - "uri": "i17474897", + "uri": "i17474898", "volumeRange": [ { "gte": 77, @@ -9596,7 +9594,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 98 + "offset": 101 }, "_score": null, "_source": { @@ -9625,7 +9623,7 @@ } ], "enumerationChronology": [ - "v. 77 (May-July 2001)" + "v. 77 (Aug. 6-Sept. 17, 2001)" ], "enumerationChronology_sort": [ " 77-2001" @@ -9643,19 +9641,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433079991612" + "33433084240310" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 77 (May-July 2001)", - "urn:barcode:33433079991612" + "urn:shelfmark:*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", + "urn:barcode:33433084240310" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 77 (May-July 2001)", + "value": "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", "type": "bf:ShelfMark" }, { - "value": "33433079991612", + "value": "33433084240310", "type": "bf:Barcode" } ], @@ -9675,9 +9673,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 77 (May-July 2001)" + "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (May-July 2001)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Aug. 6-Sept. 17, 2001)", "status": [ { "id": "status:a", @@ -9690,7 +9688,7 @@ "type": [ "bf:Item" ], - "uri": "i17474446", + "uri": "i17474896", "volumeRange": [ { "gte": 77, @@ -9707,7 +9705,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 99 + "offset": 102 }, "_score": null, "_source": { @@ -9731,15 +9729,15 @@ ], "dateRange": [ { - "gte": "2001", - "lte": "2001" + "gte": "2000", + "lte": "2000" } ], "enumerationChronology": [ - "v. 77 (Feb. 19-Apr. 30, 2001)" + "v. 76 (Sept.-Oct. 2000)" ], "enumerationChronology_sort": [ - " 77-2001" + " 76-2000" ], "formatLiteral": [ "Text" @@ -9754,19 +9752,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240302" + "33433084240286" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", - "urn:barcode:33433084240302" + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)", + "urn:barcode:33433084240286" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)", + "value": "*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)", "type": "bf:ShelfMark" }, { - "value": "33433084240302", + "value": "33433084240286", "type": "bf:Barcode" } ], @@ -9786,9 +9784,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 77 (Feb. 19-Apr. 30, 2001)" + "*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Feb. 19-Apr. 30, 2001)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Sept.-Oct. 2000)", "status": [ { "id": "status:a", @@ -9801,16 +9799,16 @@ "type": [ "bf:Item" ], - "uri": "i17474895", + "uri": "i17474893", "volumeRange": [ { - "gte": 77, - "lte": 77 + "gte": 76, + "lte": 76 } ] }, "sort": [ - " 77-2001" + " 76-2000" ] }, { @@ -9818,7 +9816,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 100 + "offset": 103 }, "_score": null, "_source": { @@ -9842,15 +9840,15 @@ ], "dateRange": [ { - "gte": "2001", - "lte": "2002" + "gte": "2000", + "lte": "2001" } ], "enumerationChronology": [ - "v. 77 (Dec. 3, 2001-Feb. 11, 2002)" + "v. 76 (Nov. 6, 2000-Feb. 5, 2001)" ], "enumerationChronology_sort": [ - " 77-2001" + " 76-2000" ], "formatLiteral": [ "Text" @@ -9865,19 +9863,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240336" + "33433084240294" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", - "urn:barcode:33433084240336" + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)", + "urn:barcode:33433084240294" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)", + "value": "*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)", "type": "bf:ShelfMark" }, { - "value": "33433084240336", + "value": "33433084240294", "type": "bf:Barcode" } ], @@ -9897,9 +9895,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 77 (Dec. 3, 2001-Feb. 11, 2002)" + "*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Dec. 3, 2001-Feb. 11, 2002)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Nov. 6, 2000-Feb. 5, 2001)", "status": [ { "id": "status:a", @@ -9912,16 +9910,16 @@ "type": [ "bf:Item" ], - "uri": "i17474898", + "uri": "i17474894", "volumeRange": [ { - "gte": 77, - "lte": 77 + "gte": 76, + "lte": 76 } ] }, "sort": [ - " 77-2001" + " 76-2000" ] }, { @@ -9929,7 +9927,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 101 + "offset": 104 }, "_score": null, "_source": { @@ -9953,15 +9951,15 @@ ], "dateRange": [ { - "gte": "2001", - "lte": "2001" + "gte": "2000", + "lte": "2000" } ], "enumerationChronology": [ - "v. 77 (Aug. 6-Sept. 17, 2001)" + "v. 76 (July-Aug. 2000)" ], "enumerationChronology_sort": [ - " 77-2001" + " 76-2000" ], "formatLiteral": [ "Text" @@ -9976,19 +9974,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240310" + "33433078639105" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", - "urn:barcode:33433084240310" + "urn:shelfmark:*DA+ (New Yorker) v. 76 (July-Aug. 2000)", + "urn:barcode:33433078639105" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)", + "value": "*DA+ (New Yorker) v. 76 (July-Aug. 2000)", "type": "bf:ShelfMark" }, { - "value": "33433084240310", + "value": "33433078639105", "type": "bf:Barcode" } ], @@ -10008,9 +10006,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 77 (Aug. 6-Sept. 17, 2001)" + "*DA+ (New Yorker) v. 76 (July-Aug. 2000)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000077 (Aug. 6-Sept. 17, 2001)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (July-Aug. 2000)", "status": [ { "id": "status:a", @@ -10023,16 +10021,16 @@ "type": [ "bf:Item" ], - "uri": "i17474896", + "uri": "i17474402", "volumeRange": [ { - "gte": 77, - "lte": 77 + "gte": 76, + "lte": 76 } ] }, "sort": [ - " 77-2001" + " 76-2000" ] }, { @@ -10040,7 +10038,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 102 + "offset": 105 }, "_score": null, "_source": { @@ -10069,7 +10067,7 @@ } ], "enumerationChronology": [ - "v. 76 (Sept.-Oct. 2000)" + "v. 76 (Feb. 21 - Apr. 17, 2000)" ], "enumerationChronology_sort": [ " 76-2000" @@ -10087,19 +10085,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240286" + "33433084240278" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)", - "urn:barcode:33433084240286" + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)", + "urn:barcode:33433084240278" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)", + "value": "*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)", "type": "bf:ShelfMark" }, { - "value": "33433084240286", + "value": "33433084240278", "type": "bf:Barcode" } ], @@ -10119,9 +10117,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 76 (Sept.-Oct. 2000)" + "*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Sept.-Oct. 2000)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Feb. 21 - Apr. 17, 2000)", "status": [ { "id": "status:a", @@ -10134,7 +10132,7 @@ "type": [ "bf:Item" ], - "uri": "i17474893", + "uri": "i40028166", "volumeRange": [ { "gte": 76, @@ -10151,7 +10149,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 103 + "offset": 106 }, "_score": null, "_source": { @@ -10176,11 +10174,11 @@ "dateRange": [ { "gte": "2000", - "lte": "2001" + "lte": "2000" } ], "enumerationChronology": [ - "v. 76 (Nov. 6, 2000-Feb. 5, 2001)" + "v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" ], "enumerationChronology_sort": [ " 76-2000" @@ -10198,19 +10196,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240294" + "33433080426707" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)", - "urn:barcode:33433084240294" + "urn:shelfmark:*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", + "urn:barcode:33433080426707" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)", + "value": "*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", "type": "bf:ShelfMark" }, { - "value": "33433084240294", + "value": "33433080426707", "type": "bf:Barcode" } ], @@ -10230,9 +10228,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 76 (Nov. 6, 2000-Feb. 5, 2001)" + "*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Nov. 6, 2000-Feb. 5, 2001)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", "status": [ { "id": "status:a", @@ -10245,7 +10243,7 @@ "type": [ "bf:Item" ], - "uri": "i17474894", + "uri": "i17474434", "volumeRange": [ { "gte": 76, @@ -10262,7 +10260,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 104 + "offset": 107 }, "_score": null, "_source": { @@ -10286,15 +10284,15 @@ ], "dateRange": [ { - "gte": "2000", - "lte": "2000" + "gte": "1999", + "lte": "1999" } ], "enumerationChronology": [ - "v. 76 (July-Aug. 2000)" + "v. 75(Feb.22-May 3, 1999)" ], "enumerationChronology_sort": [ - " 76-2000" + " 75-1999" ], "formatLiteral": [ "Text" @@ -10309,19 +10307,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078639105" + "33433084240211" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 76 (July-Aug. 2000)", - "urn:barcode:33433078639105" + "urn:shelfmark:*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)", + "urn:barcode:33433084240211" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 76 (July-Aug. 2000)", + "value": "*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)", "type": "bf:ShelfMark" }, { - "value": "33433078639105", + "value": "33433084240211", "type": "bf:Barcode" } ], @@ -10341,9 +10339,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 76 (July-Aug. 2000)" + "*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (July-Aug. 2000)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075(Feb.22-May 3, 1999)", "status": [ { "id": "status:a", @@ -10356,16 +10354,16 @@ "type": [ "bf:Item" ], - "uri": "i17474402", + "uri": "i17474887", "volumeRange": [ { - "gte": 76, - "lte": 76 + "gte": 75, + "lte": 75 } ] }, "sort": [ - " 76-2000" + " 75-1999" ] }, { @@ -10373,7 +10371,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 105 + "offset": 108 }, "_score": null, "_source": { @@ -10397,15 +10395,15 @@ ], "dateRange": [ { - "gte": "2000", - "lte": "2000" + "gte": "1999", + "lte": "1999" } ], "enumerationChronology": [ - "v. 76 (Feb. 21 - Apr. 17, 2000)" + "v. 75 (Sept.-Oct. 1999)" ], "enumerationChronology_sort": [ - " 76-2000" + " 75-1999" ], "formatLiteral": [ "Text" @@ -10420,19 +10418,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240278" + "33433084240245" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)", - "urn:barcode:33433084240278" + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)", + "urn:barcode:33433084240245" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)", + "value": "*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)", "type": "bf:ShelfMark" }, { - "value": "33433084240278", + "value": "33433084240245", "type": "bf:Barcode" } ], @@ -10452,9 +10450,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 76 (Feb. 21 - Apr. 17, 2000)" + "*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Feb. 21 - Apr. 17, 2000)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Sept.-Oct. 1999)", "status": [ { "id": "status:a", @@ -10467,16 +10465,16 @@ "type": [ "bf:Item" ], - "uri": "i40028166", + "uri": "i17474890", "volumeRange": [ { - "gte": 76, - "lte": 76 + "gte": 75, + "lte": 75 } ] }, "sort": [ - " 76-2000" + " 75-1999" ] }, { @@ -10484,7 +10482,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 106 + "offset": 109 }, "_score": null, "_source": { @@ -10508,15 +10506,15 @@ ], "dateRange": [ { - "gte": "2000", - "lte": "2000" + "gte": "1999", + "lte": "1999" } ], "enumerationChronology": [ - "v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" + "v. 75 (Nov. 1999)" ], "enumerationChronology_sort": [ - " 76-2000" + " 75-1999" ], "formatLiteral": [ "Text" @@ -10531,19 +10529,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433080426707" + "33433084240252" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", - "urn:barcode:33433080426707" + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Nov. 1999)", + "urn:barcode:33433084240252" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", + "value": "*DA+ (New Yorker) v. 75 (Nov. 1999)", "type": "bf:ShelfMark" }, { - "value": "33433080426707", + "value": "33433084240252", "type": "bf:Barcode" } ], @@ -10563,9 +10561,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 76 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*" + "*DA+ (New Yorker) v. 75 (Nov. 1999)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000076 (Apr 24-June 26 2000)-May 8, 2000 Issue*missing*", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Nov. 1999)", "status": [ { "id": "status:a", @@ -10578,16 +10576,16 @@ "type": [ "bf:Item" ], - "uri": "i17474434", + "uri": "i17474891", "volumeRange": [ { - "gte": 76, - "lte": 76 + "gte": 75, + "lte": 75 } ] }, "sort": [ - " 76-2000" + " 75-1999" ] }, { @@ -10595,7 +10593,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 107 + "offset": 110 }, "_score": null, "_source": { @@ -10624,7 +10622,7 @@ } ], "enumerationChronology": [ - "v. 75(Feb.22-May 3, 1999)" + "v. 75 (May 10-June 28, 1999)" ], "enumerationChronology_sort": [ " 75-1999" @@ -10642,19 +10640,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240211" + "33433084240229" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)", - "urn:barcode:33433084240211" + "urn:shelfmark:*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)", + "urn:barcode:33433084240229" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)", + "value": "*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)", "type": "bf:ShelfMark" }, { - "value": "33433084240211", + "value": "33433084240229", "type": "bf:Barcode" } ], @@ -10674,9 +10672,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 75(Feb.22-May 3, 1999)" + "*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075(Feb.22-May 3, 1999)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (May 10-June 28, 1999)", "status": [ { "id": "status:a", @@ -10689,7 +10687,7 @@ "type": [ "bf:Item" ], - "uri": "i17474887", + "uri": "i17474888", "volumeRange": [ { "gte": 75, @@ -10706,7 +10704,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 108 + "offset": 111 }, "_score": null, "_source": { @@ -10735,7 +10733,7 @@ } ], "enumerationChronology": [ - "v. 75 (Sept.-Oct. 1999)" + "v. 75 (July-Aug. 1999)" ], "enumerationChronology_sort": [ " 75-1999" @@ -10753,19 +10751,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240245" + "33433084240237" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)", - "urn:barcode:33433084240245" + "urn:shelfmark:*DA+ (New Yorker) v. 75 (July-Aug. 1999)", + "urn:barcode:33433084240237" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)", + "value": "*DA+ (New Yorker) v. 75 (July-Aug. 1999)", "type": "bf:ShelfMark" }, { - "value": "33433084240245", + "value": "33433084240237", "type": "bf:Barcode" } ], @@ -10785,9 +10783,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 75 (Sept.-Oct. 1999)" + "*DA+ (New Yorker) v. 75 (July-Aug. 1999)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Sept.-Oct. 1999)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (July-Aug. 1999)", "status": [ { "id": "status:a", @@ -10800,7 +10798,7 @@ "type": [ "bf:Item" ], - "uri": "i17474890", + "uri": "i17474889", "volumeRange": [ { "gte": 75, @@ -10817,7 +10815,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 109 + "offset": 112 }, "_score": null, "_source": { @@ -10842,11 +10840,11 @@ "dateRange": [ { "gte": "1999", - "lte": "1999" + "lte": "2000" } ], "enumerationChronology": [ - "v. 75 (Nov. 1999)" + "v. 75 (Dec. 6, 1999-Feb. 14, 2000)" ], "enumerationChronology_sort": [ " 75-1999" @@ -10864,19 +10862,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240252" + "33433084240260" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 75 (Nov. 1999)", - "urn:barcode:33433084240252" + "urn:shelfmark:*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)", + "urn:barcode:33433084240260" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 75 (Nov. 1999)", + "value": "*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)", "type": "bf:ShelfMark" }, { - "value": "33433084240252", + "value": "33433084240260", "type": "bf:Barcode" } ], @@ -10896,9 +10894,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 75 (Nov. 1999)" + "*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Nov. 1999)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Dec. 6, 1999-Feb. 14, 2000)", "status": [ { "id": "status:a", @@ -10911,7 +10909,7 @@ "type": [ "bf:Item" ], - "uri": "i17474891", + "uri": "i17474892", "volumeRange": [ { "gte": 75, @@ -10928,7 +10926,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 110 + "offset": 113 }, "_score": null, "_source": { @@ -10952,15 +10950,15 @@ ], "dateRange": [ { - "gte": "1999", - "lte": "1999" + "gte": "1998", + "lte": "1998" } ], "enumerationChronology": [ - "v. 75 (May 10-June 28, 1999)" + "v. 74 (Sept. 7-Nov. 2, 1998)" ], "enumerationChronology_sort": [ - " 75-1999" + " 74-1998" ], "formatLiteral": [ "Text" @@ -10975,19 +10973,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240229" + "33433084240203" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)", - "urn:barcode:33433084240229" + "urn:shelfmark:*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)", + "urn:barcode:33433084240203" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)", + "value": "*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)", "type": "bf:ShelfMark" }, { - "value": "33433084240229", + "value": "33433084240203", "type": "bf:Barcode" } ], @@ -11007,9 +11005,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 75 (May 10-June 28, 1999)" + "*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (May 10-June 28, 1999)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (Sept. 7-Nov. 2, 1998)", "status": [ { "id": "status:a", @@ -11022,16 +11020,16 @@ "type": [ "bf:Item" ], - "uri": "i17474888", + "uri": "i17474886", "volumeRange": [ { - "gte": 75, - "lte": 75 + "gte": 74, + "lte": 74 } ] }, "sort": [ - " 75-1999" + " 74-1998" ] }, { @@ -11039,7 +11037,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 111 + "offset": 114 }, "_score": null, "_source": { @@ -11063,15 +11061,15 @@ ], "dateRange": [ { - "gte": "1999", + "gte": "1998", "lte": "1999" } ], "enumerationChronology": [ - "v. 75 (July-Aug. 1999)" + "v. 74 (Nov. 9, 1998-Feb. 15, 1999)" ], "enumerationChronology_sort": [ - " 75-1999" + " 74-1998" ], "formatLiteral": [ "Text" @@ -11086,19 +11084,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240237" + "33433078660671" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 75 (July-Aug. 1999)", - "urn:barcode:33433084240237" + "urn:shelfmark:*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)", + "urn:barcode:33433078660671" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 75 (July-Aug. 1999)", + "value": "*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)", "type": "bf:ShelfMark" }, { - "value": "33433084240237", + "value": "33433078660671", "type": "bf:Barcode" } ], @@ -11118,9 +11116,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 75 (July-Aug. 1999)" + "*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (July-Aug. 1999)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (Nov. 9, 1998-Feb. 15, 1999)", "status": [ { "id": "status:a", @@ -11133,16 +11131,16 @@ "type": [ "bf:Item" ], - "uri": "i17474889", + "uri": "i17474403", "volumeRange": [ { - "gte": 75, - "lte": 75 + "gte": 74, + "lte": 74 } ] }, "sort": [ - " 75-1999" + " 74-1998" ] }, { @@ -11150,7 +11148,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 112 + "offset": 115 }, "_score": null, "_source": { @@ -11174,15 +11172,15 @@ ], "dateRange": [ { - "gte": "1999", - "lte": "2000" + "gte": "1998", + "lte": "1998" } ], "enumerationChronology": [ - "v. 75 (Dec. 6, 1999-Feb. 14, 2000)" + "v. 74 (June- Aug. 1998)" ], "enumerationChronology_sort": [ - " 75-1999" + " 74-1998" ], "formatLiteral": [ "Text" @@ -11197,19 +11195,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240260" + "33433084240195" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)", - "urn:barcode:33433084240260" + "urn:shelfmark:*DA+ (New Yorker) v. 74 (June- Aug. 1998)", + "urn:barcode:33433084240195" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)", + "value": "*DA+ (New Yorker) v. 74 (June- Aug. 1998)", "type": "bf:ShelfMark" }, { - "value": "33433084240260", + "value": "33433084240195", "type": "bf:Barcode" } ], @@ -11229,9 +11227,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 75 (Dec. 6, 1999-Feb. 14, 2000)" + "*DA+ (New Yorker) v. 74 (June- Aug. 1998)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000075 (Dec. 6, 1999-Feb. 14, 2000)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (June- Aug. 1998)", "status": [ { "id": "status:a", @@ -11244,16 +11242,16 @@ "type": [ "bf:Item" ], - "uri": "i17474892", + "uri": "i17474885", "volumeRange": [ { - "gte": 75, - "lte": 75 + "gte": 74, + "lte": 74 } ] }, "sort": [ - " 75-1999" + " 74-1998" ] }, { @@ -11261,7 +11259,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 113 + "offset": 116 }, "_score": null, "_source": { @@ -11283,17 +11281,11 @@ "catalogItemType_packed": [ "catalogItemType:3||serial" ], - "dateRange": [ - { - "gte": "1998", - "lte": "1998" - } - ], "enumerationChronology": [ - "v. 74 (Sept. 7-Nov. 2, 1998)" + "v. 74" ], "enumerationChronology_sort": [ - " 74-1998" + " 74-" ], "formatLiteral": [ "Text" @@ -11308,19 +11300,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240203" + "33433080030616" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)", - "urn:barcode:33433084240203" + "urn:shelfmark:*DA+ (New Yorker) v. 74", + "urn:barcode:33433080030616" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)", + "value": "*DA+ (New Yorker) v. 74", "type": "bf:ShelfMark" }, { - "value": "33433084240203", + "value": "33433080030616", "type": "bf:Barcode" } ], @@ -11340,9 +11332,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 74 (Sept. 7-Nov. 2, 1998)" + "*DA+ (New Yorker) v. 74" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (Sept. 7-Nov. 2, 1998)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000074", "status": [ { "id": "status:a", @@ -11355,7 +11347,7 @@ "type": [ "bf:Item" ], - "uri": "i17474886", + "uri": "i17474453", "volumeRange": [ { "gte": 74, @@ -11364,7 +11356,7 @@ ] }, "sort": [ - " 74-1998" + " 74-" ] }, { @@ -11372,7 +11364,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 114 + "offset": 117 }, "_score": null, "_source": { @@ -11396,15 +11388,15 @@ ], "dateRange": [ { - "gte": "1998", - "lte": "1999" + "gte": "1997", + "lte": "1998" } ], "enumerationChronology": [ - "v. 74 (Nov. 9, 1998-Feb. 15, 1999)" + "v. 73 (Nov. 3, 1997-Feb. 9, 1998)" ], "enumerationChronology_sort": [ - " 74-1998" + " 73-1997" ], "formatLiteral": [ "Text" @@ -11419,19 +11411,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078660671" + "33433078530031" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)", - "urn:barcode:33433078660671" + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)", + "urn:barcode:33433078530031" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)", + "value": "*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)", "type": "bf:ShelfMark" }, { - "value": "33433078660671", + "value": "33433078530031", "type": "bf:Barcode" } ], @@ -11451,9 +11443,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 74 (Nov. 9, 1998-Feb. 15, 1999)" + "*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (Nov. 9, 1998-Feb. 15, 1999)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Nov. 3, 1997-Feb. 9, 1998)", "status": [ { "id": "status:a", @@ -11466,16 +11458,16 @@ "type": [ "bf:Item" ], - "uri": "i17474403", + "uri": "i17142393", "volumeRange": [ { - "gte": 74, - "lte": 74 + "gte": 73, + "lte": 73 } ] }, "sort": [ - " 74-1998" + " 73-1997" ] }, { @@ -11483,7 +11475,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 115 + "offset": 118 }, "_score": null, "_source": { @@ -11507,15 +11499,15 @@ ], "dateRange": [ { - "gte": "1998", - "lte": "1998" + "gte": "1997", + "lte": "1997" } ], "enumerationChronology": [ - "v. 74 (June- Aug. 1998)" + "v. 73 (May 12-July 28, 1997)" ], "enumerationChronology_sort": [ - " 74-1998" + " 73-1997" ], "formatLiteral": [ "Text" @@ -11530,19 +11522,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240195" + "33433081121117" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 74 (June- Aug. 1998)", - "urn:barcode:33433084240195" + "urn:shelfmark:*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)", + "urn:barcode:33433081121117" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 74 (June- Aug. 1998)", + "value": "*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)", "type": "bf:ShelfMark" }, { - "value": "33433084240195", + "value": "33433081121117", "type": "bf:Barcode" } ], @@ -11562,9 +11554,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 74 (June- Aug. 1998)" + "*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000074 (June- Aug. 1998)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (May 12-July 28, 1997)", "status": [ { "id": "status:a", @@ -11577,16 +11569,16 @@ "type": [ "bf:Item" ], - "uri": "i17474885", + "uri": "i16700889", "volumeRange": [ { - "gte": 74, - "lte": 74 + "gte": 73, + "lte": 73 } ] }, "sort": [ - " 74-1998" + " 73-1997" ] }, { @@ -11594,7 +11586,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 116 + "offset": 119 }, "_score": null, "_source": { @@ -11616,11 +11608,17 @@ "catalogItemType_packed": [ "catalogItemType:3||serial" ], + "dateRange": [ + { + "gte": "1997", + "lte": "1997" + } + ], "enumerationChronology": [ - "v. 74" + "v. 73 (Feb 17-May 5 1997)" ], "enumerationChronology_sort": [ - " 74-" + " 73-1997" ], "formatLiteral": [ "Text" @@ -11635,19 +11633,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433080030616" + "33433078658105" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 74", - "urn:barcode:33433080030616" + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)", + "urn:barcode:33433078658105" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 74", + "value": "*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)", "type": "bf:ShelfMark" }, { - "value": "33433080030616", + "value": "33433078658105", "type": "bf:Barcode" } ], @@ -11667,9 +11665,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 74" + "*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000074", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Feb 17-May 5 1997)", "status": [ { "id": "status:a", @@ -11682,16 +11680,16 @@ "type": [ "bf:Item" ], - "uri": "i17474453", + "uri": "i17474429", "volumeRange": [ { - "gte": 74, - "lte": 74 + "gte": 73, + "lte": 73 } ] }, "sort": [ - " 74-" + " 73-1997" ] }, { @@ -11699,7 +11697,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 117 + "offset": 120 }, "_score": null, "_source": { @@ -11724,11 +11722,11 @@ "dateRange": [ { "gte": "1997", - "lte": "1998" + "lte": "1997" } ], "enumerationChronology": [ - "v. 73 (Nov. 3, 1997-Feb. 9, 1998)" + "v. 73 (Aug-Oct 1997)" ], "enumerationChronology_sort": [ " 73-1997" @@ -11746,19 +11744,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078530031" + "33433078658113" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)", - "urn:barcode:33433078530031" + "urn:shelfmark:*DA+ (New Yorker) v. 73 (Aug-Oct 1997)", + "urn:barcode:33433078658113" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)", + "value": "*DA+ (New Yorker) v. 73 (Aug-Oct 1997)", "type": "bf:ShelfMark" }, { - "value": "33433078530031", + "value": "33433078658113", "type": "bf:Barcode" } ], @@ -11778,9 +11776,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 73 (Nov. 3, 1997-Feb. 9, 1998)" + "*DA+ (New Yorker) v. 73 (Aug-Oct 1997)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Nov. 3, 1997-Feb. 9, 1998)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Aug-Oct 1997)", "status": [ { "id": "status:a", @@ -11793,7 +11791,7 @@ "type": [ "bf:Item" ], - "uri": "i17142393", + "uri": "i17474430", "volumeRange": [ { "gte": 73, @@ -11810,7 +11808,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 118 + "offset": 121 }, "_score": null, "_source": { @@ -11834,15 +11832,15 @@ ], "dateRange": [ { - "gte": "1997", - "lte": "1997" + "gte": "1996", + "lte": "1996" } ], "enumerationChronology": [ - "v. 73 (May 12-July 28, 1997)" + "v. 72 (Oct 7-Nov 25 1996)" ], "enumerationChronology_sort": [ - " 73-1997" + " 72-1996" ], "formatLiteral": [ "Text" @@ -11857,19 +11855,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433081121117" + "33433078658089" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)", - "urn:barcode:33433081121117" + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)", + "urn:barcode:33433078658089" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)", + "value": "*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)", "type": "bf:ShelfMark" }, { - "value": "33433081121117", + "value": "33433078658089", "type": "bf:Barcode" } ], @@ -11889,9 +11887,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 73 (May 12-July 28, 1997)" + "*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (May 12-July 28, 1997)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Oct 7-Nov 25 1996)", "status": [ { "id": "status:a", @@ -11904,16 +11902,16 @@ "type": [ "bf:Item" ], - "uri": "i16700889", + "uri": "i17474427", "volumeRange": [ { - "gte": 73, - "lte": 73 + "gte": 72, + "lte": 72 } ] }, "sort": [ - " 73-1997" + " 72-1996" ] }, { @@ -11921,7 +11919,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 119 + "offset": 122 }, "_score": null, "_source": { @@ -11945,15 +11943,15 @@ ], "dateRange": [ { - "gte": "1997", - "lte": "1997" + "gte": "1996", + "lte": "1996" } ], "enumerationChronology": [ - "v. 73 (Feb 17-May 5 1997)" + "v. 72 (July 8-Sept 30 1996 (inc))" ], "enumerationChronology_sort": [ - " 73-1997" + " 72-1996" ], "formatLiteral": [ "Text" @@ -11968,19 +11966,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078658105" + "33433078658071" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)", - "urn:barcode:33433078658105" + "urn:shelfmark:*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))", + "urn:barcode:33433078658071" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)", + "value": "*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))", "type": "bf:ShelfMark" }, { - "value": "33433078658105", + "value": "33433078658071", "type": "bf:Barcode" } ], @@ -12000,9 +11998,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 73 (Feb 17-May 5 1997)" + "*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Feb 17-May 5 1997)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (July 8-Sept 30 1996 (inc))", "status": [ { "id": "status:a", @@ -12015,16 +12013,16 @@ "type": [ "bf:Item" ], - "uri": "i17474429", + "uri": "i17474426", "volumeRange": [ { - "gte": 73, - "lte": 73 + "gte": 72, + "lte": 72 } ] }, "sort": [ - " 73-1997" + " 72-1996" ] }, { @@ -12032,7 +12030,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 120 + "offset": 123 }, "_score": null, "_source": { @@ -12056,15 +12054,15 @@ ], "dateRange": [ { - "gte": "1997", - "lte": "1997" + "gte": "1996", + "lte": "1996" } ], "enumerationChronology": [ - "v. 73 (Aug-Oct 1997)" + "v. 72 (Feb 19-Apr 22 1996)" ], "enumerationChronology_sort": [ - " 73-1997" + " 72-1996" ], "formatLiteral": [ "Text" @@ -12079,19 +12077,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078658113" + "33433078626128" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 73 (Aug-Oct 1997)", - "urn:barcode:33433078658113" + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)", + "urn:barcode:33433078626128" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 73 (Aug-Oct 1997)", + "value": "*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)", "type": "bf:ShelfMark" }, { - "value": "33433078658113", + "value": "33433078626128", "type": "bf:Barcode" } ], @@ -12111,9 +12109,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 73 (Aug-Oct 1997)" + "*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000073 (Aug-Oct 1997)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Feb 19-Apr 22 1996)", "status": [ { "id": "status:a", @@ -12126,16 +12124,16 @@ "type": [ "bf:Item" ], - "uri": "i17474430", + "uri": "i17474400", "volumeRange": [ { - "gte": 73, - "lte": 73 + "gte": 72, + "lte": 72 } ] }, "sort": [ - " 73-1997" + " 72-1996" ] }, { @@ -12143,7 +12141,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 121 + "offset": 124 }, "_score": null, "_source": { @@ -12168,11 +12166,11 @@ "dateRange": [ { "gte": "1996", - "lte": "1996" + "lte": "1997" } ], "enumerationChronology": [ - "v. 72 (Oct 7-Nov 25 1996)" + "v. 72 (Dec 2 1996-Feb 10 1997)" ], "enumerationChronology_sort": [ " 72-1996" @@ -12190,19 +12188,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078658089" + "33433078658097" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)", - "urn:barcode:33433078658089" + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)", + "urn:barcode:33433078658097" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)", + "value": "*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)", "type": "bf:ShelfMark" }, { - "value": "33433078658089", + "value": "33433078658097", "type": "bf:Barcode" } ], @@ -12222,9 +12220,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 72 (Oct 7-Nov 25 1996)" + "*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Oct 7-Nov 25 1996)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Dec 2 1996-Feb 10 1997)", "status": [ { "id": "status:a", @@ -12237,7 +12235,7 @@ "type": [ "bf:Item" ], - "uri": "i17474427", + "uri": "i17474428", "volumeRange": [ { "gte": 72, @@ -12254,7 +12252,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 122 + "offset": 125 }, "_score": null, "_source": { @@ -12283,7 +12281,7 @@ } ], "enumerationChronology": [ - "v. 72 (July 8-Sept 30 1996 (inc))" + "v. 72 (Apr 29-July 1 1996)" ], "enumerationChronology_sort": [ " 72-1996" @@ -12301,19 +12299,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078658071" + "33433078658063" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))", - "urn:barcode:33433078658071" + "urn:shelfmark:*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)", + "urn:barcode:33433078658063" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))", + "value": "*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)", "type": "bf:ShelfMark" }, { - "value": "33433078658071", + "value": "33433078658063", "type": "bf:Barcode" } ], @@ -12333,9 +12331,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 72 (July 8-Sept 30 1996 (inc))" + "*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (July 8-Sept 30 1996 (inc))", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Apr 29-July 1 1996)", "status": [ { "id": "status:a", @@ -12348,7 +12346,7 @@ "type": [ "bf:Item" ], - "uri": "i17474426", + "uri": "i17474425", "volumeRange": [ { "gte": 72, @@ -12365,7 +12363,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 123 + "offset": 126 }, "_score": null, "_source": { @@ -12389,15 +12387,15 @@ ], "dateRange": [ { - "gte": "1996", - "lte": "1996" + "gte": "1995", + "lte": "1995" } ], "enumerationChronology": [ - "v. 72 (Feb 19-Apr 22 1996)" + "v. 71 (Oct-Nov 1995)" ], "enumerationChronology_sort": [ - " 72-1996" + " 71-1995" ], "formatLiteral": [ "Text" @@ -12412,19 +12410,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078626128" + "33433078658048" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)", - "urn:barcode:33433078626128" + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Oct-Nov 1995)", + "urn:barcode:33433078658048" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)", + "value": "*DA+ (New Yorker) v. 71 (Oct-Nov 1995)", "type": "bf:ShelfMark" }, { - "value": "33433078626128", + "value": "33433078658048", "type": "bf:Barcode" } ], @@ -12441,34 +12439,34 @@ "*DA+ (New Yorker)" ], "requestable": [ - true + false ], "shelfMark": [ - "*DA+ (New Yorker) v. 72 (Feb 19-Apr 22 1996)" + "*DA+ (New Yorker) v. 71 (Oct-Nov 1995)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Feb 19-Apr 22 1996)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Oct-Nov 1995)", "status": [ { - "id": "status:a", - "label": "Available" + "id": "status:t", + "label": "In transit" } ], "status_packed": [ - "status:a||Available" + "status:t||In transit" ], "type": [ "bf:Item" ], - "uri": "i17474400", + "uri": "i17474423", "volumeRange": [ { - "gte": 72, - "lte": 72 + "gte": 71, + "lte": 71 } ] }, "sort": [ - " 72-1996" + " 71-1995" ] }, { @@ -12476,7 +12474,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 124 + "offset": 127 }, "_score": null, "_source": { @@ -12500,15 +12498,15 @@ ], "dateRange": [ { - "gte": "1996", - "lte": "1997" + "gte": "1995", + "lte": "1995" } ], "enumerationChronology": [ - "v. 72 (Dec 2 1996-Feb 10 1997)" + "v. 71 (June-July 1995)" ], "enumerationChronology_sort": [ - " 72-1996" + " 71-1995" ], "formatLiteral": [ "Text" @@ -12523,19 +12521,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078658097" + "33433078658022" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)", - "urn:barcode:33433078658097" + "urn:shelfmark:*DA+ (New Yorker) v. 71 (June-July 1995)", + "urn:barcode:33433078658022" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)", + "value": "*DA+ (New Yorker) v. 71 (June-July 1995)", "type": "bf:ShelfMark" }, { - "value": "33433078658097", + "value": "33433078658022", "type": "bf:Barcode" } ], @@ -12555,9 +12553,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 72 (Dec 2 1996-Feb 10 1997)" + "*DA+ (New Yorker) v. 71 (June-July 1995)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Dec 2 1996-Feb 10 1997)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (June-July 1995)", "status": [ { "id": "status:a", @@ -12570,16 +12568,16 @@ "type": [ "bf:Item" ], - "uri": "i17474428", + "uri": "i17474421", "volumeRange": [ { - "gte": 72, - "lte": 72 + "gte": 71, + "lte": 71 } ] }, "sort": [ - " 72-1996" + " 71-1995" ] }, { @@ -12587,7 +12585,7 @@ "_id": "b10833141", "_nested": { "field": "items", - "offset": 125 + "offset": 128 }, "_score": null, "_source": { @@ -12611,15 +12609,15 @@ ], "dateRange": [ { - "gte": "1996", - "lte": "1996" + "gte": "1995", + "lte": "1995" } ], "enumerationChronology": [ - "v. 72 (Apr 29-July 1 1996)" + "v. 71 (Feb. 20-Mar. 27, 1995)" ], "enumerationChronology_sort": [ - " 72-1996" + " 71-1995" ], "formatLiteral": [ "Text" @@ -12634,19 +12632,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078658063" + "33433084240179" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)", - "urn:barcode:33433078658063" + "urn:shelfmark:*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)", + "urn:barcode:33433084240179" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)", + "value": "*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)", "type": "bf:ShelfMark" }, { - "value": "33433078658063", + "value": "33433084240179", "type": "bf:Barcode" } ], @@ -12666,9 +12664,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 72 (Apr 29-July 1 1996)" + "*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000072 (Apr 29-July 1 1996)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Feb. 20-Mar. 27, 1995)", "status": [ { "id": "status:a", @@ -12681,35 +12679,46 @@ "type": [ "bf:Item" ], - "uri": "i17474425", + "uri": "i17474883", "volumeRange": [ { - "gte": 72, - "lte": 72 + "gte": 71, + "lte": 71 } ] }, "sort": [ - " 72-1996" + " 71-1995" ] - }, + } + ] + } + }, + "allItems": { + "hits": { + "total": { + "value": 848, + "relation": "eq" + }, + "max_score": 0, + "hits": [ { "_index": "resources-2024-10-22", "_id": "b10833141", "_nested": { "field": "items", - "offset": 126 + "offset": 0 }, - "_score": null, + "_score": 0, "_source": { "accessMessage": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "accessMessage:2", + "label": "Request in advance" } ], "accessMessage_packed": [ - "accessMessage:1||Use in library" + "accessMessage:2||Request in advance" ], "catalogItemType": [ { @@ -12722,15 +12731,15 @@ ], "dateRange": [ { - "gte": "1995", - "lte": "1995" + "gte": "2021", + "lte": "2021" } ], "enumerationChronology": [ - "v. 71 (Oct-Nov 1995)" + "v. 97 (May 10-July 26, 2021)" ], "enumerationChronology_sort": [ - " 71-1995" + " 97-2021" ], "formatLiteral": [ "Text" @@ -12745,19 +12754,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078658048" + "33433136780354" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 71 (Oct-Nov 1995)", - "urn:barcode:33433078658048" + "urn:shelfmark:*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", + "urn:barcode:33433136780354" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 71 (Oct-Nov 1995)", + "value": "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", "type": "bf:ShelfMark" }, { - "value": "33433078658048", + "value": "33433136780354", "type": "bf:Barcode" } ], @@ -12774,53 +12783,50 @@ "*DA+ (New Yorker)" ], "requestable": [ - false + true ], "shelfMark": [ - "*DA+ (New Yorker) v. 71 (Oct-Nov 1995)" + "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Oct-Nov 1995)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (May 10-July 26, 2021)", "status": [ { - "id": "status:t", - "label": "In transit" + "id": "status:a", + "label": "Available" } ], "status_packed": [ - "status:t||In transit" + "status:a||Available" ], "type": [ "bf:Item" ], - "uri": "i17474423", + "uri": "i40904678", "volumeRange": [ { - "gte": 71, - "lte": 71 + "gte": 97, + "lte": 97 } ] - }, - "sort": [ - " 71-1995" - ] + } }, { "_index": "resources-2024-10-22", "_id": "b10833141", "_nested": { "field": "items", - "offset": 127 + "offset": 1 }, - "_score": null, + "_score": 0, "_source": { "accessMessage": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "accessMessage:2", + "label": "Request in advance" } ], "accessMessage_packed": [ - "accessMessage:1||Use in library" + "accessMessage:2||Request in advance" ], "catalogItemType": [ { @@ -12833,15 +12839,15 @@ ], "dateRange": [ { - "gte": "1995", - "lte": "1995" + "gte": "2021", + "lte": "2021" } ], "enumerationChronology": [ - "v. 71 (June-July 1995)" + "v. 97 (Feb 15-May 3, 2021)" ], "enumerationChronology_sort": [ - " 71-1995" + " 97-2021" ], "formatLiteral": [ "Text" @@ -12856,19 +12862,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433078658022" + "33433136780347" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 71 (June-July 1995)", - "urn:barcode:33433078658022" + "urn:shelfmark:*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", + "urn:barcode:33433136780347" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 71 (June-July 1995)", + "value": "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", "type": "bf:ShelfMark" }, { - "value": "33433078658022", + "value": "33433136780347", "type": "bf:Barcode" } ], @@ -12888,9 +12894,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 71 (June-July 1995)" + "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (June-July 1995)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Feb 15-May 3, 2021)", "status": [ { "id": "status:a", @@ -12903,35 +12909,32 @@ "type": [ "bf:Item" ], - "uri": "i17474421", + "uri": "i40904674", "volumeRange": [ { - "gte": 71, - "lte": 71 + "gte": 97, + "lte": 97 } ] - }, - "sort": [ - " 71-1995" - ] + } }, { "_index": "resources-2024-10-22", "_id": "b10833141", "_nested": { "field": "items", - "offset": 128 + "offset": 2 }, - "_score": null, + "_score": 0, "_source": { "accessMessage": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "accessMessage:2", + "label": "Request in advance" } ], "accessMessage_packed": [ - "accessMessage:1||Use in library" + "accessMessage:2||Request in advance" ], "catalogItemType": [ { @@ -12944,15 +12947,15 @@ ], "dateRange": [ { - "gte": "1995", - "lte": "1995" + "gte": "2021", + "lte": "2021" } ], "enumerationChronology": [ - "v. 71 (Feb. 20-Mar. 27, 1995)" + "v. 97 (Aug. 2-Oct 25, 2021)" ], "enumerationChronology_sort": [ - " 71-1995" + " 97-2021" ], "formatLiteral": [ "Text" @@ -12967,19 +12970,19 @@ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433084240179" + "33433136780362" ], "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)", - "urn:barcode:33433084240179" + "urn:shelfmark:*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", + "urn:barcode:33433136780362" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)", + "value": "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", "type": "bf:ShelfMark" }, { - "value": "33433084240179", + "value": "33433136780362", "type": "bf:Barcode" } ], @@ -12999,9 +13002,9 @@ true ], "shelfMark": [ - "*DA+ (New Yorker) v. 71 (Feb. 20-Mar. 27, 1995)" + "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000071 (Feb. 20-Mar. 27, 1995)", + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Aug. 2-Oct 25, 2021)", "status": [ { "id": "status:a", @@ -13014,17 +13017,14 @@ "type": [ "bf:Item" ], - "uri": "i17474883", + "uri": "i40904679", "volumeRange": [ { - "gte": 71, - "lte": 71 + "gte": 97, + "lte": 97 } ] - }, - "sort": [ - " 71-1995" - ] + } } ] } @@ -13096,18 +13096,22 @@ }, { "key": "status:co||Loaned", - "doc_count": 11 + "doc_count": 12 }, { "key": "status:na||Not available", - "doc_count": 10 + "doc_count": 7 + }, + { + "key": "status:t||In transit", + "doc_count": 2 }, { "key": "status:m||Missing", "doc_count": 1 }, { - "key": "status:t||In transit", + "key": "status:oh||On Holdshelf", "doc_count": 1 } ] diff --git a/test/fixtures/query-9b49275a1afdf6925422e7e13e1cd802.json b/test/fixtures/query-9b49275a1afdf6925422e7e13e1cd802.json index 1dfc4fbe..c9013502 100644 --- a/test/fixtures/query-9b49275a1afdf6925422e7e13e1cd802.json +++ b/test/fixtures/query-9b49275a1afdf6925422e7e13e1cd802.json @@ -1,5 +1,5 @@ { - "took": 64, + "took": 71, "timed_out": false, "_shards": { "total": 2, @@ -46,6 +46,10 @@ "createdYear": [ 201 ], + "buildingLocationIds": [ + "ma", + "rc" + ], "parallelTitle": [ "‏כותר שאינו באותיות לטינית = зглавие руссий." ], @@ -760,97 +764,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v.1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:k||Check with staff" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "uri": "i37857771", + "identifierV2": [ { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + }, + { + "type": "bf:Barcode", + "value": "3333333333" } ], "holdingLocation_packed": [ "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" ], + "enumerationChronology": [ + "v.1" + ], "idBarcode": [ "3333333333" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ false ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "status": [ { "id": "status:k", "label": "Check with staff" } ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i37857771" + ] }, "sort": [ " 1-" @@ -865,88 +869,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1103", + "label": "Dorot Jewish Division" } ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" ], - "enumerationChronology": [ - "nothing" + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "catalogItemType_packed": [ + "catalogItemType:3||serial" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmf2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "44455533322211" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" ], + "uri": "i37857772", "identifierV2": [ { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" }, { - "value": "44455533322211", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "44455533322211" } ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "enumerationChronology": [ + "nothing" + ], + "idBarcode": [ + "44455533322211" ], "owner_packed": [ "orgs:1103||Dorot Jewish Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ true ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" + ] }, "sort": [ null diff --git a/test/fixtures/query-9dfe3112eaf13c42a15f09f01c31b5da.json b/test/fixtures/query-9dfe3112eaf13c42a15f09f01c31b5da.json index c094672a..ff03f2e1 100644 --- a/test/fixtures/query-9dfe3112eaf13c42a15f09f01c31b5da.json +++ b/test/fixtures/query-9dfe3112eaf13c42a15f09f01c31b5da.json @@ -1,5 +1,5 @@ { - "took": 31, + "took": 29, "timed_out": false, "_shards": { "total": 2, @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.120333, + "max_score": 14.890072, "hits": [ { "_index": "resources-2024-10-22", "_id": "b10833141", - "_score": 15.120333, + "_score": 14.890072, "_source": { "extent": [ "volumes : illustrations ;" @@ -91,7 +91,7 @@ "value": "(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" } ], - "updatedAt": 1729702613931, + "updatedAt": 1731688335474, "publicationStatement": [ "New York : F-R Pub. Corp., 1925-", "[New York] : D. Carey", @@ -1799,7 +1799,7 @@ "33433121911246" ], "requestable": [ - true + false ], "catalogItemType": [ { @@ -1821,8 +1821,8 @@ ], "status": [ { - "id": "status:a", - "label": "Available" + "id": "status:oh", + "label": "On Holdshelf" } ], "volumeRange": [ @@ -16205,7 +16205,7 @@ "33433084239759" ], "requestable": [ - true + false ], "catalogItemType": [ { @@ -16227,8 +16227,8 @@ ], "status": [ { - "id": "status:a", - "label": "Available" + "id": "status:t", + "label": "In transit" } ], "volumeRange": [ @@ -18233,6 +18233,9 @@ "lte": "1983" } ], + "dueDate": [ + "2024-11-03" + ], "accessMessage": [ { "id": "accessMessage:1", @@ -18266,7 +18269,7 @@ "33433084239619" ], "requestable": [ - true + false ], "catalogItemType": [ { @@ -18285,8 +18288,8 @@ ], "status": [ { - "id": "status:a", - "label": "Available" + "id": "status:co", + "label": "Loaned" } ], "volumeRange": [ @@ -65806,8 +65809,8 @@ ], "status": [ { - "id": "status:na", - "label": "Not available" + "id": "status:a", + "label": "Available" } ], "volumeRange": [ @@ -65864,8 +65867,8 @@ ], "status": [ { - "id": "status:na", - "label": "Not available" + "id": "status:a", + "label": "Available" } ], "volumeRange": [ @@ -65922,8 +65925,8 @@ ], "status": [ { - "id": "status:na", - "label": "Not available" + "id": "status:a", + "label": "Available" } ], "volumeRange": [ @@ -67750,7 +67753,7 @@ "idOclc": [ "1760231" ], - "popularity": 1039, + "popularity": 1042, "uniformTitle": [ "New Yorker (New York, N.Y. : 1925)" ], @@ -68991,7 +68994,7 @@ "shelfMark": [ "*DA+ (New Yorker)" ], - "status": "Expected" + "status": "Arrived" }, { "coverage": "Vol. 100 No. 37 (Nov. 11, 2024)", @@ -69000,7 +69003,7 @@ "shelfMark": [ "*DA+ (New Yorker)" ], - "status": "Expected" + "status": "Arrived" }, { "coverage": "Vol. 100 No. 38 (Nov. 18, 2024)", @@ -69009,7 +69012,7 @@ "shelfMark": [ "*DA+ (New Yorker)" ], - "status": "Expected" + "status": "Arrived" }, { "coverage": "Vol. 100 No. 39 (Nov. 25, 2024)", @@ -69068,7 +69071,7 @@ ], "holdingStatement": [ "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--", - "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26)" + "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26); v. 100, no. 38 (2024-11-18)" ], "identifier": [ { @@ -69207,18 +69210,22 @@ }, { "key": "status:co||Loaned", - "doc_count": 11 + "doc_count": 12 }, { "key": "status:na||Not available", - "doc_count": 10 + "doc_count": 7 + }, + { + "key": "status:t||In transit", + "doc_count": 2 }, { "key": "status:m||Missing", "doc_count": 1 }, { - "key": "status:t||In transit", + "key": "status:oh||On Holdshelf", "doc_count": 1 } ] diff --git a/test/fixtures/query-a6252f0d138cb5887b0e041eb458e31e.json b/test/fixtures/query-a6252f0d138cb5887b0e041eb458e31e.json index 5e9c05a7..8b5a6dff 100644 --- a/test/fixtures/query-a6252f0d138cb5887b0e041eb458e31e.json +++ b/test/fixtures/query-a6252f0d138cb5887b0e041eb458e31e.json @@ -1,5 +1,5 @@ { - "took": 1660, + "took": 803, "timed_out": false, "_shards": { "total": 2, @@ -332,6 +332,9 @@ "createdYear": [ 1989 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Scottish islands" ], @@ -476,79 +479,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:JFF 89-526", + "urn:barcode:33433050409147" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "JFF 89-526" + ], + "shelfMark_sort": "aJFF 89-000526", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433050409147" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFF 89-526", - "urn:barcode:33433050409147" + "shelfMark": [ + "JFF 89-526" ], + "uri": "i13783780", "identifierV2": [ { - "value": "JFF 89-526", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFF 89-526" }, { - "value": "33433050409147", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433050409147" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "JFF 89-526" + "idBarcode": [ + "33433050409147" ], "requestable": [ true ], - "shelfMark": [ - "JFF 89-526" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "aJFF 89-000526", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783780" + ] }, "sort": [ null @@ -608,6 +611,9 @@ "createdYear": [ 1965 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Mutaṟkuṟaḷ uvamai." ], @@ -748,88 +754,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1934", + "urn:barcode:33433061301556" + ], + "physicalLocation": [ + "*OLB 84-1934" + ], + "shelfMark_sort": "a*OLB 84-001934", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301556" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1934", - "urn:barcode:33433061301556" + "shelfMark": [ + "*OLB 84-1934" ], + "uri": "i13783781", "identifierV2": [ { - "value": "*OLB 84-1934", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1934" }, { - "value": "33433061301556", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301556" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301556" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1934" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1934" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001934", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783781" + ] }, "sort": [ null @@ -890,6 +896,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom" ], @@ -1027,88 +1036,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-336", + "urn:barcode:33433032711909" + ], + "physicalLocation": [ + "JMF 83-336" + ], + "shelfMark_sort": "aJMF 83-000336", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032711909" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-336", - "urn:barcode:33433032711909" + "shelfMark": [ + "JMF 83-336" ], + "uri": "i10942022", "identifierV2": [ { - "value": "JMF 83-336", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-336" }, { - "value": "33433032711909", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032711909" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032711909" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-336" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-336" - ], - "shelfMark_sort": "aJMF 83-000336", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" + "formatLiteral": [ + "Notated music" ], - "uri": "i10942022" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -1169,6 +1178,9 @@ "createdYear": [ 1968 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tajdīd al-tafkīr al-dīnī fī al-Islām" ], @@ -1309,88 +1321,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OGC 84-1984", + "urn:barcode:33433022691665" + ], + "physicalLocation": [ + "*OGC 84-1984" + ], + "shelfMark_sort": "a*OGC 84-001984", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433022691665" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGC 84-1984", - "urn:barcode:33433022691665" + "shelfMark": [ + "*OGC 84-1984" ], + "uri": "i12540039", "identifierV2": [ { - "value": "*OGC 84-1984", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGC 84-1984" }, { - "value": "33433022691665", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433022691665" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433022691665" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGC 84-1984" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGC 84-1984" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGC 84-001984", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540039" + ] }, "sort": [ null @@ -1447,6 +1459,9 @@ "createdYear": [ 1981 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Due studi per chitarra" ], @@ -1585,88 +1600,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-276", + "urn:barcode:33433032883591" + ], + "physicalLocation": [ + "JMG 83-276" + ], + "shelfMark_sort": "aJMG 83-000276", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032883591" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-276", - "urn:barcode:33433032883591" + "shelfMark": [ + "JMG 83-276" ], + "uri": "i10942023", "identifierV2": [ { - "value": "JMG 83-276", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-276" }, { - "value": "33433032883591", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032883591" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032883591" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-276" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-276" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000276", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942023" + ] }, "sort": [ null @@ -1713,6 +1728,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Aṇṇāviṉ ciṟukataikaḷ." ], @@ -1847,88 +1865,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1986", + "urn:barcode:33433061301689" + ], + "physicalLocation": [ + "*OLB 84-1986" + ], + "shelfMark_sort": "a*OLB 84-001986", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301689" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1986", - "urn:barcode:33433061301689" + "shelfMark": [ + "*OLB 84-1986" ], + "uri": "i13783782", "identifierV2": [ { - "value": "*OLB 84-1986", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1986" }, { - "value": "33433061301689", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301689" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "*OLB 84-1986" + "idBarcode": [ + "33433061301689" ], - "recapCustomerCode": [ - "NA" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1986" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001986", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783782" + ] }, "sort": [ null @@ -1988,6 +2006,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Miniaturen II : 13 kleine Klavierstücke" ], @@ -2130,88 +2151,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-278", + "urn:barcode:33433032883617" + ], + "physicalLocation": [ + "JMG 83-278" + ], + "shelfMark_sort": "aJMG 83-000278", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032883617" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-278", - "urn:barcode:33433032883617" + "shelfMark": [ + "JMG 83-278" ], + "uri": "i10942024", "identifierV2": [ { - "value": "JMG 83-278", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-278" }, { - "value": "33433032883617", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032883617" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032883617" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-278" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-278" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000278", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942024" + ] }, "sort": [ null @@ -2266,6 +2287,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." ], @@ -2406,88 +2430,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1938", + "urn:barcode:33433061301598" + ], + "physicalLocation": [ + "*OLB 84-1938" + ], + "shelfMark_sort": "a*OLB 84-001938", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301598" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1938", - "urn:barcode:33433061301598" + "shelfMark": [ + "*OLB 84-1938" ], + "uri": "i13783783", "identifierV2": [ { - "value": "*OLB 84-1938", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1938" }, { - "value": "33433061301598", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301598" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301598" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1938" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1938" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001938", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783783" + ] }, "sort": [ null @@ -2535,6 +2559,9 @@ "dateEndString": [ "1982" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Passie en pasen : suite voor orgel, opus 50" ], @@ -2664,88 +2691,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-279", + "urn:barcode:33433032883625" + ], + "physicalLocation": [ + "JMG 83-279" + ], + "shelfMark_sort": "aJMG 83-000279", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032883625" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-279", - "urn:barcode:33433032883625" + "shelfMark": [ + "JMG 83-279" ], + "uri": "i10942025", "identifierV2": [ { - "value": "JMG 83-279", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-279" }, { - "value": "33433032883625", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032883625" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032883625" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-279" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-279" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000279", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942025" + ] }, "sort": [ null @@ -2800,6 +2827,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" ], @@ -2926,88 +2956,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFS 84-1997", + "urn:barcode:33433014514719" + ], + "physicalLocation": [ + "*OFS 84-1997" + ], + "shelfMark_sort": "a*OFS 84-001997", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433014514719" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFS 84-1997", - "urn:barcode:33433014514719" + "shelfMark": [ + "*OFS 84-1997" ], + "uri": "i10000003", "identifierV2": [ { - "value": "*OFS 84-1997", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFS 84-1997" }, { - "value": "33433014514719", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433014514719" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014514719" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFS 84-1997" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFS 84-1997" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFS 84-001997", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000003" + ] }, "sort": [ null @@ -3063,6 +3093,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Disko Treff 1 : Klavier." ], @@ -3189,88 +3222,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-366", + "urn:barcode:33433032712204" + ], + "physicalLocation": [ + "JMF 83-366" + ], + "shelfMark_sort": "aJMF 83-000366", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032712204" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-366", - "urn:barcode:33433032712204" + "shelfMark": [ + "JMF 83-366" ], + "uri": "i10942026", "identifierV2": [ { - "value": "JMF 83-366", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-366" }, { - "value": "33433032712204", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032712204" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032712204" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-366" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-366" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000366", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942026" + ] }, "sort": [ null @@ -3327,6 +3360,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Waḥdah al-Islāmīyah : aw al-taqrīb bayna al-madhāhib al-sabʻah, wathāʼiq khaṭīrah wa-buḥūth ʻilmīyah li-aʻāẓim ʻulamāʼ al-Muslimīn min al-sunnah wa-al-shīʻah" ], @@ -3457,88 +3493,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "identifier": [ + "urn:shelfmark:*OGC 84-1996", + "urn:barcode:33433022691780" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "*OGC 84-1996" ], - "holdingLocation": [ + "shelfMark_sort": "a*OGC 84-001996", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433022691780" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGC 84-1996", - "urn:barcode:33433022691780" + "shelfMark": [ + "*OGC 84-1996" ], + "uri": "i12540040", "identifierV2": [ { - "value": "*OGC 84-1996", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGC 84-1996" }, { - "value": "33433022691780", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433022691780" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433022691780" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGC 84-1996" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGC 84-1996" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGC 84-001996", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540040" + ] }, "sort": [ null @@ -3603,6 +3639,7 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [], "title": [ "Suite no. 1 : 1977" ], @@ -3777,6 +3814,9 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Nalla Kuṟuntokaiyil nāṉilam." ], @@ -3914,88 +3954,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1937", + "urn:barcode:33433061301580" + ], + "physicalLocation": [ + "*OLB 84-1937" + ], + "shelfMark_sort": "a*OLB 84-001937", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301580" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1937", - "urn:barcode:33433061301580" + "shelfMark": [ + "*OLB 84-1937" ], + "uri": "i13783785", "identifierV2": [ { - "value": "*OLB 84-1937", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1937" }, { - "value": "33433061301580", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301580" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301580" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1937" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1937" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001937", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783785" + ] }, "sort": [ null @@ -4057,6 +4097,9 @@ "createdYear": [ 1981 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Lettre du Mexique : pour baryton et piano, 1942" ], @@ -4187,88 +4230,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-395", + "urn:barcode:33433032735007" + ], + "physicalLocation": [ + "JMG 83-395" + ], + "shelfMark_sort": "aJMG 83-000395", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032735007" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-395", - "urn:barcode:33433032735007" + "shelfMark": [ + "JMG 83-395" ], + "uri": "i10942027", "identifierV2": [ { - "value": "JMG 83-395", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-395" }, { - "value": "33433032735007", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032735007" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032735007" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-395" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-395" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000395", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942027" + ] }, "sort": [ null @@ -4324,6 +4367,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" ], @@ -4461,88 +4507,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFX 84-1995", + "urn:barcode:33433002031718" + ], + "physicalLocation": [ + "*OFX 84-1995" + ], + "shelfMark_sort": "a*OFX 84-001995", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002031718" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFX 84-1995", - "urn:barcode:33433002031718" + "shelfMark": [ + "*OFX 84-1995" ], + "uri": "i10000004", "identifierV2": [ { - "value": "*OFX 84-1995", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFX 84-1995" }, { - "value": "33433002031718", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002031718" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002031718" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFX 84-1995" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFX 84-1995" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFX 84-001995", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000004" + ] }, "sort": [ null @@ -4597,6 +4643,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Zwölf Walzer und ein Epilog : für Klavier" ], @@ -4735,88 +4784,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-111", + "urn:barcode:33433032845053" + ], + "physicalLocation": [ + "JMG 83-111" + ], + "shelfMark_sort": "aJMG 83-000111", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032845053" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-111", - "urn:barcode:33433032845053" + "shelfMark": [ + "JMG 83-111" ], + "uri": "i10942028", "identifierV2": [ { - "value": "JMG 83-111", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-111" }, { - "value": "33433032845053", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032845053" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032845053" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-111" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-111" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000111", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942028" + ] }, "sort": [ null @@ -4866,6 +4915,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tolkāppiyam." ], @@ -5009,100 +5061,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1936 v. 1", + "urn:barcode:33433061301572" + ], + "physicalLocation": [ + "*OLB 84-1936" + ], + "shelfMark_sort": "a*OLB 84-1936 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLB 84-1936 v. 1" + ], + "uri": "i13783786", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLB 84-1936 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433061301572" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433061301572" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1936 v. 1", - "urn:barcode:33433061301572" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLB 84-1936 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433061301572", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLB 84-1936" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLB 84-1936 v. 1" - ], - "shelfMark_sort": "a*OLB 84-1936 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i13783786" + ] }, "sort": [ " 1-" @@ -5163,6 +5215,9 @@ "createdYear": [ 1978 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Aurora : sinfonischer Prolog : Partitur" ], @@ -5294,88 +5349,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-113", + "urn:barcode:33433032845079" + ], + "physicalLocation": [ + "JMG 83-113" + ], + "shelfMark_sort": "aJMG 83-000113", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032845079" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-113", - "urn:barcode:33433032845079" + "shelfMark": [ + "JMG 83-113" ], + "uri": "i10942029", "identifierV2": [ { - "value": "JMG 83-113", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-113" }, { - "value": "33433032845079", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032845079" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032845079" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-113" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-113" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000113", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942029" + ] }, "sort": [ null @@ -5431,6 +5486,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." ], @@ -5578,88 +5636,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1935", + "urn:barcode:33433061301564" + ], + "physicalLocation": [ + "*OLB 84-1935" + ], + "shelfMark_sort": "a*OLB 84-001935", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301564" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1935", - "urn:barcode:33433061301564" + "shelfMark": [ + "*OLB 84-1935" ], + "uri": "i13783787", "identifierV2": [ { - "value": "*OLB 84-1935", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1935" }, { - "value": "33433061301564", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301564" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301564" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1935" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1935" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001935", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783787" + ] }, "sort": [ null @@ -5725,6 +5783,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Musica sacra" ], @@ -5856,88 +5917,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-38", + "urn:barcode:33433032709028" + ], + "physicalLocation": [ + "JMF 83-38" + ], + "shelfMark_sort": "aJMF 83-000038", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032709028" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-38", - "urn:barcode:33433032709028" + "shelfMark": [ + "JMF 83-38" ], + "uri": "i10942030", "identifierV2": [ { - "value": "JMF 83-38", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-38" }, { - "value": "33433032709028", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032709028" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032709028" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-38" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-38" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000038", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942030" + ] }, "sort": [ null @@ -5996,6 +6057,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" ], @@ -6135,88 +6199,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFK 84-1944", + "urn:barcode:33433005548676" + ], + "physicalLocation": [ + "*OFK 84-1944" + ], + "shelfMark_sort": "a*OFK 84-001944", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433005548676" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFK 84-1944", - "urn:barcode:33433005548676" + "shelfMark": [ + "*OFK 84-1944" ], + "uri": "i10000005", "identifierV2": [ { - "value": "*OFK 84-1944", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFK 84-1944" }, { - "value": "33433005548676", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433005548676" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005548676" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFK 84-1944" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFK 84-1944" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFK 84-001944", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000005" + ] }, "sort": [ null @@ -6259,6 +6323,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Drei Sonatinen für Klavier" ], @@ -6394,88 +6461,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-107", + "urn:barcode:33433032709697" + ], + "physicalLocation": [ + "JMF 83-107" + ], + "shelfMark_sort": "aJMF 83-000107", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032709697" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-107", - "urn:barcode:33433032709697" + "shelfMark": [ + "JMF 83-107" ], + "uri": "i10942031", "identifierV2": [ { - "value": "JMF 83-107", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-107" }, { - "value": "33433032709697", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032709697" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032709697" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-107" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-107" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000107", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942031" + ] }, "sort": [ null @@ -6531,6 +6598,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" ], @@ -6668,88 +6738,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "identifier": [ + "urn:shelfmark:*OFX 84-1953", + "urn:barcode:33433002031700" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "*OFX 84-1953" ], - "holdingLocation": [ + "shelfMark_sort": "a*OFX 84-001953", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002031700" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFX 84-1953", - "urn:barcode:33433002031700" + "shelfMark": [ + "*OFX 84-1953" ], + "uri": "i10000006", "identifierV2": [ { - "value": "*OFX 84-1953", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFX 84-1953" }, { - "value": "33433002031700", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002031700" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002031700" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFX 84-1953" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFX 84-1953" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFX 84-001953", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000006" + ] }, "sort": [ null @@ -6792,6 +6862,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Drei kleine Sonaten : für Violine solo" ], @@ -6927,88 +7000,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-95", + "urn:barcode:33433032709572" + ], + "physicalLocation": [ + "JMF 83-95" + ], + "shelfMark_sort": "aJMF 83-000095", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032709572" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-95", - "urn:barcode:33433032709572" + "shelfMark": [ + "JMF 83-95" ], + "uri": "i10942032", "identifierV2": [ { - "value": "JMF 83-95", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-95" }, { - "value": "33433032709572", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032709572" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032709572" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-95" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-95" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000095", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942032" + ] }, "sort": [ null @@ -7068,6 +7141,9 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Vaṃśabhāskara : eka adhyayana" ], @@ -7205,88 +7281,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTM 84-1945", + "urn:barcode:33433011094210" + ], + "physicalLocation": [ + "*OKTM 84-1945" + ], + "shelfMark_sort": "a*OKTM 84-001945", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011094210" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTM 84-1945", - "urn:barcode:33433011094210" + "shelfMark": [ + "*OKTM 84-1945" ], + "uri": "i10942033", "identifierV2": [ { - "value": "*OKTM 84-1945", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTM 84-1945" }, { - "value": "33433011094210", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011094210" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011094210" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTM 84-1945" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKTM 84-1945" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTM 84-001945", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942033" + ] }, "sort": [ null @@ -7346,6 +7422,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Cruor : for organ solo, 1977" ], @@ -7493,31 +7572,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-93", + "urn:barcode:33433032709556" + ], + "physicalLocation": [ + "JMF 83-93" + ], + "shelfMark_sort": "aJMF 83-000093", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JMF 83-93" + ], + "uri": "i10942034", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMF 83-93" + }, + { + "type": "bf:Barcode", + "value": "33433032709556" } ], "holdingLocation_packed": [ @@ -7526,55 +7624,36 @@ "idBarcode": [ "33433032709556" ], - "identifier": [ - "urn:shelfmark:JMF 83-93", - "urn:barcode:33433032709556" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMF 83-93", - "type": "bf:ShelfMark" - }, - { - "value": "33433032709556", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Notated music" ], - "physicalLocation": [ - "JMF 83-93" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NP" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMF 83-93" - ], - "shelfMark_sort": "aJMF 83-000093", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942034" + ] }, "sort": [ null @@ -7640,12 +7719,15 @@ "createdYear": [ 1974 ], - "title": [ - "Uṇādi-koṣaḥ" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Uṇādi-koṣaḥ" + ], "shelfMark": [ "*OKA 84-1931" ], @@ -7676,9 +7758,6 @@ "dateStartYear": [ 1974 ], - "idOclc": [ - "NYPG001000014-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -7705,6 +7784,9 @@ "value": "(WaOLN)nyp0200029" } ], + "idOclc": [ + "NYPG001000014-B" + ], "uniformTitle": [ "Uṇādisūtra." ], @@ -7790,88 +7872,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKA 84-1931", + "urn:barcode:33433012968222" + ], + "physicalLocation": [ + "*OKA 84-1931" + ], + "shelfMark_sort": "a*OKA 84-001931", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433012968222" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKA 84-1931", - "urn:barcode:33433012968222" + "shelfMark": [ + "*OKA 84-1931" ], + "uri": "i10000007", "identifierV2": [ { - "value": "*OKA 84-1931", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKA 84-1931" }, { - "value": "33433012968222", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433012968222" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433012968222" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKA 84-1931" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKA 84-1931" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKA 84-001931", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000007" + ] }, "sort": [ null @@ -7914,6 +7996,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Neun Miniaturen : für Klavier : op. 52" ], @@ -8052,88 +8137,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-17", + "urn:barcode:33433032841631" + ], + "physicalLocation": [ + "JMG 83-17" + ], + "shelfMark_sort": "aJMG 83-000017", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032841631" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-17", - "urn:barcode:33433032841631" + "shelfMark": [ + "JMG 83-17" ], + "uri": "i10942035", "identifierV2": [ { - "value": "JMG 83-17", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-17" }, { - "value": "33433032841631", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032841631" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032841631" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-17" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-17" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000017", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942035" + ] }, "sort": [ null @@ -8191,6 +8276,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Buzurgān-i Jahrum : mushtamil bar sharḥ-i aḥvāl va ā̲sār-i rijāl va sukhanvarān va dānishmandān va khushnivīsān va pizishkān-i Jahrum va Khafr" ], @@ -8318,31 +8406,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*OMP 84-2007", + "urn:barcode:33433013173012" + ], + "physicalLocation": [ + "*OMP 84-2007" + ], + "shelfMark_sort": "a*OMP 84-002007", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Text" + "shelfMark": [ + "*OMP 84-2007" ], - "holdingLocation": [ + "uri": "i10000008", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OMP 84-2007" + }, + { + "type": "bf:Barcode", + "value": "33433013173012" } ], "holdingLocation_packed": [ @@ -8351,55 +8458,36 @@ "idBarcode": [ "33433013173012" ], - "identifier": [ - "urn:shelfmark:*OMP 84-2007", - "urn:barcode:33433013173012" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OMP 84-2007", - "type": "bf:ShelfMark" - }, - { - "value": "33433013173012", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OMP 84-2007" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OMP 84-2007" - ], - "shelfMark_sort": "a*OMP 84-002007", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000008" + ] }, "sort": [ null @@ -8450,6 +8538,9 @@ "createdYear": [ 1981 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Psalm settings" ], @@ -8580,88 +8671,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-59", + "urn:barcode:33433032842035" + ], + "physicalLocation": [ + "JMG 83-59" + ], + "shelfMark_sort": "aJMG 83-000059", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842035" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-59", - "urn:barcode:33433032842035" + "shelfMark": [ + "JMG 83-59" ], + "uri": "i10942036", "identifierV2": [ { - "value": "JMG 83-59", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-59" }, { - "value": "33433032842035", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842035" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842035" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-59" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-59" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000059", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942036" + ] }, "sort": [ null @@ -8723,12 +8814,15 @@ "createdYear": [ 1974 ], - "title": [ - "Brhatkathāślokasaṁgraha : a study" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Brhatkathāślokasaṁgraha : a study" + ], "shelfMark": [ "*OKR 84-2006" ], @@ -8744,12 +8838,12 @@ "idLccn": [ "74903273" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Indian civilization series ; no. 4" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Guṇāḍhya", "Agrawala, Vasudeva Sharana", @@ -8761,9 +8855,6 @@ "dateStartYear": [ 1974 ], - "idOclc": [ - "NYPG001000016-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -8790,6 +8881,9 @@ "value": "(WaOLN)nyp0200033" } ], + "idOclc": [ + "NYPG001000016-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -8869,88 +8963,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKR 84-2006", + "urn:barcode:33433011528696" + ], + "physicalLocation": [ + "*OKR 84-2006" + ], + "shelfMark_sort": "a*OKR 84-002006", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011528696" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKR 84-2006", - "urn:barcode:33433011528696" + "shelfMark": [ + "*OKR 84-2006" ], + "uri": "i10000009", "identifierV2": [ { - "value": "*OKR 84-2006", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKR 84-2006" }, { - "value": "33433011528696", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011528696" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011528696" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKR 84-2006" + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKR 84-2006" - ], - "shelfMark_sort": "a*OKR 84-002006", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000009" + ] }, "sort": [ null @@ -9005,6 +9099,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -9108,15 +9205,15 @@ "placeOfPublication": [ "Amsterdam" ], + "titleAlt": [ + "Serenade" + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Serenade" - ], "tableOfContents": [ "Varianten -- Nocturne -- Toccata I -- Intermezzo -- Toccata II." ], @@ -9282,6 +9379,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Srīnārāyaṇatīrthayatīndracaritram[sic]" ], @@ -9419,88 +9519,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKB 84-1928", + "urn:barcode:33433058548433" + ], + "physicalLocation": [ + "*OKB 84-1928" + ], + "shelfMark_sort": "a*OKB 84-001928", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058548433" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKB 84-1928", - "urn:barcode:33433058548433" + "shelfMark": [ + "*OKB 84-1928" ], + "uri": "i12858032", "identifierV2": [ { - "value": "*OKB 84-1928", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKB 84-1928" }, { - "value": "33433058548433", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058548433" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058548433" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKB 84-1928" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKB 84-1928" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKB 84-001928", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12858032" + ] }, "sort": [ null @@ -9550,6 +9650,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Eight studies for guitar : in form of a suite : 1979" ], @@ -9682,88 +9785,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-5", + "urn:barcode:33433032841482" + ], + "physicalLocation": [ + "JMG 83-5" + ], + "shelfMark_sort": "aJMG 83-000005", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032841482" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-5", - "urn:barcode:33433032841482" + "shelfMark": [ + "JMG 83-5" ], + "uri": "i10942040", "identifierV2": [ { - "value": "JMG 83-5", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-5" }, { - "value": "33433032841482", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032841482" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032841482" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-5" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-5" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000005", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942040" + ] }, "sort": [ null @@ -9815,6 +9918,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" ], @@ -9952,31 +10058,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKP 84-1932", + "urn:barcode:33433058153572" + ], + "physicalLocation": [ + "*OKP 84-1932" + ], + "shelfMark_sort": "a*OKP 84-001932", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OKP 84-1932" + ], + "uri": "i13783788", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKP 84-1932" + }, { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:Barcode", + "value": "33433058153572" } ], "holdingLocation_packed": [ @@ -9985,55 +10110,36 @@ "idBarcode": [ "33433058153572" ], - "identifier": [ - "urn:shelfmark:*OKP 84-1932", - "urn:barcode:33433058153572" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OKP 84-1932", - "type": "bf:ShelfMark" - }, - { - "value": "33433058153572", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OKP 84-1932" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKP 84-1932" - ], - "shelfMark_sort": "a*OKP 84-001932", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783788" + ] }, "sort": [ null @@ -10076,6 +10182,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Five sonatas for pianoforte" ], @@ -10216,88 +10325,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-66", + "urn:barcode:33433032842100" + ], + "physicalLocation": [ + "JMG 83-66" + ], + "shelfMark_sort": "aJMG 83-000066", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842100" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-66", - "urn:barcode:33433032842100" + "shelfMark": [ + "JMG 83-66" ], + "uri": "i10942041", "identifierV2": [ { - "value": "JMG 83-66", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-66" }, { - "value": "33433032842100", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842100" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842100" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-66" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-66" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000066", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942041" + ] }, "sort": [ null @@ -10347,6 +10456,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tiru. Vi. Kaliyāṇacuntaraṉār." ], @@ -10487,88 +10599,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1947", + "urn:barcode:33433061301622" + ], + "physicalLocation": [ + "*OLB 84-1947" + ], + "shelfMark_sort": "a*OLB 84-001947", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301622" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1947", - "urn:barcode:33433061301622" + "shelfMark": [ + "*OLB 84-1947" ], + "uri": "i13783789", "identifierV2": [ { - "value": "*OLB 84-1947", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1947" }, { - "value": "33433061301622", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301622" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301622" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1947" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1947" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001947", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783789" + ] }, "sort": [ null @@ -10619,6 +10731,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Encounter" ], @@ -10759,31 +10874,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "identifier": [ + "urn:shelfmark:JMF 83-66", + "urn:barcode:33433032709291" + ], + "physicalLocation": [ + "JMF 83-66" + ], + "shelfMark_sort": "aJMF 83-000066", + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Notated music" + "shelfMark": [ + "JMF 83-66" ], - "holdingLocation": [ + "uri": "i10942042", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMF 83-66" + }, + { + "type": "bf:Barcode", + "value": "33433032709291" } ], "holdingLocation_packed": [ @@ -10792,55 +10926,36 @@ "idBarcode": [ "33433032709291" ], - "identifier": [ - "urn:shelfmark:JMF 83-66", - "urn:barcode:33433032709291" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMF 83-66", - "type": "bf:ShelfMark" - }, - { - "value": "33433032709291", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Notated music" ], - "physicalLocation": [ - "JMF 83-66" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NP" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMF 83-66" - ], - "shelfMark_sort": "aJMF 83-000066", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942042" + ] }, "sort": [ null @@ -10894,6 +11009,9 @@ "dateEndString": [ "1972" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." ], @@ -11038,88 +11156,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKN 84-1926", + "urn:barcode:33433058618392" + ], + "physicalLocation": [ + "*OKN 84-1926" + ], + "shelfMark_sort": "a*OKN 84-001926", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058618392" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKN 84-1926", - "urn:barcode:33433058618392" + "shelfMark": [ + "*OKN 84-1926" ], + "uri": "i13783790", "identifierV2": [ { - "value": "*OKN 84-1926", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKN 84-1926" }, { - "value": "33433058618392", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058618392" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058618392" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKN 84-1926" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKN 84-1926" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKN 84-001926", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783790" + ] }, "sort": [ null @@ -11180,6 +11298,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Capriccio : für 10 Blasinstrumente" ], @@ -11319,88 +11440,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMC 83-9", + "urn:barcode:33433004744128" + ], + "physicalLocation": [ + "JMC 83-9" + ], + "shelfMark_sort": "aJMC 83-000009", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433004744128" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMC 83-9", - "urn:barcode:33433004744128" + "shelfMark": [ + "JMC 83-9" ], + "uri": "i10000010", "identifierV2": [ { - "value": "JMC 83-9", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMC 83-9" }, { - "value": "33433004744128", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433004744128" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433004744128" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMC 83-9" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMC 83-9" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMC 83-000009", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000010" + ] }, "sort": [ null @@ -11465,12 +11586,15 @@ "createdYear": [ 1976 ], - "title": [ - "ʼJam-mgon Rgyal-ba gñis-paʼi Rgyal-tshab Dpal-ldan Bla-ma Dam-pa Khyab-bdag Khri-chen Byaṅ-chub-chos-ʼphel dpal-bzaṅ-poʼi rnam par thar pa Dgaʼ ldan bstan paʼi mdzes rgyab [sic] : the biography of the 69th Khri-chen of Dgaʼ-ʼldan Byaṅ-chub-chos-ʼphel" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "ʼJam-mgon Rgyal-ba gñis-paʼi Rgyal-tshab Dpal-ldan Bla-ma Dam-pa Khyab-bdag Khri-chen Byaṅ-chub-chos-ʼphel dpal-bzaṅ-poʼi rnam par thar pa Dgaʼ ldan bstan paʼi mdzes rgyab [sic] : the biography of the 69th Khri-chen of Dgaʼ-ʼldan Byaṅ-chub-chos-ʼphel" + ], "shelfMark": [ "*OZ+ 82-2361" ], @@ -11498,9 +11622,6 @@ "dateStartYear": [ 1976 ], - "idOclc": [ - "NYPG001000021-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -11527,6 +11648,9 @@ "value": "(WaOLN)nyp0200043" } ], + "idOclc": [ + "NYPG001000021-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -11611,88 +11735,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2361", + "urn:barcode:33433015080645" + ], + "physicalLocation": [ + "*OZ+ 82-2361" + ], + "shelfMark_sort": "a*OZ+ 82-002361", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080645" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2361", - "urn:barcode:33433015080645" + "shelfMark": [ + "*OZ+ 82-2361" ], + "uri": "i10000011", "identifierV2": [ { - "value": "*OZ+ 82-2361", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2361" }, { - "value": "33433015080645", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080645" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080645" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2361" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2361" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002361", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000011" + ] }, "sort": [ null @@ -11735,6 +11859,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Thoughts & feelings : for violin solo" ], @@ -11872,88 +11999,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 82-688", + "urn:barcode:33433032707568" + ], + "physicalLocation": [ + "JMG 82-688" + ], + "shelfMark_sort": "aJMG 82-000688", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032707568" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 82-688", - "urn:barcode:33433032707568" + "shelfMark": [ + "JMG 82-688" ], + "uri": "i10942043", "identifierV2": [ { - "value": "JMG 82-688", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 82-688" }, { - "value": "33433032707568", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032707568" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032707568" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 82-688" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 82-688" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 82-000688", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942043" + ] }, "sort": [ null @@ -12019,12 +12146,15 @@ "createdYear": [ 1976 ], - "title": [ - "Dpal Kye rdo rjeʼi phyi naṅ bskyed rim ñams len gnad kyi gsal byed sñan brgyud bstan pa rgyas paʼi ñin byed : a detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Dpal Kye rdo rjeʼi phyi naṅ bskyed rim ñams len gnad kyi gsal byed sñan brgyud bstan pa rgyas paʼi ñin byed : a detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra" + ], "shelfMark": [ "*OZ+ 82-2362" ], @@ -12052,9 +12182,6 @@ "dateStartYear": [ 1976 ], - "idOclc": [ - "NYPG001000022-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -12081,6 +12208,9 @@ "value": "(WaOLN)nyp0200045" } ], + "idOclc": [ + "NYPG001000022-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -12133,17 +12263,17 @@ "placeOfPublication": [ "New Delhi" ], + "titleAlt": [ + "Rgyal ba rdo rje ʼchan Kun dgaʼ bzaṅ poʼi rnam par thar pa legs bśad chu bo ʼdus paʼi rgya mtsho yon tan yid bźin nor buʼi byuṅ gnas.", + "Detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra.", + "Life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po." + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Rgyal ba rdo rje ʼchan Kun dgaʼ bzaṅ poʼi rnam par thar pa legs bśad chu bo ʼdus paʼi rgya mtsho yon tan yid bźin nor buʼi byuṅ gnas.", - "Detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra.", - "Life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po." - ], "dimensions": [ "28 x 37 cm." ] @@ -12170,31 +12300,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2362", + "urn:barcode:33433015080413" + ], + "physicalLocation": [ + "*OZ+ 82-2362" + ], + "shelfMark_sort": "a*OZ+ 82-002362", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OZ+ 82-2362" + ], + "uri": "i10000012", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2362" + }, { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:Barcode", + "value": "33433015080413" } ], "holdingLocation_packed": [ @@ -12203,55 +12352,36 @@ "idBarcode": [ "33433015080413" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2362", - "urn:barcode:33433015080413" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OZ+ 82-2362", - "type": "bf:ShelfMark" - }, - { - "value": "33433015080413", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OZ+ 82-2362" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OZ+ 82-2362" - ], - "shelfMark_sort": "a*OZ+ 82-002362", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000012" + ] }, "sort": [ null @@ -12307,6 +12437,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello" ], @@ -12450,88 +12583,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-79", + "urn:barcode:33433032842233" + ], + "physicalLocation": [ + "JMG 83-79" + ], + "shelfMark_sort": "aJMG 83-000079", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842233" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-79", - "urn:barcode:33433032842233" + "shelfMark": [ + "JMG 83-79" ], + "uri": "i10942044", "identifierV2": [ { - "value": "JMG 83-79", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-79" }, { - "value": "33433032842233", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842233" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842233" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-79" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-79" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000079", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942044" + ] }, "sort": [ null @@ -12587,6 +12720,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Bkra śis Tshe riṅ mai sgrub skor sogs : a collection of texts outlining the rites of the Five Long Lived Sisters and other highly esoteric rituals." ], @@ -12721,88 +12857,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2382", + "urn:barcode:33433015080439" + ], + "physicalLocation": [ + "*OZ+ 82-2382" + ], + "shelfMark_sort": "a*OZ+ 82-002382", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080439" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2382", - "urn:barcode:33433015080439" + "shelfMark": [ + "*OZ+ 82-2382" ], + "uri": "i10000013", "identifierV2": [ { - "value": "*OZ+ 82-2382", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2382" }, { - "value": "33433015080439", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080439" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080439" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2382" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2382" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002382", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000013" + ] }, "sort": [ null @@ -12853,6 +12989,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Symphony, op. 26 : full score" ], @@ -12996,31 +13135,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "identifier": [ + "urn:shelfmark:JMG 83-80", + "urn:barcode:33433032842241" + ], + "physicalLocation": [ + "JMG 83-80" + ], + "shelfMark_sort": "aJMG 83-000080", + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Notated music" + "shelfMark": [ + "JMG 83-80" ], - "holdingLocation": [ + "uri": "i10942045", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMG 83-80" + }, + { + "type": "bf:Barcode", + "value": "33433032842241" } ], "holdingLocation_packed": [ @@ -13029,55 +13187,36 @@ "idBarcode": [ "33433032842241" ], - "identifier": [ - "urn:shelfmark:JMG 83-80", - "urn:barcode:33433032842241" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMG 83-80", - "type": "bf:ShelfMark" - }, - { - "value": "33433032842241", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Notated music" ], - "physicalLocation": [ - "JMG 83-80" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NP" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMG 83-80" - ], - "shelfMark_sort": "aJMG 83-000080", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942045" + ] }, "sort": [ null @@ -13138,6 +13277,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "The rnam thar and mgur ʼbum of ʼBaʼ-ra-ba, with his Sgrub pa ñams su blaṅ baʼi lag len dgos ʼdod ʼbyuṅ baʼi gter mdzod." ], @@ -13280,88 +13422,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2381", + "urn:barcode:33433015080421" + ], + "physicalLocation": [ + "*OZ+ 82-2381" + ], + "shelfMark_sort": "a*OZ+ 82-002381", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080421" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2381", - "urn:barcode:33433015080421" + "shelfMark": [ + "*OZ+ 82-2381" ], + "uri": "i10000014", "identifierV2": [ { - "value": "*OZ+ 82-2381", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2381" }, { - "value": "33433015080421", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080421" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080421" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2381" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2381" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002381", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000014" + ] }, "sort": [ null @@ -13412,6 +13554,9 @@ "createdYear": [ 1977 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972" ], @@ -13560,88 +13705,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-75", + "urn:barcode:33433032842191" + ], + "physicalLocation": [ + "JMG 83-75" + ], + "shelfMark_sort": "aJMG 83-000075", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842191" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-75", - "urn:barcode:33433032842191" + "shelfMark": [ + "JMG 83-75" ], + "uri": "i10942046", "identifierV2": [ { - "value": "JMG 83-75", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-75" }, { - "value": "33433032842191", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842191" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842191" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-75" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-75" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000075", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942046" + ] }, "sort": [ null diff --git a/test/fixtures/query-a6e109e187675808b16924585974dc12.json b/test/fixtures/query-a6e109e187675808b16924585974dc12.json index c8b13824..532c35db 100644 --- a/test/fixtures/query-a6e109e187675808b16924585974dc12.json +++ b/test/fixtures/query-a6e109e187675808b16924585974dc12.json @@ -1,5 +1,5 @@ { - "took": 40, + "took": 31, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-aa47ab1a757bc3119941d6f616d4c9fb.json b/test/fixtures/query-aa47ab1a757bc3119941d6f616d4c9fb.json index b12911b3..2371bfad 100644 --- a/test/fixtures/query-aa47ab1a757bc3119941d6f616d4c9fb.json +++ b/test/fixtures/query-aa47ab1a757bc3119941d6f616d4c9fb.json @@ -1,5 +1,5 @@ { - "took": 56, + "took": 60, "timed_out": false, "_shards": { "total": 2, @@ -17,7 +17,7 @@ { "_index": "resources-2024-10-22", "_id": "b10695923", - "_score": 367.34302, + "_score": 370.8119, "_source": { "extent": [ "231 p., [3] leaves of plates : ill. ;" @@ -59,6 +59,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Da guerrilha ao socialismo : a revolução cubana" ], @@ -186,7 +189,7 @@ ] }, "sort": [ - 367.34302, + 370.8119, "b10695923" ], "inner_hits": { @@ -207,91 +210,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JLD 81-1041", + "urn:barcode:33433097539310" + ], + "physicalLocation": [ + "JLD 81-1041" + ], + "shelfMark_sort": "aJLD 81-001041", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], "dueDate": [ "2024-01-26" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:co||Loaned" ], - "idBarcode": [ - "33433097539310" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JLD 81-1041", - "urn:barcode:33433097539310" + "shelfMark": [ + "JLD 81-1041" ], + "uri": "i15776458", "identifierV2": [ { - "value": "JLD 81-1041", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JLD 81-1041" }, { - "value": "33433097539310", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433097539310" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433097539310" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "JLD 81-1041" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ false ], - "shelfMark": [ - "JLD 81-1041" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aJLD 81-001041", "status": [ { "id": "status:co", "label": "Loaned" } - ], - "status_packed": [ - "status:co||Loaned" - ], - "type": [ - "bf:Item" - ], - "uri": "i15776458" + ] }, "sort": [ null @@ -334,6 +337,10 @@ "createdYear": [ 201 ], + "buildingLocationIds": [ + "ma", + "rc" + ], "parallelTitle": [ "‏כותר שאינו באותיות לטינית = зглавие руссий." ], @@ -1048,97 +1055,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v.1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:k||Check with staff" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "uri": "i37857771", + "identifierV2": [ { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + }, + { + "type": "bf:Barcode", + "value": "3333333333" } ], "holdingLocation_packed": [ "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" ], + "enumerationChronology": [ + "v.1" + ], "idBarcode": [ "3333333333" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ false ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "status": [ { "id": "status:k", "label": "Check with staff" } ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i37857771" + ] }, "sort": [ " 1-" @@ -1153,88 +1160,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1103", + "label": "Dorot Jewish Division" } ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" ], - "enumerationChronology": [ - "nothing" + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "catalogItemType_packed": [ + "catalogItemType:3||serial" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmf2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "44455533322211" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" ], + "uri": "i37857772", "identifierV2": [ { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" }, { - "value": "44455533322211", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "44455533322211" } ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "enumerationChronology": [ + "nothing" + ], + "idBarcode": [ + "44455533322211" ], "owner_packed": [ "orgs:1103||Dorot Jewish Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ true ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" + ] }, "sort": [ null diff --git a/test/fixtures/query-ab73aebc8bb3ec0e872fa56634962025.json b/test/fixtures/query-ab73aebc8bb3ec0e872fa56634962025.json index 99773f62..a9a5fba2 100644 --- a/test/fixtures/query-ab73aebc8bb3ec0e872fa56634962025.json +++ b/test/fixtures/query-ab73aebc8bb3ec0e872fa56634962025.json @@ -1,5 +1,5 @@ { - "took": 18, + "took": 20, "timed_out": false, "_shards": { "total": 2, @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.631159, + "max_score": 15.73737, "hits": [ { "_index": "resources-2024-10-22", "_id": "b15109087", - "_score": 15.631159, + "_score": 15.73737, "_source": { "extent": [ "v. : ill. ;" @@ -61,6 +61,9 @@ "dateEndString": [ "1uuu" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "L'Esprit des journaux, françois et étrangers" ], @@ -1722,17 +1725,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -1809,12 +1812,6 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, @@ -1824,6 +1821,12 @@ "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -1900,17 +1903,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -1987,17 +1990,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -2074,17 +2077,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -2161,17 +2164,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -2248,17 +2251,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -2335,17 +2338,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -2422,17 +2425,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -2509,17 +2512,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -2596,17 +2599,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -2683,17 +2686,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -2770,17 +2773,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -2857,17 +2860,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -2944,17 +2947,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -3031,17 +3034,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -3118,17 +3121,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -3205,17 +3208,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -3292,17 +3295,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -3379,17 +3382,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -3466,17 +3469,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -3553,17 +3556,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 12, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -3640,17 +3643,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -3727,17 +3730,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -3814,17 +3817,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -3901,17 +3904,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -3988,17 +3991,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -4075,17 +4078,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -4162,17 +4165,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -4249,17 +4252,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -4336,17 +4339,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -4423,104 +4426,104 @@ "recapCustomerCode": [ "NA" ], + "volumeRange": [ + { + "gte": 11, + "lte": 12 + } + ], "status": [ { "id": "status:a", "label": "Available" } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1804)", + "urn:barcode:33433081744819" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1804)", + "dateRange": [ + { + "gte": "1804", + "lte": "1804" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 11-1804" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1804)" + ], + "uri": "i17145969", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1804)" + }, + { + "type": "bf:Barcode", + "value": "33433081744819" + } + ], + "enumerationChronology": [ + "no. 11-12 (1804)" + ], + "idBarcode": [ + "33433081744819" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], "volumeRange": [ { "gte": 11, "lte": 12 } - ] - }, - { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "identifier": [ - "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1804)", - "urn:barcode:33433081744819" - ], - "physicalLocation": [ - "*DM (Esprit des Journaux, françois et etrangers)" - ], - "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011-12 (1804)", - "dateRange": [ - { - "gte": "1804", - "lte": "1804" - } - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "enumerationChronology_sort": [ - " 11-1804" - ], - "type": [ - "bf:Item" - ], - "shelfMark": [ - "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1804)" - ], - "uri": "i17145969", - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11-12 (1804)" - }, - { - "type": "bf:Barcode", - "value": "33433081744819" - } - ], - "enumerationChronology": [ - "no. 11-12 (1804)" - ], - "idBarcode": [ - "33433081744819" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:33", - "label": "google project, serial" - } - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "volumeRange": [ - { - "gte": 11, - "lte": 12 - } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -4597,17 +4600,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -4684,17 +4687,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -4771,17 +4774,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -4858,17 +4861,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -4945,17 +4948,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -5032,17 +5035,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -5119,17 +5122,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 11 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -5206,104 +5209,104 @@ "recapCustomerCode": [ "NA" ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], "status": [ { "id": "status:a", "label": "Available" } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1792)", + "urn:barcode:33433081743795" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1792)", + "dateRange": [ + { + "gte": "1792", + "lte": "1792" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1792" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1792)" + ], + "uri": "i17145896", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1792)" + }, + { + "type": "bf:Barcode", + "value": "33433081743795" + } + ], + "enumerationChronology": [ + "no. 11 (1792)" + ], + "idBarcode": [ + "33433081743795" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], "volumeRange": [ { "gte": 11, "lte": 11 } - ] - }, - { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "identifier": [ - "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1792)", - "urn:barcode:33433081743795" - ], - "physicalLocation": [ - "*DM (Esprit des Journaux, françois et etrangers)" - ], - "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1792)", - "dateRange": [ - { - "gte": "1792", - "lte": "1792" - } - ], - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "enumerationChronology_sort": [ - " 11-1792" - ], - "type": [ - "bf:Item" - ], - "shelfMark": [ - "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1792)" - ], - "uri": "i17145896", - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1792)" - }, - { - "type": "bf:Barcode", - "value": "33433081743795" - } - ], - "enumerationChronology": [ - "no. 11 (1792)" - ], - "idBarcode": [ - "33433081743795" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:33", - "label": "google project, serial" - } - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "volumeRange": [ - { - "gte": 11, - "lte": 11 - } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -5380,17 +5383,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 11 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -5467,17 +5470,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 11 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -5554,17 +5557,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 11 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -5641,17 +5644,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 11 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -5728,17 +5731,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 11 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -5815,17 +5818,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 11 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -5902,17 +5905,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 11 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -5989,104 +5992,104 @@ "recapCustomerCode": [ "NA" ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], "status": [ { "id": "status:a", "label": "Available" } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1783)", + "urn:barcode:33433081745626" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1783)", + "dateRange": [ + { + "gte": "1783", + "lte": "1783" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 11-1783" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1783)" + ], + "uri": "i17145788", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1783)" + }, + { + "type": "bf:Barcode", + "value": "33433081745626" + } + ], + "enumerationChronology": [ + "no. 11 (1783)" + ], + "idBarcode": [ + "33433081745626" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], "volumeRange": [ { "gte": 11, "lte": 11 } - ] - }, - { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "identifier": [ - "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 11 (1783)", - "urn:barcode:33433081745626" - ], - "physicalLocation": [ - "*DM (Esprit des Journaux, françois et etrangers)" - ], - "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000011 (1783)", - "dateRange": [ - { - "gte": "1783", - "lte": "1783" - } - ], - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "enumerationChronology_sort": [ - " 11-1783" - ], - "type": [ - "bf:Item" - ], - "shelfMark": [ - "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1783)" - ], - "uri": "i17145788", - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*DM (Esprit des Journaux, françois et etrangers) no. 11 (1783)" - }, - { - "type": "bf:Barcode", - "value": "33433081745626" - } - ], - "enumerationChronology": [ - "no. 11 (1783)" - ], - "idBarcode": [ - "33433081745626" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:33", - "label": "google project, serial" - } - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "volumeRange": [ - { - "gte": 11, - "lte": 11 - } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -6163,17 +6166,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 11 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -6250,17 +6253,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 11 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -6337,17 +6340,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 11 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -6424,17 +6427,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 11 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -6511,17 +6514,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 11 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -6598,17 +6601,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 11 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -6685,17 +6688,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 11, "lte": 11 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -6772,104 +6775,104 @@ "recapCustomerCode": [ "NA" ], + "volumeRange": [ + { + "gte": 11, + "lte": 11 + } + ], "status": [ { "id": "status:a", "label": "Available" } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10-12 (1774)", + "urn:barcode:33433081747226" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010-12 (1774)", + "dateRange": [ + { + "gte": "1774", + "lte": "1774" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1774" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10-12 (1774)" + ], + "uri": "i17145678", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10-12 (1774)" + }, + { + "type": "bf:Barcode", + "value": "33433081747226" + } + ], + "enumerationChronology": [ + "no. 10-12 (1774)" + ], + "idBarcode": [ + "33433081747226" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "volumeRange": [ - { - "gte": 11, - "lte": 11 - } - ] - }, - { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "identifier": [ - "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10-12 (1774)", - "urn:barcode:33433081747226" - ], - "physicalLocation": [ - "*DM (Esprit des Journaux, françois et etrangers)" - ], - "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010-12 (1774)", - "dateRange": [ - { - "gte": "1774", - "lte": "1774" - } - ], - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "enumerationChronology_sort": [ - " 10-1774" - ], - "type": [ - "bf:Item" - ], - "shelfMark": [ - "*DM (Esprit des Journaux, françois et etrangers) no. 10-12 (1774)" - ], - "uri": "i17145678", - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10-12 (1774)" - }, - { - "type": "bf:Barcode", - "value": "33433081747226" - } - ], - "enumerationChronology": [ - "no. 10-12 (1774)" - ], - "idBarcode": [ - "33433081747226" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:33", - "label": "google project, serial" - } - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -6946,17 +6949,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -7033,17 +7036,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -7120,17 +7123,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 11 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -7207,17 +7210,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -7294,17 +7297,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -7381,17 +7384,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -7468,17 +7471,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -7555,104 +7558,104 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } - ] - }, - { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "identifier": [ - "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1789)", - "urn:barcode:33433081744165" - ], - "physicalLocation": [ - "*DM (Esprit des Journaux, françois et etrangers)" - ], - "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1789)", - "dateRange": [ - { - "gte": "1789", - "lte": "1789" - } - ], - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "enumerationChronology_sort": [ - " 10-1789" - ], - "type": [ - "bf:Item" - ], - "shelfMark": [ - "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1789)" - ], - "uri": "i17145859", - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1789)" - }, - { - "type": "bf:Barcode", - "value": "33433081744165" - } - ], - "enumerationChronology": [ - "no. 10 (1789)" - ], - "idBarcode": [ - "33433081744165" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:33", - "label": "google project, serial" - } - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" ], "status": [ { "id": "status:a", "label": "Available" } - ], - "volumeRange": [ - { - "gte": 10, - "lte": 10 - } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1789)", + "urn:barcode:33433081744165" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1789)", + "dateRange": [ + { + "gte": "1789", + "lte": "1789" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1789" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1789)" + ], + "uri": "i17145859", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1789)" + }, + { + "type": "bf:Barcode", + "value": "33433081744165" + } + ], + "enumerationChronology": [ + "no. 10 (1789)" + ], + "idBarcode": [ + "33433081744165" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -7729,17 +7732,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -7816,17 +7819,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -7903,17 +7906,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -7990,17 +7993,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -8077,17 +8080,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -8164,17 +8167,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -8251,17 +8254,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -8338,104 +8341,104 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } - ] - }, - { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "identifier": [ - "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1780)", - "urn:barcode:33433081745253" - ], - "physicalLocation": [ - "*DM (Esprit des Journaux, françois et etrangers)" - ], - "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1780)", - "dateRange": [ - { - "gte": "1780", - "lte": "1780" - } - ], - "accessMessage": [ - { - "id": "accessMessage:u", - "label": "Supervised use" - } - ], - "enumerationChronology_sort": [ - " 10-1780" - ], - "type": [ - "bf:Item" - ], - "shelfMark": [ - "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1780)" - ], - "uri": "i17145750", - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1780)" - }, - { - "type": "bf:Barcode", - "value": "33433081745253" - } - ], - "enumerationChronology": [ - "no. 10 (1780)" - ], - "idBarcode": [ - "33433081745253" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:33", - "label": "google project, serial" - } - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" - } - ], - "recapCustomerCode": [ - "NA" ], "status": [ { "id": "status:a", "label": "Available" } - ], - "volumeRange": [ - { - "gte": 10, - "lte": 10 - } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 10 (1780)", + "urn:barcode:33433081745253" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000010 (1780)", + "dateRange": [ + { + "gte": "1780", + "lte": "1780" + } + ], + "accessMessage": [ + { + "id": "accessMessage:u", + "label": "Supervised use" + } + ], + "enumerationChronology_sort": [ + " 10-1780" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1780)" + ], + "uri": "i17145750", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 10 (1780)" + }, + { + "type": "bf:Barcode", + "value": "33433081745253" + } + ], + "enumerationChronology": [ + "no. 10 (1780)" + ], + "idBarcode": [ + "33433081745253" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 10, + "lte": 10 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -8512,17 +8515,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -8599,17 +8602,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -8686,17 +8689,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -8773,17 +8776,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -8860,17 +8863,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 10, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -8947,17 +8950,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -9034,17 +9037,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 12 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -9121,104 +9124,104 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, - "lte": 12 - } - ] - }, - { - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } - ], - "identifier": [ - "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1814)", - "urn:barcode:33433081743217" - ], - "physicalLocation": [ - "*DM (Esprit des Journaux, françois et etrangers)" - ], - "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1814)", - "dateRange": [ - { - "gte": "1814", - "lte": "1814" - } - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "enumerationChronology_sort": [ - " 9-1814" - ], - "type": [ - "bf:Item" - ], - "shelfMark": [ - "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1814)" - ], - "uri": "i17146029", - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1814)" - }, - { - "type": "bf:Barcode", - "value": "33433081743217" - } - ], - "enumerationChronology": [ - "no. 9-10 (1814)" - ], - "idBarcode": [ - "33433081743217" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:33", - "label": "google project, serial" - } - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:rc2ma", - "label": "Offsite" + "lte": 12 + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + { + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1814)", + "urn:barcode:33433081743217" + ], + "physicalLocation": [ + "*DM (Esprit des Journaux, françois et etrangers)" + ], + "shelfMark_sort": "a*DM (Esprit des Journaux, françois et etrangers) no. 000009-10 (1814)", + "dateRange": [ + { + "gte": "1814", + "lte": "1814" + } + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "enumerationChronology_sort": [ + " 9-1814" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1814)" + ], + "uri": "i17146029", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*DM (Esprit des Journaux, françois et etrangers) no. 9-10 (1814)" + }, + { + "type": "bf:Barcode", + "value": "33433081743217" + } + ], + "enumerationChronology": [ + "no. 9-10 (1814)" + ], + "idBarcode": [ + "33433081743217" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:33", + "label": "google project, serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" + ], + "volumeRange": [ + { + "gte": 9, + "lte": 10 } ], - "recapCustomerCode": [ - "NA" - ], "status": [ { "id": "status:a", "label": "Available" } - ], - "volumeRange": [ - { - "gte": 9, - "lte": 10 - } ] }, { @@ -9295,17 +9298,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -9382,17 +9385,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -9469,17 +9472,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -9556,17 +9559,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -9643,17 +9646,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -9730,17 +9733,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -9817,17 +9820,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -9904,17 +9907,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -9991,17 +9994,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -10078,17 +10081,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -10165,17 +10168,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -10252,17 +10255,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -10339,17 +10342,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -10426,17 +10429,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -10513,17 +10516,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -10600,17 +10603,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 10 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -10687,17 +10690,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -10774,17 +10777,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -10861,17 +10864,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -10948,17 +10951,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -11035,17 +11038,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -11122,17 +11125,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -11209,17 +11212,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -11296,17 +11299,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -11383,17 +11386,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -11470,17 +11473,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -11557,17 +11560,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -11644,17 +11647,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -11731,17 +11734,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -11818,17 +11821,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -11905,17 +11908,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -11992,17 +11995,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -12079,17 +12082,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -12166,17 +12169,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -12253,17 +12256,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -12340,17 +12343,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 9, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -12427,17 +12430,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -12514,17 +12517,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -12601,17 +12604,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -12688,17 +12691,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -12775,17 +12778,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -12862,17 +12865,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -12949,17 +12952,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -13036,17 +13039,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -13123,17 +13126,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -13210,17 +13213,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -13297,17 +13300,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -13384,17 +13387,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -13471,17 +13474,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -13558,17 +13561,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -13645,17 +13648,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -13732,17 +13735,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -13819,17 +13822,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -13906,17 +13909,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -13993,17 +13996,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -14080,17 +14083,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -14167,17 +14170,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 8, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -14254,17 +14257,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -14341,17 +14344,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -14428,17 +14431,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 9 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -14515,17 +14518,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -14602,17 +14605,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -14689,17 +14692,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -14776,17 +14779,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -14863,17 +14866,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -14950,17 +14953,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -15037,17 +15040,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -15124,17 +15127,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -15211,17 +15214,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -15298,17 +15301,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -15385,17 +15388,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -15472,17 +15475,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -15559,17 +15562,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -15646,17 +15649,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -15733,17 +15736,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -15820,17 +15823,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -15907,17 +15910,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -15994,17 +15997,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -16081,17 +16084,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -16168,17 +16171,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -16255,17 +16258,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -16342,17 +16345,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -16429,17 +16432,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -16516,17 +16519,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -16603,17 +16606,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -16690,17 +16693,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -16777,17 +16780,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -16864,17 +16867,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -16951,17 +16954,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -17038,17 +17041,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -17125,17 +17128,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -17212,17 +17215,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -17299,17 +17302,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -17386,17 +17389,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -17473,17 +17476,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -17560,17 +17563,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 7, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -17647,17 +17650,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 7 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -17734,17 +17737,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -17821,17 +17824,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -17908,17 +17911,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -17995,17 +17998,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -18082,17 +18085,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -18169,17 +18172,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -18256,17 +18259,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -18343,17 +18346,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -18430,17 +18433,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -18517,17 +18520,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -18604,17 +18607,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -18691,17 +18694,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -18778,17 +18781,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -18865,17 +18868,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -18952,17 +18955,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -19039,17 +19042,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -19126,17 +19129,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -19213,17 +19216,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -19300,17 +19303,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -19387,17 +19390,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 6, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -19474,17 +19477,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -19561,17 +19564,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -19648,17 +19651,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 8 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -19735,17 +19738,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -19822,17 +19825,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -19909,17 +19912,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -19996,17 +19999,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -20083,17 +20086,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -20170,17 +20173,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -20257,17 +20260,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -20344,17 +20347,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -20431,17 +20434,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -20518,17 +20521,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -20605,17 +20608,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -20692,17 +20695,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -20779,17 +20782,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -20866,17 +20869,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -20953,17 +20956,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -21040,17 +21043,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -21127,17 +21130,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -21214,17 +21217,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -21301,17 +21304,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -21388,17 +21391,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -21475,17 +21478,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -21562,17 +21565,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -21649,17 +21652,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -21736,17 +21739,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -21823,17 +21826,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -21910,17 +21913,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -21997,17 +22000,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -22084,17 +22087,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -22171,17 +22174,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -22258,17 +22261,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -22345,17 +22348,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -22432,17 +22435,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -22519,17 +22522,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -22606,17 +22609,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -22693,17 +22696,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 5, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -22780,17 +22783,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -22867,17 +22870,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 6 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -22954,17 +22957,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 5 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -23041,17 +23044,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -23128,17 +23131,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -23215,17 +23218,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -23302,17 +23305,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -23389,17 +23392,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -23476,17 +23479,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -23563,17 +23566,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -23650,17 +23653,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -23737,17 +23740,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -23824,17 +23827,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -23911,17 +23914,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -23998,17 +24001,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -24085,17 +24088,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -24172,17 +24175,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -24259,17 +24262,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -24346,17 +24349,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -24433,17 +24436,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -24520,17 +24523,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -24607,17 +24610,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -24694,17 +24697,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -24781,17 +24784,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 4, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -24868,17 +24871,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -24955,17 +24958,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -25042,17 +25045,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -25129,17 +25132,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -25216,17 +25219,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -25303,17 +25306,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -25390,17 +25393,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -25477,17 +25480,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -25564,17 +25567,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -25651,17 +25654,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -25738,17 +25741,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -25825,17 +25828,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -25912,17 +25915,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -25999,17 +26002,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -26086,17 +26089,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -26173,17 +26176,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -26260,17 +26263,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -26347,17 +26350,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -26434,17 +26437,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -26521,17 +26524,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -26608,17 +26611,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -26695,17 +26698,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -26782,17 +26785,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -26869,17 +26872,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -26956,17 +26959,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -27043,17 +27046,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -27130,17 +27133,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -27217,17 +27220,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -27304,17 +27307,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -27391,17 +27394,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -27478,17 +27481,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -27565,17 +27568,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -27652,17 +27655,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -27739,17 +27742,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -27826,17 +27829,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -27913,17 +27916,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 3, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -28000,17 +28003,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -28087,17 +28090,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -28174,17 +28177,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -28261,17 +28264,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -28348,17 +28351,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -28435,17 +28438,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -28522,17 +28525,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -28609,17 +28612,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -28696,17 +28699,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -28783,17 +28786,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -28870,17 +28873,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -28957,17 +28960,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -29044,17 +29047,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -29131,17 +29134,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -29218,17 +29221,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -29305,17 +29308,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -29392,17 +29395,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -29479,17 +29482,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -29566,17 +29569,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -29653,17 +29656,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -29740,17 +29743,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 2, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -29827,17 +29830,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -29914,17 +29917,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -30001,17 +30004,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 4 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -30088,17 +30091,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -30175,17 +30178,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -30262,17 +30265,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 3 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -30349,17 +30352,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -30436,17 +30439,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -30523,17 +30526,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -30610,17 +30613,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -30697,17 +30700,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -30784,17 +30787,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -30871,17 +30874,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -30958,17 +30961,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -31045,17 +31048,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -31132,17 +31135,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -31219,17 +31222,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -31306,17 +31309,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -31393,17 +31396,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -31480,17 +31483,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -31567,17 +31570,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -31654,17 +31657,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 2 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -31741,17 +31744,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -31828,17 +31831,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -31915,17 +31918,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -32002,17 +32005,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -32089,17 +32092,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -32176,17 +32179,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -32263,17 +32266,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -32350,17 +32353,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -32437,17 +32440,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -32524,17 +32527,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -32611,17 +32614,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -32698,17 +32701,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -32785,17 +32788,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -32872,17 +32875,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -32959,17 +32962,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -33046,17 +33049,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -33133,17 +33136,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -33220,17 +33223,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -33307,17 +33310,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { @@ -33394,17 +33397,17 @@ "recapCustomerCode": [ "NA" ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], "volumeRange": [ { "gte": 1, "lte": 1 } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } ] }, { diff --git a/test/fixtures/query-acc410f16d2dce9fc5ca6fcd59dc66ca.json b/test/fixtures/query-acc410f16d2dce9fc5ca6fcd59dc66ca.json index 0033b1ee..f9008146 100644 --- a/test/fixtures/query-acc410f16d2dce9fc5ca6fcd59dc66ca.json +++ b/test/fixtures/query-acc410f16d2dce9fc5ca6fcd59dc66ca.json @@ -1,5 +1,5 @@ { - "took": 7, + "took": 9, "timed_out": false, "_shards": { "total": 2, @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.631943, + "max_score": 15.734043, "hits": [ { "_index": "resources-2024-10-22", "_id": "b13966759", - "_score": 15.631943, + "_score": 15.734043, "_source": { "extent": [ "418 p. : ill., facsims., ports. ;" @@ -85,6 +85,9 @@ "createdYear": [ 1968 ], + "buildingLocationIds": [ + "ma" + ], "parallelTitle": [ "‏ספר חורוסטוב = Chrostkow book" ], diff --git a/test/fixtures/query-adf9fb0cb6b2ddbf8a07ab7abd2a716d.json b/test/fixtures/query-adf9fb0cb6b2ddbf8a07ab7abd2a716d.json index 829c2e0d..a320787e 100644 --- a/test/fixtures/query-adf9fb0cb6b2ddbf8a07ab7abd2a716d.json +++ b/test/fixtures/query-adf9fb0cb6b2ddbf8a07ab7abd2a716d.json @@ -1,5 +1,5 @@ { - "took": 52, + "took": 67, "timed_out": false, "_shards": { "total": 2, @@ -17,7 +17,7 @@ { "_index": "resources-2024-10-22", "_id": "b11826883", - "_score": 1969.9161, + "_score": 1985.5239, "_source": { "extent": [ "v. : ill. ;" @@ -89,15 +89,19 @@ "createdYear": [ 1965 ], + "buildingLocationIds": [ + "rc", + "ma" + ], "dateEndString": [ "9999" ], - "title": [ - "Furniture history : the journal of the Furniture History Society." - ], "type": [ "nypl:Item" ], + "title": [ + "Furniture history : the journal of the Furniture History Society." + ], "shelfMark": [ "JQL 08-18" ], @@ -122,9 +126,6 @@ "dateStartYear": [ 1965 ], - "idOclc": [ - "1570335" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -155,6 +156,9 @@ "value": "(WaOLN)nyp1832956" } ], + "idOclc": [ + "1570335" + ], "popularity": 62, "dateEndYear": [ 9999 @@ -517,22 +521,22 @@ "placeOfPublication": [ "[London]" ], + "titleAlt": [ + "Furnit. hist.", + "Furniture history" + ], "issuance": [ { "id": "urn:biblevel:s", "label": "serial" } ], - "titleAlt": [ - "Furnit. hist.", - "Furniture history" - ], "dimensions": [ "25 cm." ] }, "sort": [ - 1969.9161, + 1985.5239, "b11826883" ], "inner_hits": { @@ -553,21 +557,9 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -577,11 +569,36 @@ "lte": "2023" } ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JQL 08-18 v. 59 (2023)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JQL 08-18 v. 59 (2023)" + }, + { + "type": "bf:Barcode", + "value": "33433076530082" + } + ], "enumerationChronology": [ "v. 59 (2023)" ], - "enumerationChronology_sort": [ - " 59-2023" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } ], "formatLiteral": [ "Text" @@ -592,24 +609,13 @@ "label": "Offsite" } ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433076530082" - ], - "identifier": [ - "urn:shelfmark:JQL 08-18 v. 59 (2023)", - "urn:barcode:33433076530082" + "recapCustomerCode": [ + "NA" ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 59 (2023)", - "type": "bf:ShelfMark" - }, + "volumeRange": [ { - "value": "33433076530082", - "type": "bf:Barcode" + "gte": 59, + "lte": 59 } ], "owner": [ @@ -618,41 +624,39 @@ "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" } ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 59 (2023)", + "urn:barcode:33433076530082" ], "physicalLocation": [ "JQL 08-18" ], - "recapCustomerCode": [ - "NA" + "shelfMark_sort": "aJQL 08-18 v. 000059 (2023)", + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 59-2023" + ], + "uri": "i40673104", + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433076530082" + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" ], "requestable": [ true ], - "shelfMark": [ - "JQL 08-18 v. 59 (2023)" - ], - "shelfMark_sort": "aJQL 08-18 v. 000059 (2023)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 59, - "lte": 59 - } - ], - "uri": "i40673104" + ] }, "sort": [ " 59-2023" @@ -667,70 +671,70 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], + "shelfMark_sort": "aJQL 08-000018", "dateRange": [ { "gte": "2022-01-01", "lte": "2022-01-01" } ], - "enumerationChronology": [ - "No. 58 (2022)" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:na||Not available" + ], + "volumeRaw": [ + "No. 58" ], "enumerationChronology_sort": [ " 58-2022-01-01" ], - "formatLiteral": [ - "Text" + "type": [ + "nypl:CheckinCardItem" ], - "holdingLocation": [ + "shelfMark": [ + "JQL 08-18" + ], + "uri": "i-h1066822-0", + "identifierV2": [ { - "id": "loc:mab", - "label": "Schwarzman Building - Art & Architecture Room 300" + "type": "bf:ShelfMark", + "value": "JQL 08-18" } ], "holdingLocation_packed": [ "loc:mab||Schwarzman Building - Art & Architecture Room 300" ], - "identifierV2": [ + "enumerationChronology": [ + "No. 58 (2022)" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ { - "value": "JQL 08-18", - "type": "bf:ShelfMark" + "id": "loc:mab", + "label": "Schwarzman Building - Art & Architecture Room 300" } ], - "shelfMark": [ - "JQL 08-18" - ], - "shelfMark_sort": "aJQL 08-000018", "status": [ { "id": "status:na", "label": "Not available" } ], - "status_packed": [ - "status:na||Not available" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1066822-0", "volumeRange": [ { "gte": 58, "lte": 58 } - ], - "volumeRaw": [ - "No. 58" ] }, "sort": [ @@ -746,21 +750,9 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -770,11 +762,36 @@ "lte": "2022" } ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JQL 08-18 v. 58 (2022)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JQL 08-18 v. 58 (2022)" + }, + { + "type": "bf:Barcode", + "value": "33433076543143" + } + ], "enumerationChronology": [ "v. 58 (2022)" ], - "enumerationChronology_sort": [ - " 58-2022" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } ], "formatLiteral": [ "Text" @@ -785,24 +802,13 @@ "label": "Offsite" } ], - "holdingLocation_packed": [ - "loc:rcmb2||Offsite" - ], - "idBarcode": [ - "33433076543143" - ], - "identifier": [ - "urn:shelfmark:JQL 08-18 v. 58 (2022)", - "urn:barcode:33433076543143" + "recapCustomerCode": [ + "NA" ], - "identifierV2": [ - { - "value": "JQL 08-18 v. 58 (2022)", - "type": "bf:ShelfMark" - }, + "volumeRange": [ { - "value": "33433076543143", - "type": "bf:Barcode" + "gte": 58, + "lte": 58 } ], "owner": [ @@ -811,41 +817,39 @@ "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" } ], - "owner_packed": [ - "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" + "identifier": [ + "urn:shelfmark:JQL 08-18 v. 58 (2022)", + "urn:barcode:33433076543143" ], "physicalLocation": [ "JQL 08-18" ], - "recapCustomerCode": [ - "NA" + "shelfMark_sort": "aJQL 08-18 v. 000058 (2022)", + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 58-2022" + ], + "uri": "i39962833", + "holdingLocation_packed": [ + "loc:rcmb2||Offsite" + ], + "idBarcode": [ + "33433076543143" + ], + "owner_packed": [ + "orgs:1110||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Art & Architecture Collection" ], "requestable": [ true ], - "shelfMark": [ - "JQL 08-18 v. 58 (2022)" - ], - "shelfMark_sort": "aJQL 08-18 v. 000058 (2022)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 58, - "lte": 58 - } - ], - "uri": "i39962833" + ] }, "sort": [ " 58-2022" diff --git a/test/fixtures/query-aff8b073578be5a837b2d529f2eb89aa.json b/test/fixtures/query-aff8b073578be5a837b2d529f2eb89aa.json index 497b8492..4531477e 100644 --- a/test/fixtures/query-aff8b073578be5a837b2d529f2eb89aa.json +++ b/test/fixtures/query-aff8b073578be5a837b2d529f2eb89aa.json @@ -1,5 +1,5 @@ { - "took": 6, + "took": 11, "timed_out": false, "_shards": { "total": 2, @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.631155, + "max_score": 15.73737, "hits": [ { "_index": "resources-2024-10-22", "_id": "b10022734", - "_score": 15.631155, + "_score": 15.73737, "_source": { "extent": [ "xiv, 381 p., [16] leaves of plates : ill. ;" diff --git a/test/fixtures/query-b302e35ec2327d3bb996a1c5007bf06d.json b/test/fixtures/query-b302e35ec2327d3bb996a1c5007bf06d.json index fc305afa..fb2e3478 100644 --- a/test/fixtures/query-b302e35ec2327d3bb996a1c5007bf06d.json +++ b/test/fixtures/query-b302e35ec2327d3bb996a1c5007bf06d.json @@ -1,5 +1,5 @@ { - "took": 3, + "took": 49, "timed_out": false, "_shards": { "total": 2, diff --git a/test/fixtures/query-b54f66f3a6910d5defa8e24cbe8a511a.json b/test/fixtures/query-b54f66f3a6910d5defa8e24cbe8a511a.json index f077f2b3..f0470d23 100644 --- a/test/fixtures/query-b54f66f3a6910d5defa8e24cbe8a511a.json +++ b/test/fixtures/query-b54f66f3a6910d5defa8e24cbe8a511a.json @@ -1,5 +1,5 @@ { - "took": 21, + "took": 23, "timed_out": false, "_shards": { "total": 2, @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.120333, + "max_score": 14.683935, "hits": [ { "_index": "resources-2024-10-22", "_id": "b10833141", - "_score": 15.120333, + "_score": 14.683935, "_source": { "extent": [ "volumes : illustrations ;" @@ -167,7 +167,7 @@ "value": "(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" } ], - "popularity": 1039, + "popularity": 1042, "uniformTitle": [ "New Yorker (New York, N.Y. : 1925)" ], @@ -1405,7 +1405,7 @@ "shelfMark": [ "*DA+ (New Yorker)" ], - "status": "Expected" + "status": "Arrived" }, { "coverage": "Vol. 100 No. 37 (Nov. 11, 2024)", @@ -1414,7 +1414,7 @@ "shelfMark": [ "*DA+ (New Yorker)" ], - "status": "Expected" + "status": "Arrived" }, { "coverage": "Vol. 100 No. 38 (Nov. 18, 2024)", @@ -1423,7 +1423,7 @@ "shelfMark": [ "*DA+ (New Yorker)" ], - "status": "Expected" + "status": "Arrived" }, { "coverage": "Vol. 100 No. 39 (Nov. 25, 2024)", @@ -1482,7 +1482,7 @@ ], "holdingStatement": [ "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--", - "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26)" + "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26); v. 100, no. 38 (2024-11-18)" ], "identifier": [ { @@ -1511,7 +1511,7 @@ "uri": "h1144777" } ], - "updatedAt": 1729702613931, + "updatedAt": 1731688335474, "publicationStatement": [ "New York : F-R Pub. Corp., 1925-", "[New York] : D. Carey", @@ -3811,7 +3811,7 @@ "NA" ], "requestable": [ - true + false ], "shelfMark": [ "*DA+ (New Yorker) v. 93 (Feb. 13-Apr. 24, 2017)" @@ -3819,12 +3819,12 @@ "shelfMark_sort": "a*DA+ (New Yorker) v. 000093 (Feb. 13-Apr. 24, 2017)", "status": [ { - "id": "status:a", - "label": "Available" + "id": "status:oh", + "label": "On Holdshelf" } ], "status_packed": [ - "status:a||Available" + "status:oh||On Holdshelf" ], "type": [ "bf:Item" @@ -12854,18 +12854,22 @@ }, { "key": "status:co||Loaned", - "doc_count": 11 + "doc_count": 12 }, { "key": "status:na||Not available", - "doc_count": 10 + "doc_count": 7 + }, + { + "key": "status:t||In transit", + "doc_count": 2 }, { "key": "status:m||Missing", "doc_count": 1 }, { - "key": "status:t||In transit", + "key": "status:oh||On Holdshelf", "doc_count": 1 } ] diff --git a/test/fixtures/query-bf6caf242f418048cb7522997f55f4fa.json b/test/fixtures/query-bf6caf242f418048cb7522997f55f4fa.json index 8001d037..36412fcc 100644 --- a/test/fixtures/query-bf6caf242f418048cb7522997f55f4fa.json +++ b/test/fixtures/query-bf6caf242f418048cb7522997f55f4fa.json @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.631159, + "max_score": 15.73737, "hits": [ { "_index": "resources-2024-10-22", "_id": "b10022950", - "_score": 15.631159, + "_score": 15.73737, "_source": { "extent": [ "224 p. ;" @@ -47,6 +47,9 @@ "createdYear": [ 1974 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Religion--love or hate?" ], @@ -167,79 +170,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "identifier": [ + "urn:shelfmark:*PGZ 81-1452", + "urn:barcode:33433103848853" + ], + "m2CustomerCode": [ + "XH" + ], + "physicalLocation": [ + "*PGZ 81-1452" ], + "shelfMark_sort": "a*PGZ 81-001452", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:maf92", - "label": "Schwarzman Building M2 - Dorot Jewish Division Room 111" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:maf92||Schwarzman Building M2 - Dorot Jewish Division Room 111" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433103848853" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*PGZ 81-1452", - "urn:barcode:33433103848853" + "shelfMark": [ + "*PGZ 81-1452" ], + "uri": "i14749981", "identifierV2": [ { - "value": "*PGZ 81-1452", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*PGZ 81-1452" }, { - "value": "33433103848853", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433103848853" } ], - "m2CustomerCode": [ - "XH" + "holdingLocation_packed": [ + "loc:maf92||Schwarzman Building M2 - Dorot Jewish Division Room 111" ], - "physicalLocation": [ - "*PGZ 81-1452" + "idBarcode": [ + "33433103848853" ], "requestable": [ true ], - "shelfMark": [ - "*PGZ 81-1452" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:maf92", + "label": "Schwarzman Building M2 - Dorot Jewish Division Room 111" + } ], - "shelfMark_sort": "a*PGZ 81-001452", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14749981" + ] }, "sort": [ null diff --git a/test/fixtures/query-c178ba58a9de32d9c6274c5a805d1c03.json b/test/fixtures/query-c178ba58a9de32d9c6274c5a805d1c03.json index 40e7ead6..aaa863f5 100644 --- a/test/fixtures/query-c178ba58a9de32d9c6274c5a805d1c03.json +++ b/test/fixtures/query-c178ba58a9de32d9c6274c5a805d1c03.json @@ -1,5 +1,5 @@ { - "took": 14, + "took": 9, "timed_out": false, "_shards": { "total": 2, @@ -17,7 +17,7 @@ { "_index": "resources-2024-10-22", "_id": "b22144813", - "_score": 463.48425, + "_score": 468.03476, "_source": { "extent": [ "1234, [1] pages, x leaves : illustrations ;", @@ -46,6 +46,10 @@ "createdYear": [ 201 ], + "buildingLocationIds": [ + "ma", + "rc" + ], "parallelTitle": [ "‏כותר שאינו באותיות לטינית = зглавие руссий." ], @@ -739,7 +743,7 @@ ] }, "sort": [ - 463.48425, + 468.03476, "b22144813" ], "inner_hits": { @@ -760,97 +764,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v.1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:k||Check with staff" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "uri": "i37857771", + "identifierV2": [ { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + }, + { + "type": "bf:Barcode", + "value": "3333333333" } ], "holdingLocation_packed": [ "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" ], + "enumerationChronology": [ + "v.1" + ], "idBarcode": [ "3333333333" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ false ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "status": [ { "id": "status:k", "label": "Check with staff" } ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i37857771" + ] }, "sort": [ " 1-" @@ -865,88 +869,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1103", + "label": "Dorot Jewish Division" } ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" ], - "enumerationChronology": [ - "nothing" + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "catalogItemType_packed": [ + "catalogItemType:3||serial" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmf2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "44455533322211" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" ], + "uri": "i37857772", "identifierV2": [ { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" }, { - "value": "44455533322211", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "44455533322211" } ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "enumerationChronology": [ + "nothing" + ], + "idBarcode": [ + "44455533322211" ], "owner_packed": [ "orgs:1103||Dorot Jewish Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ true ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" + ] }, "sort": [ null diff --git a/test/fixtures/query-c2444ae2e0ac7599c9104c10e840ee1a.json b/test/fixtures/query-c2444ae2e0ac7599c9104c10e840ee1a.json index 683614a9..4e4afd36 100644 --- a/test/fixtures/query-c2444ae2e0ac7599c9104c10e840ee1a.json +++ b/test/fixtures/query-c2444ae2e0ac7599c9104c10e840ee1a.json @@ -1,5 +1,5 @@ { - "took": 596, + "took": 700, "timed_out": false, "_shards": { "total": 2, @@ -332,6 +332,9 @@ "createdYear": [ 1989 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Scottish islands" ], @@ -476,79 +479,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:JFF 89-526", + "urn:barcode:33433050409147" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "JFF 89-526" + ], + "shelfMark_sort": "aJFF 89-000526", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433050409147" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFF 89-526", - "urn:barcode:33433050409147" + "shelfMark": [ + "JFF 89-526" ], + "uri": "i13783780", "identifierV2": [ { - "value": "JFF 89-526", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFF 89-526" }, { - "value": "33433050409147", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433050409147" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "JFF 89-526" + "idBarcode": [ + "33433050409147" ], "requestable": [ true ], - "shelfMark": [ - "JFF 89-526" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "aJFF 89-000526", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783780" + ] }, "sort": [ null @@ -608,6 +611,9 @@ "createdYear": [ 1965 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Mutaṟkuṟaḷ uvamai." ], @@ -748,88 +754,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1934", + "urn:barcode:33433061301556" + ], + "physicalLocation": [ + "*OLB 84-1934" + ], + "shelfMark_sort": "a*OLB 84-001934", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301556" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1934", - "urn:barcode:33433061301556" + "shelfMark": [ + "*OLB 84-1934" ], + "uri": "i13783781", "identifierV2": [ { - "value": "*OLB 84-1934", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1934" }, { - "value": "33433061301556", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301556" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301556" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1934" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1934" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001934", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783781" + ] }, "sort": [ null @@ -890,6 +896,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom" ], @@ -1027,88 +1036,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-336", + "urn:barcode:33433032711909" + ], + "physicalLocation": [ + "JMF 83-336" + ], + "shelfMark_sort": "aJMF 83-000336", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032711909" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-336", - "urn:barcode:33433032711909" + "shelfMark": [ + "JMF 83-336" ], + "uri": "i10942022", "identifierV2": [ { - "value": "JMF 83-336", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-336" }, { - "value": "33433032711909", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032711909" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032711909" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-336" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-336" - ], - "shelfMark_sort": "aJMF 83-000336", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" + "formatLiteral": [ + "Notated music" ], - "uri": "i10942022" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -1169,6 +1178,9 @@ "createdYear": [ 1968 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tajdīd al-tafkīr al-dīnī fī al-Islām" ], @@ -1309,88 +1321,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OGC 84-1984", + "urn:barcode:33433022691665" + ], + "physicalLocation": [ + "*OGC 84-1984" + ], + "shelfMark_sort": "a*OGC 84-001984", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433022691665" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGC 84-1984", - "urn:barcode:33433022691665" + "shelfMark": [ + "*OGC 84-1984" ], + "uri": "i12540039", "identifierV2": [ { - "value": "*OGC 84-1984", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGC 84-1984" }, { - "value": "33433022691665", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433022691665" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433022691665" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGC 84-1984" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGC 84-1984" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGC 84-001984", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540039" + ] }, "sort": [ null @@ -1447,6 +1459,9 @@ "createdYear": [ 1981 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Due studi per chitarra" ], @@ -1585,88 +1600,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-276", + "urn:barcode:33433032883591" + ], + "physicalLocation": [ + "JMG 83-276" + ], + "shelfMark_sort": "aJMG 83-000276", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032883591" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-276", - "urn:barcode:33433032883591" + "shelfMark": [ + "JMG 83-276" ], + "uri": "i10942023", "identifierV2": [ { - "value": "JMG 83-276", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-276" }, { - "value": "33433032883591", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032883591" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032883591" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-276" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-276" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000276", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942023" + ] }, "sort": [ null @@ -1713,6 +1728,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Aṇṇāviṉ ciṟukataikaḷ." ], @@ -1847,88 +1865,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1986", + "urn:barcode:33433061301689" + ], + "physicalLocation": [ + "*OLB 84-1986" + ], + "shelfMark_sort": "a*OLB 84-001986", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301689" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1986", - "urn:barcode:33433061301689" + "shelfMark": [ + "*OLB 84-1986" ], + "uri": "i13783782", "identifierV2": [ { - "value": "*OLB 84-1986", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1986" }, { - "value": "33433061301689", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301689" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "*OLB 84-1986" + "idBarcode": [ + "33433061301689" ], - "recapCustomerCode": [ - "NA" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1986" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001986", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783782" + ] }, "sort": [ null @@ -1988,6 +2006,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Miniaturen II : 13 kleine Klavierstücke" ], @@ -2130,88 +2151,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-278", + "urn:barcode:33433032883617" + ], + "physicalLocation": [ + "JMG 83-278" + ], + "shelfMark_sort": "aJMG 83-000278", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032883617" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-278", - "urn:barcode:33433032883617" + "shelfMark": [ + "JMG 83-278" ], + "uri": "i10942024", "identifierV2": [ { - "value": "JMG 83-278", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-278" }, { - "value": "33433032883617", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032883617" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032883617" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-278" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-278" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000278", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942024" + ] }, "sort": [ null @@ -2266,6 +2287,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." ], @@ -2406,88 +2430,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1938", + "urn:barcode:33433061301598" + ], + "physicalLocation": [ + "*OLB 84-1938" + ], + "shelfMark_sort": "a*OLB 84-001938", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301598" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1938", - "urn:barcode:33433061301598" + "shelfMark": [ + "*OLB 84-1938" ], + "uri": "i13783783", "identifierV2": [ { - "value": "*OLB 84-1938", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1938" }, { - "value": "33433061301598", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301598" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301598" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1938" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1938" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001938", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783783" + ] }, "sort": [ null @@ -2535,6 +2559,9 @@ "dateEndString": [ "1982" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Passie en pasen : suite voor orgel, opus 50" ], @@ -2664,88 +2691,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-279", + "urn:barcode:33433032883625" + ], + "physicalLocation": [ + "JMG 83-279" + ], + "shelfMark_sort": "aJMG 83-000279", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032883625" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-279", - "urn:barcode:33433032883625" + "shelfMark": [ + "JMG 83-279" ], + "uri": "i10942025", "identifierV2": [ { - "value": "JMG 83-279", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-279" }, { - "value": "33433032883625", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032883625" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032883625" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-279" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-279" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000279", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942025" + ] }, "sort": [ null @@ -2800,6 +2827,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" ], @@ -2926,88 +2956,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFS 84-1997", + "urn:barcode:33433014514719" + ], + "physicalLocation": [ + "*OFS 84-1997" + ], + "shelfMark_sort": "a*OFS 84-001997", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433014514719" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFS 84-1997", - "urn:barcode:33433014514719" + "shelfMark": [ + "*OFS 84-1997" ], + "uri": "i10000003", "identifierV2": [ { - "value": "*OFS 84-1997", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFS 84-1997" }, { - "value": "33433014514719", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433014514719" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014514719" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFS 84-1997" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFS 84-1997" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFS 84-001997", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000003" + ] }, "sort": [ null @@ -3063,6 +3093,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Disko Treff 1 : Klavier." ], @@ -3189,88 +3222,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-366", + "urn:barcode:33433032712204" + ], + "physicalLocation": [ + "JMF 83-366" + ], + "shelfMark_sort": "aJMF 83-000366", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032712204" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-366", - "urn:barcode:33433032712204" + "shelfMark": [ + "JMF 83-366" ], + "uri": "i10942026", "identifierV2": [ { - "value": "JMF 83-366", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-366" }, { - "value": "33433032712204", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032712204" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032712204" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-366" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-366" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000366", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942026" + ] }, "sort": [ null @@ -3327,6 +3360,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Waḥdah al-Islāmīyah : aw al-taqrīb bayna al-madhāhib al-sabʻah, wathāʼiq khaṭīrah wa-buḥūth ʻilmīyah li-aʻāẓim ʻulamāʼ al-Muslimīn min al-sunnah wa-al-shīʻah" ], @@ -3457,88 +3493,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "identifier": [ + "urn:shelfmark:*OGC 84-1996", + "urn:barcode:33433022691780" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "*OGC 84-1996" ], - "holdingLocation": [ + "shelfMark_sort": "a*OGC 84-001996", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433022691780" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGC 84-1996", - "urn:barcode:33433022691780" + "shelfMark": [ + "*OGC 84-1996" ], + "uri": "i12540040", "identifierV2": [ { - "value": "*OGC 84-1996", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGC 84-1996" }, { - "value": "33433022691780", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433022691780" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433022691780" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGC 84-1996" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGC 84-1996" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGC 84-001996", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540040" + ] }, "sort": [ null @@ -3603,6 +3639,7 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [], "title": [ "Suite no. 1 : 1977" ], @@ -3777,6 +3814,9 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Nalla Kuṟuntokaiyil nāṉilam." ], @@ -3914,88 +3954,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1937", + "urn:barcode:33433061301580" + ], + "physicalLocation": [ + "*OLB 84-1937" + ], + "shelfMark_sort": "a*OLB 84-001937", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301580" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1937", - "urn:barcode:33433061301580" + "shelfMark": [ + "*OLB 84-1937" ], + "uri": "i13783785", "identifierV2": [ { - "value": "*OLB 84-1937", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1937" }, { - "value": "33433061301580", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301580" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301580" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1937" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1937" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001937", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783785" + ] }, "sort": [ null @@ -4057,6 +4097,9 @@ "createdYear": [ 1981 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Lettre du Mexique : pour baryton et piano, 1942" ], @@ -4187,88 +4230,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-395", + "urn:barcode:33433032735007" + ], + "physicalLocation": [ + "JMG 83-395" + ], + "shelfMark_sort": "aJMG 83-000395", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032735007" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-395", - "urn:barcode:33433032735007" + "shelfMark": [ + "JMG 83-395" ], + "uri": "i10942027", "identifierV2": [ { - "value": "JMG 83-395", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-395" }, { - "value": "33433032735007", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032735007" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032735007" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-395" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-395" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000395", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942027" + ] }, "sort": [ null @@ -4324,6 +4367,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" ], @@ -4461,88 +4507,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFX 84-1995", + "urn:barcode:33433002031718" + ], + "physicalLocation": [ + "*OFX 84-1995" + ], + "shelfMark_sort": "a*OFX 84-001995", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002031718" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFX 84-1995", - "urn:barcode:33433002031718" + "shelfMark": [ + "*OFX 84-1995" ], + "uri": "i10000004", "identifierV2": [ { - "value": "*OFX 84-1995", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFX 84-1995" }, { - "value": "33433002031718", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002031718" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002031718" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFX 84-1995" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFX 84-1995" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFX 84-001995", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000004" + ] }, "sort": [ null @@ -4597,6 +4643,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Zwölf Walzer und ein Epilog : für Klavier" ], @@ -4735,88 +4784,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-111", + "urn:barcode:33433032845053" + ], + "physicalLocation": [ + "JMG 83-111" + ], + "shelfMark_sort": "aJMG 83-000111", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032845053" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-111", - "urn:barcode:33433032845053" + "shelfMark": [ + "JMG 83-111" ], + "uri": "i10942028", "identifierV2": [ { - "value": "JMG 83-111", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-111" }, { - "value": "33433032845053", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032845053" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032845053" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-111" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-111" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000111", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942028" + ] }, "sort": [ null @@ -4866,6 +4915,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tolkāppiyam." ], @@ -5009,100 +5061,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1936 v. 1", + "urn:barcode:33433061301572" + ], + "physicalLocation": [ + "*OLB 84-1936" + ], + "shelfMark_sort": "a*OLB 84-1936 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLB 84-1936 v. 1" + ], + "uri": "i13783786", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLB 84-1936 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433061301572" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433061301572" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1936 v. 1", - "urn:barcode:33433061301572" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLB 84-1936 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433061301572", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLB 84-1936" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLB 84-1936 v. 1" - ], - "shelfMark_sort": "a*OLB 84-1936 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i13783786" + ] }, "sort": [ " 1-" @@ -5163,6 +5215,9 @@ "createdYear": [ 1978 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Aurora : sinfonischer Prolog : Partitur" ], @@ -5294,88 +5349,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-113", + "urn:barcode:33433032845079" + ], + "physicalLocation": [ + "JMG 83-113" + ], + "shelfMark_sort": "aJMG 83-000113", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032845079" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-113", - "urn:barcode:33433032845079" + "shelfMark": [ + "JMG 83-113" ], + "uri": "i10942029", "identifierV2": [ { - "value": "JMG 83-113", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-113" }, { - "value": "33433032845079", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032845079" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032845079" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-113" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-113" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000113", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942029" + ] }, "sort": [ null @@ -5431,6 +5486,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." ], @@ -5578,88 +5636,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1935", + "urn:barcode:33433061301564" + ], + "physicalLocation": [ + "*OLB 84-1935" + ], + "shelfMark_sort": "a*OLB 84-001935", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301564" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1935", - "urn:barcode:33433061301564" + "shelfMark": [ + "*OLB 84-1935" ], + "uri": "i13783787", "identifierV2": [ { - "value": "*OLB 84-1935", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1935" }, { - "value": "33433061301564", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301564" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301564" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1935" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1935" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001935", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783787" + ] }, "sort": [ null @@ -5725,6 +5783,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Musica sacra" ], @@ -5856,88 +5917,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-38", + "urn:barcode:33433032709028" + ], + "physicalLocation": [ + "JMF 83-38" + ], + "shelfMark_sort": "aJMF 83-000038", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032709028" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-38", - "urn:barcode:33433032709028" + "shelfMark": [ + "JMF 83-38" ], + "uri": "i10942030", "identifierV2": [ { - "value": "JMF 83-38", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-38" }, { - "value": "33433032709028", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032709028" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032709028" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-38" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-38" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000038", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942030" + ] }, "sort": [ null @@ -5996,6 +6057,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" ], @@ -6135,88 +6199,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFK 84-1944", + "urn:barcode:33433005548676" + ], + "physicalLocation": [ + "*OFK 84-1944" + ], + "shelfMark_sort": "a*OFK 84-001944", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433005548676" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFK 84-1944", - "urn:barcode:33433005548676" + "shelfMark": [ + "*OFK 84-1944" ], + "uri": "i10000005", "identifierV2": [ { - "value": "*OFK 84-1944", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFK 84-1944" }, { - "value": "33433005548676", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433005548676" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005548676" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFK 84-1944" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFK 84-1944" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFK 84-001944", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000005" + ] }, "sort": [ null @@ -6259,6 +6323,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Drei Sonatinen für Klavier" ], @@ -6394,88 +6461,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-107", + "urn:barcode:33433032709697" + ], + "physicalLocation": [ + "JMF 83-107" + ], + "shelfMark_sort": "aJMF 83-000107", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032709697" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-107", - "urn:barcode:33433032709697" + "shelfMark": [ + "JMF 83-107" ], + "uri": "i10942031", "identifierV2": [ { - "value": "JMF 83-107", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-107" }, { - "value": "33433032709697", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032709697" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032709697" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-107" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-107" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000107", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942031" + ] }, "sort": [ null @@ -6531,6 +6598,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" ], @@ -6668,88 +6738,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "identifier": [ + "urn:shelfmark:*OFX 84-1953", + "urn:barcode:33433002031700" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "*OFX 84-1953" ], - "holdingLocation": [ + "shelfMark_sort": "a*OFX 84-001953", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002031700" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFX 84-1953", - "urn:barcode:33433002031700" + "shelfMark": [ + "*OFX 84-1953" ], + "uri": "i10000006", "identifierV2": [ { - "value": "*OFX 84-1953", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFX 84-1953" }, { - "value": "33433002031700", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002031700" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002031700" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFX 84-1953" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFX 84-1953" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFX 84-001953", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000006" + ] }, "sort": [ null @@ -6792,6 +6862,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Drei kleine Sonaten : für Violine solo" ], @@ -6927,88 +7000,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-95", + "urn:barcode:33433032709572" + ], + "physicalLocation": [ + "JMF 83-95" + ], + "shelfMark_sort": "aJMF 83-000095", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032709572" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-95", - "urn:barcode:33433032709572" + "shelfMark": [ + "JMF 83-95" ], + "uri": "i10942032", "identifierV2": [ { - "value": "JMF 83-95", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-95" }, { - "value": "33433032709572", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032709572" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032709572" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-95" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-95" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000095", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942032" + ] }, "sort": [ null @@ -7068,6 +7141,9 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Vaṃśabhāskara : eka adhyayana" ], @@ -7205,88 +7281,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTM 84-1945", + "urn:barcode:33433011094210" + ], + "physicalLocation": [ + "*OKTM 84-1945" + ], + "shelfMark_sort": "a*OKTM 84-001945", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011094210" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTM 84-1945", - "urn:barcode:33433011094210" + "shelfMark": [ + "*OKTM 84-1945" ], + "uri": "i10942033", "identifierV2": [ { - "value": "*OKTM 84-1945", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTM 84-1945" }, { - "value": "33433011094210", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011094210" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011094210" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTM 84-1945" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKTM 84-1945" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTM 84-001945", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942033" + ] }, "sort": [ null @@ -7346,6 +7422,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Cruor : for organ solo, 1977" ], @@ -7493,31 +7572,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-93", + "urn:barcode:33433032709556" + ], + "physicalLocation": [ + "JMF 83-93" + ], + "shelfMark_sort": "aJMF 83-000093", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JMF 83-93" + ], + "uri": "i10942034", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMF 83-93" + }, + { + "type": "bf:Barcode", + "value": "33433032709556" } ], "holdingLocation_packed": [ @@ -7526,55 +7624,36 @@ "idBarcode": [ "33433032709556" ], - "identifier": [ - "urn:shelfmark:JMF 83-93", - "urn:barcode:33433032709556" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMF 83-93", - "type": "bf:ShelfMark" - }, - { - "value": "33433032709556", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Notated music" ], - "physicalLocation": [ - "JMF 83-93" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NP" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMF 83-93" - ], - "shelfMark_sort": "aJMF 83-000093", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942034" + ] }, "sort": [ null @@ -7640,12 +7719,15 @@ "createdYear": [ 1974 ], - "title": [ - "Uṇādi-koṣaḥ" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Uṇādi-koṣaḥ" + ], "shelfMark": [ "*OKA 84-1931" ], @@ -7676,9 +7758,6 @@ "dateStartYear": [ 1974 ], - "idOclc": [ - "NYPG001000014-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -7705,6 +7784,9 @@ "value": "(WaOLN)nyp0200029" } ], + "idOclc": [ + "NYPG001000014-B" + ], "uniformTitle": [ "Uṇādisūtra." ], @@ -7790,88 +7872,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKA 84-1931", + "urn:barcode:33433012968222" + ], + "physicalLocation": [ + "*OKA 84-1931" + ], + "shelfMark_sort": "a*OKA 84-001931", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433012968222" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKA 84-1931", - "urn:barcode:33433012968222" + "shelfMark": [ + "*OKA 84-1931" ], + "uri": "i10000007", "identifierV2": [ { - "value": "*OKA 84-1931", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKA 84-1931" }, { - "value": "33433012968222", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433012968222" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433012968222" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKA 84-1931" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKA 84-1931" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKA 84-001931", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000007" + ] }, "sort": [ null @@ -7914,6 +7996,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Neun Miniaturen : für Klavier : op. 52" ], @@ -8052,88 +8137,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-17", + "urn:barcode:33433032841631" + ], + "physicalLocation": [ + "JMG 83-17" + ], + "shelfMark_sort": "aJMG 83-000017", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032841631" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-17", - "urn:barcode:33433032841631" + "shelfMark": [ + "JMG 83-17" ], + "uri": "i10942035", "identifierV2": [ { - "value": "JMG 83-17", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-17" }, { - "value": "33433032841631", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032841631" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032841631" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-17" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-17" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000017", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942035" + ] }, "sort": [ null @@ -8191,6 +8276,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Buzurgān-i Jahrum : mushtamil bar sharḥ-i aḥvāl va ā̲sār-i rijāl va sukhanvarān va dānishmandān va khushnivīsān va pizishkān-i Jahrum va Khafr" ], @@ -8318,31 +8406,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*OMP 84-2007", + "urn:barcode:33433013173012" + ], + "physicalLocation": [ + "*OMP 84-2007" + ], + "shelfMark_sort": "a*OMP 84-002007", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Text" + "shelfMark": [ + "*OMP 84-2007" ], - "holdingLocation": [ + "uri": "i10000008", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OMP 84-2007" + }, + { + "type": "bf:Barcode", + "value": "33433013173012" } ], "holdingLocation_packed": [ @@ -8351,55 +8458,36 @@ "idBarcode": [ "33433013173012" ], - "identifier": [ - "urn:shelfmark:*OMP 84-2007", - "urn:barcode:33433013173012" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OMP 84-2007", - "type": "bf:ShelfMark" - }, - { - "value": "33433013173012", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OMP 84-2007" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OMP 84-2007" - ], - "shelfMark_sort": "a*OMP 84-002007", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000008" + ] }, "sort": [ null @@ -8450,6 +8538,9 @@ "createdYear": [ 1981 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Psalm settings" ], @@ -8580,88 +8671,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-59", + "urn:barcode:33433032842035" + ], + "physicalLocation": [ + "JMG 83-59" + ], + "shelfMark_sort": "aJMG 83-000059", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842035" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-59", - "urn:barcode:33433032842035" + "shelfMark": [ + "JMG 83-59" ], + "uri": "i10942036", "identifierV2": [ { - "value": "JMG 83-59", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-59" }, { - "value": "33433032842035", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842035" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842035" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-59" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-59" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000059", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942036" + ] }, "sort": [ null @@ -8723,12 +8814,15 @@ "createdYear": [ 1974 ], - "title": [ - "Brhatkathāślokasaṁgraha : a study" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Brhatkathāślokasaṁgraha : a study" + ], "shelfMark": [ "*OKR 84-2006" ], @@ -8744,12 +8838,12 @@ "idLccn": [ "74903273" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Indian civilization series ; no. 4" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Guṇāḍhya", "Agrawala, Vasudeva Sharana", @@ -8761,9 +8855,6 @@ "dateStartYear": [ 1974 ], - "idOclc": [ - "NYPG001000016-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -8790,6 +8881,9 @@ "value": "(WaOLN)nyp0200033" } ], + "idOclc": [ + "NYPG001000016-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -8869,88 +8963,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKR 84-2006", + "urn:barcode:33433011528696" + ], + "physicalLocation": [ + "*OKR 84-2006" + ], + "shelfMark_sort": "a*OKR 84-002006", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011528696" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKR 84-2006", - "urn:barcode:33433011528696" + "shelfMark": [ + "*OKR 84-2006" ], + "uri": "i10000009", "identifierV2": [ { - "value": "*OKR 84-2006", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKR 84-2006" }, { - "value": "33433011528696", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011528696" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011528696" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKR 84-2006" + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKR 84-2006" - ], - "shelfMark_sort": "a*OKR 84-002006", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000009" + ] }, "sort": [ null @@ -9005,6 +9099,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -9108,15 +9205,15 @@ "placeOfPublication": [ "Amsterdam" ], + "titleAlt": [ + "Serenade" + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Serenade" - ], "tableOfContents": [ "Varianten -- Nocturne -- Toccata I -- Intermezzo -- Toccata II." ], @@ -9282,6 +9379,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Srīnārāyaṇatīrthayatīndracaritram[sic]" ], @@ -9419,88 +9519,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKB 84-1928", + "urn:barcode:33433058548433" + ], + "physicalLocation": [ + "*OKB 84-1928" + ], + "shelfMark_sort": "a*OKB 84-001928", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058548433" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKB 84-1928", - "urn:barcode:33433058548433" + "shelfMark": [ + "*OKB 84-1928" ], + "uri": "i12858032", "identifierV2": [ { - "value": "*OKB 84-1928", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKB 84-1928" }, { - "value": "33433058548433", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058548433" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058548433" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKB 84-1928" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKB 84-1928" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKB 84-001928", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12858032" + ] }, "sort": [ null @@ -9550,6 +9650,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Eight studies for guitar : in form of a suite : 1979" ], @@ -9682,88 +9785,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-5", + "urn:barcode:33433032841482" + ], + "physicalLocation": [ + "JMG 83-5" + ], + "shelfMark_sort": "aJMG 83-000005", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032841482" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-5", - "urn:barcode:33433032841482" + "shelfMark": [ + "JMG 83-5" ], + "uri": "i10942040", "identifierV2": [ { - "value": "JMG 83-5", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-5" }, { - "value": "33433032841482", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032841482" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032841482" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-5" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-5" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000005", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942040" + ] }, "sort": [ null @@ -9815,6 +9918,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" ], @@ -9952,31 +10058,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKP 84-1932", + "urn:barcode:33433058153572" + ], + "physicalLocation": [ + "*OKP 84-1932" + ], + "shelfMark_sort": "a*OKP 84-001932", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OKP 84-1932" + ], + "uri": "i13783788", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKP 84-1932" + }, { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:Barcode", + "value": "33433058153572" } ], "holdingLocation_packed": [ @@ -9985,55 +10110,36 @@ "idBarcode": [ "33433058153572" ], - "identifier": [ - "urn:shelfmark:*OKP 84-1932", - "urn:barcode:33433058153572" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OKP 84-1932", - "type": "bf:ShelfMark" - }, - { - "value": "33433058153572", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OKP 84-1932" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKP 84-1932" - ], - "shelfMark_sort": "a*OKP 84-001932", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783788" + ] }, "sort": [ null @@ -10076,6 +10182,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Five sonatas for pianoforte" ], @@ -10216,88 +10325,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-66", + "urn:barcode:33433032842100" + ], + "physicalLocation": [ + "JMG 83-66" + ], + "shelfMark_sort": "aJMG 83-000066", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842100" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-66", - "urn:barcode:33433032842100" + "shelfMark": [ + "JMG 83-66" ], + "uri": "i10942041", "identifierV2": [ { - "value": "JMG 83-66", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-66" }, { - "value": "33433032842100", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842100" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842100" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-66" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-66" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000066", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942041" + ] }, "sort": [ null @@ -10347,6 +10456,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tiru. Vi. Kaliyāṇacuntaraṉār." ], @@ -10487,88 +10599,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1947", + "urn:barcode:33433061301622" + ], + "physicalLocation": [ + "*OLB 84-1947" + ], + "shelfMark_sort": "a*OLB 84-001947", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301622" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1947", - "urn:barcode:33433061301622" + "shelfMark": [ + "*OLB 84-1947" ], + "uri": "i13783789", "identifierV2": [ { - "value": "*OLB 84-1947", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1947" }, { - "value": "33433061301622", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301622" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301622" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1947" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1947" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001947", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783789" + ] }, "sort": [ null @@ -10619,6 +10731,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Encounter" ], @@ -10759,31 +10874,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "identifier": [ + "urn:shelfmark:JMF 83-66", + "urn:barcode:33433032709291" + ], + "physicalLocation": [ + "JMF 83-66" + ], + "shelfMark_sort": "aJMF 83-000066", + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Notated music" + "shelfMark": [ + "JMF 83-66" ], - "holdingLocation": [ + "uri": "i10942042", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMF 83-66" + }, + { + "type": "bf:Barcode", + "value": "33433032709291" } ], "holdingLocation_packed": [ @@ -10792,55 +10926,36 @@ "idBarcode": [ "33433032709291" ], - "identifier": [ - "urn:shelfmark:JMF 83-66", - "urn:barcode:33433032709291" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMF 83-66", - "type": "bf:ShelfMark" - }, - { - "value": "33433032709291", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Notated music" ], - "physicalLocation": [ - "JMF 83-66" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NP" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMF 83-66" - ], - "shelfMark_sort": "aJMF 83-000066", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942042" + ] }, "sort": [ null @@ -10894,6 +11009,9 @@ "dateEndString": [ "1972" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." ], @@ -11038,88 +11156,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKN 84-1926", + "urn:barcode:33433058618392" + ], + "physicalLocation": [ + "*OKN 84-1926" + ], + "shelfMark_sort": "a*OKN 84-001926", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058618392" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKN 84-1926", - "urn:barcode:33433058618392" + "shelfMark": [ + "*OKN 84-1926" ], + "uri": "i13783790", "identifierV2": [ { - "value": "*OKN 84-1926", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKN 84-1926" }, { - "value": "33433058618392", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058618392" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058618392" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKN 84-1926" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKN 84-1926" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKN 84-001926", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783790" + ] }, "sort": [ null @@ -11180,6 +11298,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Capriccio : für 10 Blasinstrumente" ], @@ -11319,88 +11440,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMC 83-9", + "urn:barcode:33433004744128" + ], + "physicalLocation": [ + "JMC 83-9" + ], + "shelfMark_sort": "aJMC 83-000009", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433004744128" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMC 83-9", - "urn:barcode:33433004744128" + "shelfMark": [ + "JMC 83-9" ], + "uri": "i10000010", "identifierV2": [ { - "value": "JMC 83-9", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMC 83-9" }, { - "value": "33433004744128", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433004744128" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433004744128" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMC 83-9" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMC 83-9" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMC 83-000009", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000010" + ] }, "sort": [ null diff --git a/test/fixtures/query-ca108bf57a48e780696b62fa55b762c2.json b/test/fixtures/query-ca108bf57a48e780696b62fa55b762c2.json index a07c2654..f69dcb94 100644 --- a/test/fixtures/query-ca108bf57a48e780696b62fa55b762c2.json +++ b/test/fixtures/query-ca108bf57a48e780696b62fa55b762c2.json @@ -1,5 +1,5 @@ { - "took": 1010, + "took": 1093, "timed_out": false, "_shards": { "total": 2, @@ -332,6 +332,9 @@ "createdYear": [ 1989 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Scottish islands" ], @@ -476,79 +479,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:JFF 89-526", + "urn:barcode:33433050409147" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "JFF 89-526" + ], + "shelfMark_sort": "aJFF 89-000526", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433050409147" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFF 89-526", - "urn:barcode:33433050409147" + "shelfMark": [ + "JFF 89-526" ], + "uri": "i13783780", "identifierV2": [ { - "value": "JFF 89-526", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFF 89-526" }, { - "value": "33433050409147", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433050409147" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "JFF 89-526" + "idBarcode": [ + "33433050409147" ], "requestable": [ true ], - "shelfMark": [ - "JFF 89-526" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "aJFF 89-000526", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783780" + ] }, "sort": [ null @@ -608,6 +611,9 @@ "createdYear": [ 1965 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Mutaṟkuṟaḷ uvamai." ], @@ -748,88 +754,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1934", + "urn:barcode:33433061301556" + ], + "physicalLocation": [ + "*OLB 84-1934" + ], + "shelfMark_sort": "a*OLB 84-001934", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301556" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1934", - "urn:barcode:33433061301556" + "shelfMark": [ + "*OLB 84-1934" ], + "uri": "i13783781", "identifierV2": [ { - "value": "*OLB 84-1934", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1934" }, { - "value": "33433061301556", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301556" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301556" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1934" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1934" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001934", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783781" + ] }, "sort": [ null @@ -890,6 +896,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom" ], @@ -1027,88 +1036,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-336", + "urn:barcode:33433032711909" + ], + "physicalLocation": [ + "JMF 83-336" + ], + "shelfMark_sort": "aJMF 83-000336", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032711909" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-336", - "urn:barcode:33433032711909" + "shelfMark": [ + "JMF 83-336" ], + "uri": "i10942022", "identifierV2": [ { - "value": "JMF 83-336", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-336" }, { - "value": "33433032711909", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032711909" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032711909" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-336" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-336" - ], - "shelfMark_sort": "aJMF 83-000336", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" + "formatLiteral": [ + "Notated music" ], - "uri": "i10942022" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -1169,6 +1178,9 @@ "createdYear": [ 1968 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tajdīd al-tafkīr al-dīnī fī al-Islām" ], @@ -1309,88 +1321,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OGC 84-1984", + "urn:barcode:33433022691665" + ], + "physicalLocation": [ + "*OGC 84-1984" + ], + "shelfMark_sort": "a*OGC 84-001984", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433022691665" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGC 84-1984", - "urn:barcode:33433022691665" + "shelfMark": [ + "*OGC 84-1984" ], + "uri": "i12540039", "identifierV2": [ { - "value": "*OGC 84-1984", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGC 84-1984" }, { - "value": "33433022691665", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433022691665" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433022691665" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGC 84-1984" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGC 84-1984" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGC 84-001984", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540039" + ] }, "sort": [ null @@ -1447,6 +1459,9 @@ "createdYear": [ 1981 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Due studi per chitarra" ], @@ -1585,88 +1600,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-276", + "urn:barcode:33433032883591" + ], + "physicalLocation": [ + "JMG 83-276" + ], + "shelfMark_sort": "aJMG 83-000276", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032883591" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-276", - "urn:barcode:33433032883591" + "shelfMark": [ + "JMG 83-276" ], + "uri": "i10942023", "identifierV2": [ { - "value": "JMG 83-276", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-276" }, { - "value": "33433032883591", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032883591" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032883591" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-276" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-276" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000276", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942023" + ] }, "sort": [ null @@ -1713,6 +1728,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Aṇṇāviṉ ciṟukataikaḷ." ], @@ -1847,88 +1865,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1986", + "urn:barcode:33433061301689" + ], + "physicalLocation": [ + "*OLB 84-1986" + ], + "shelfMark_sort": "a*OLB 84-001986", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301689" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1986", - "urn:barcode:33433061301689" + "shelfMark": [ + "*OLB 84-1986" ], + "uri": "i13783782", "identifierV2": [ { - "value": "*OLB 84-1986", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1986" }, { - "value": "33433061301689", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301689" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "*OLB 84-1986" + "idBarcode": [ + "33433061301689" ], - "recapCustomerCode": [ - "NA" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1986" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001986", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783782" + ] }, "sort": [ null @@ -1988,6 +2006,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Miniaturen II : 13 kleine Klavierstücke" ], @@ -2130,88 +2151,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-278", + "urn:barcode:33433032883617" + ], + "physicalLocation": [ + "JMG 83-278" + ], + "shelfMark_sort": "aJMG 83-000278", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032883617" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-278", - "urn:barcode:33433032883617" + "shelfMark": [ + "JMG 83-278" ], + "uri": "i10942024", "identifierV2": [ { - "value": "JMG 83-278", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-278" }, { - "value": "33433032883617", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032883617" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032883617" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-278" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-278" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000278", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942024" + ] }, "sort": [ null @@ -2266,6 +2287,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." ], @@ -2406,88 +2430,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1938", + "urn:barcode:33433061301598" + ], + "physicalLocation": [ + "*OLB 84-1938" + ], + "shelfMark_sort": "a*OLB 84-001938", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301598" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1938", - "urn:barcode:33433061301598" + "shelfMark": [ + "*OLB 84-1938" ], + "uri": "i13783783", "identifierV2": [ { - "value": "*OLB 84-1938", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1938" }, { - "value": "33433061301598", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301598" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301598" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1938" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1938" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001938", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783783" + ] }, "sort": [ null @@ -2535,6 +2559,9 @@ "dateEndString": [ "1982" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Passie en pasen : suite voor orgel, opus 50" ], @@ -2664,88 +2691,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-279", + "urn:barcode:33433032883625" + ], + "physicalLocation": [ + "JMG 83-279" + ], + "shelfMark_sort": "aJMG 83-000279", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032883625" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-279", - "urn:barcode:33433032883625" + "shelfMark": [ + "JMG 83-279" ], + "uri": "i10942025", "identifierV2": [ { - "value": "JMG 83-279", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-279" }, { - "value": "33433032883625", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032883625" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032883625" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-279" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-279" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000279", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942025" + ] }, "sort": [ null @@ -2800,6 +2827,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" ], @@ -2926,88 +2956,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFS 84-1997", + "urn:barcode:33433014514719" + ], + "physicalLocation": [ + "*OFS 84-1997" + ], + "shelfMark_sort": "a*OFS 84-001997", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433014514719" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFS 84-1997", - "urn:barcode:33433014514719" + "shelfMark": [ + "*OFS 84-1997" ], + "uri": "i10000003", "identifierV2": [ { - "value": "*OFS 84-1997", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFS 84-1997" }, { - "value": "33433014514719", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433014514719" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014514719" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFS 84-1997" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFS 84-1997" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFS 84-001997", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000003" + ] }, "sort": [ null @@ -3063,6 +3093,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Disko Treff 1 : Klavier." ], @@ -3189,88 +3222,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-366", + "urn:barcode:33433032712204" + ], + "physicalLocation": [ + "JMF 83-366" + ], + "shelfMark_sort": "aJMF 83-000366", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032712204" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-366", - "urn:barcode:33433032712204" + "shelfMark": [ + "JMF 83-366" ], + "uri": "i10942026", "identifierV2": [ { - "value": "JMF 83-366", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-366" }, { - "value": "33433032712204", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032712204" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032712204" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-366" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-366" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000366", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942026" + ] }, "sort": [ null @@ -3327,6 +3360,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Waḥdah al-Islāmīyah : aw al-taqrīb bayna al-madhāhib al-sabʻah, wathāʼiq khaṭīrah wa-buḥūth ʻilmīyah li-aʻāẓim ʻulamāʼ al-Muslimīn min al-sunnah wa-al-shīʻah" ], @@ -3457,88 +3493,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "identifier": [ + "urn:shelfmark:*OGC 84-1996", + "urn:barcode:33433022691780" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "*OGC 84-1996" ], - "holdingLocation": [ + "shelfMark_sort": "a*OGC 84-001996", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433022691780" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGC 84-1996", - "urn:barcode:33433022691780" + "shelfMark": [ + "*OGC 84-1996" ], + "uri": "i12540040", "identifierV2": [ { - "value": "*OGC 84-1996", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGC 84-1996" }, { - "value": "33433022691780", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433022691780" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433022691780" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGC 84-1996" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGC 84-1996" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGC 84-001996", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540040" + ] }, "sort": [ null @@ -3603,6 +3639,7 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [], "title": [ "Suite no. 1 : 1977" ], @@ -3777,6 +3814,9 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Nalla Kuṟuntokaiyil nāṉilam." ], @@ -3914,88 +3954,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1937", + "urn:barcode:33433061301580" + ], + "physicalLocation": [ + "*OLB 84-1937" + ], + "shelfMark_sort": "a*OLB 84-001937", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301580" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1937", - "urn:barcode:33433061301580" + "shelfMark": [ + "*OLB 84-1937" ], + "uri": "i13783785", "identifierV2": [ { - "value": "*OLB 84-1937", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1937" }, { - "value": "33433061301580", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301580" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301580" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1937" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1937" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001937", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783785" + ] }, "sort": [ null @@ -4057,6 +4097,9 @@ "createdYear": [ 1981 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Lettre du Mexique : pour baryton et piano, 1942" ], @@ -4187,88 +4230,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-395", + "urn:barcode:33433032735007" + ], + "physicalLocation": [ + "JMG 83-395" + ], + "shelfMark_sort": "aJMG 83-000395", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032735007" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-395", - "urn:barcode:33433032735007" + "shelfMark": [ + "JMG 83-395" ], + "uri": "i10942027", "identifierV2": [ { - "value": "JMG 83-395", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-395" }, { - "value": "33433032735007", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032735007" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032735007" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-395" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-395" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000395", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942027" + ] }, "sort": [ null @@ -4324,6 +4367,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" ], @@ -4461,88 +4507,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFX 84-1995", + "urn:barcode:33433002031718" + ], + "physicalLocation": [ + "*OFX 84-1995" + ], + "shelfMark_sort": "a*OFX 84-001995", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002031718" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFX 84-1995", - "urn:barcode:33433002031718" + "shelfMark": [ + "*OFX 84-1995" ], + "uri": "i10000004", "identifierV2": [ { - "value": "*OFX 84-1995", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFX 84-1995" }, { - "value": "33433002031718", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002031718" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002031718" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFX 84-1995" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFX 84-1995" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFX 84-001995", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000004" + ] }, "sort": [ null @@ -4597,6 +4643,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Zwölf Walzer und ein Epilog : für Klavier" ], @@ -4735,88 +4784,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-111", + "urn:barcode:33433032845053" + ], + "physicalLocation": [ + "JMG 83-111" + ], + "shelfMark_sort": "aJMG 83-000111", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032845053" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-111", - "urn:barcode:33433032845053" + "shelfMark": [ + "JMG 83-111" ], + "uri": "i10942028", "identifierV2": [ { - "value": "JMG 83-111", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-111" }, { - "value": "33433032845053", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032845053" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032845053" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-111" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-111" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000111", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942028" + ] }, "sort": [ null @@ -4866,6 +4915,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tolkāppiyam." ], @@ -5009,100 +5061,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1936 v. 1", + "urn:barcode:33433061301572" + ], + "physicalLocation": [ + "*OLB 84-1936" + ], + "shelfMark_sort": "a*OLB 84-1936 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLB 84-1936 v. 1" + ], + "uri": "i13783786", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLB 84-1936 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433061301572" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433061301572" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1936 v. 1", - "urn:barcode:33433061301572" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLB 84-1936 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433061301572", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLB 84-1936" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLB 84-1936 v. 1" - ], - "shelfMark_sort": "a*OLB 84-1936 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i13783786" + ] }, "sort": [ " 1-" @@ -5163,6 +5215,9 @@ "createdYear": [ 1978 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Aurora : sinfonischer Prolog : Partitur" ], @@ -5294,88 +5349,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-113", + "urn:barcode:33433032845079" + ], + "physicalLocation": [ + "JMG 83-113" + ], + "shelfMark_sort": "aJMG 83-000113", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032845079" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-113", - "urn:barcode:33433032845079" + "shelfMark": [ + "JMG 83-113" ], + "uri": "i10942029", "identifierV2": [ { - "value": "JMG 83-113", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-113" }, { - "value": "33433032845079", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032845079" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032845079" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-113" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-113" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000113", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942029" + ] }, "sort": [ null @@ -5431,6 +5486,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." ], @@ -5578,88 +5636,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1935", + "urn:barcode:33433061301564" + ], + "physicalLocation": [ + "*OLB 84-1935" + ], + "shelfMark_sort": "a*OLB 84-001935", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301564" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1935", - "urn:barcode:33433061301564" + "shelfMark": [ + "*OLB 84-1935" ], + "uri": "i13783787", "identifierV2": [ { - "value": "*OLB 84-1935", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1935" }, { - "value": "33433061301564", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301564" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301564" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1935" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1935" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001935", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783787" + ] }, "sort": [ null @@ -5725,6 +5783,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Musica sacra" ], @@ -5856,88 +5917,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-38", + "urn:barcode:33433032709028" + ], + "physicalLocation": [ + "JMF 83-38" + ], + "shelfMark_sort": "aJMF 83-000038", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032709028" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-38", - "urn:barcode:33433032709028" + "shelfMark": [ + "JMF 83-38" ], + "uri": "i10942030", "identifierV2": [ { - "value": "JMF 83-38", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-38" }, { - "value": "33433032709028", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032709028" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032709028" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-38" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-38" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000038", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942030" + ] }, "sort": [ null @@ -5996,6 +6057,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" ], @@ -6135,88 +6199,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFK 84-1944", + "urn:barcode:33433005548676" + ], + "physicalLocation": [ + "*OFK 84-1944" + ], + "shelfMark_sort": "a*OFK 84-001944", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433005548676" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFK 84-1944", - "urn:barcode:33433005548676" + "shelfMark": [ + "*OFK 84-1944" ], + "uri": "i10000005", "identifierV2": [ { - "value": "*OFK 84-1944", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFK 84-1944" }, { - "value": "33433005548676", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433005548676" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005548676" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFK 84-1944" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFK 84-1944" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFK 84-001944", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000005" + ] }, "sort": [ null @@ -6259,6 +6323,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Drei Sonatinen für Klavier" ], @@ -6394,88 +6461,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-107", + "urn:barcode:33433032709697" + ], + "physicalLocation": [ + "JMF 83-107" + ], + "shelfMark_sort": "aJMF 83-000107", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032709697" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-107", - "urn:barcode:33433032709697" + "shelfMark": [ + "JMF 83-107" ], + "uri": "i10942031", "identifierV2": [ { - "value": "JMF 83-107", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-107" }, { - "value": "33433032709697", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032709697" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032709697" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-107" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-107" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000107", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942031" + ] }, "sort": [ null @@ -6531,6 +6598,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" ], @@ -6668,88 +6738,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "identifier": [ + "urn:shelfmark:*OFX 84-1953", + "urn:barcode:33433002031700" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "*OFX 84-1953" ], - "holdingLocation": [ + "shelfMark_sort": "a*OFX 84-001953", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002031700" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFX 84-1953", - "urn:barcode:33433002031700" + "shelfMark": [ + "*OFX 84-1953" ], + "uri": "i10000006", "identifierV2": [ { - "value": "*OFX 84-1953", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFX 84-1953" }, { - "value": "33433002031700", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002031700" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002031700" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFX 84-1953" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFX 84-1953" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFX 84-001953", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000006" + ] }, "sort": [ null @@ -6792,6 +6862,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Drei kleine Sonaten : für Violine solo" ], @@ -6927,88 +7000,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-95", + "urn:barcode:33433032709572" + ], + "physicalLocation": [ + "JMF 83-95" + ], + "shelfMark_sort": "aJMF 83-000095", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032709572" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-95", - "urn:barcode:33433032709572" + "shelfMark": [ + "JMF 83-95" ], + "uri": "i10942032", "identifierV2": [ { - "value": "JMF 83-95", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-95" }, { - "value": "33433032709572", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032709572" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032709572" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-95" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-95" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000095", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942032" + ] }, "sort": [ null @@ -7068,6 +7141,9 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Vaṃśabhāskara : eka adhyayana" ], @@ -7205,88 +7281,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTM 84-1945", + "urn:barcode:33433011094210" + ], + "physicalLocation": [ + "*OKTM 84-1945" + ], + "shelfMark_sort": "a*OKTM 84-001945", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011094210" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTM 84-1945", - "urn:barcode:33433011094210" + "shelfMark": [ + "*OKTM 84-1945" ], + "uri": "i10942033", "identifierV2": [ { - "value": "*OKTM 84-1945", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTM 84-1945" }, { - "value": "33433011094210", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011094210" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011094210" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTM 84-1945" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKTM 84-1945" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTM 84-001945", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942033" + ] }, "sort": [ null @@ -7346,6 +7422,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Cruor : for organ solo, 1977" ], @@ -7493,31 +7572,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-93", + "urn:barcode:33433032709556" + ], + "physicalLocation": [ + "JMF 83-93" + ], + "shelfMark_sort": "aJMF 83-000093", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JMF 83-93" + ], + "uri": "i10942034", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMF 83-93" + }, + { + "type": "bf:Barcode", + "value": "33433032709556" } ], "holdingLocation_packed": [ @@ -7526,55 +7624,36 @@ "idBarcode": [ "33433032709556" ], - "identifier": [ - "urn:shelfmark:JMF 83-93", - "urn:barcode:33433032709556" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMF 83-93", - "type": "bf:ShelfMark" - }, - { - "value": "33433032709556", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Notated music" ], - "physicalLocation": [ - "JMF 83-93" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NP" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMF 83-93" - ], - "shelfMark_sort": "aJMF 83-000093", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942034" + ] }, "sort": [ null @@ -7640,12 +7719,15 @@ "createdYear": [ 1974 ], - "title": [ - "Uṇādi-koṣaḥ" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Uṇādi-koṣaḥ" + ], "shelfMark": [ "*OKA 84-1931" ], @@ -7676,9 +7758,6 @@ "dateStartYear": [ 1974 ], - "idOclc": [ - "NYPG001000014-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -7705,6 +7784,9 @@ "value": "(WaOLN)nyp0200029" } ], + "idOclc": [ + "NYPG001000014-B" + ], "uniformTitle": [ "Uṇādisūtra." ], @@ -7790,88 +7872,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKA 84-1931", + "urn:barcode:33433012968222" + ], + "physicalLocation": [ + "*OKA 84-1931" + ], + "shelfMark_sort": "a*OKA 84-001931", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433012968222" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKA 84-1931", - "urn:barcode:33433012968222" + "shelfMark": [ + "*OKA 84-1931" ], + "uri": "i10000007", "identifierV2": [ { - "value": "*OKA 84-1931", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKA 84-1931" }, { - "value": "33433012968222", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433012968222" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433012968222" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKA 84-1931" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKA 84-1931" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKA 84-001931", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000007" + ] }, "sort": [ null @@ -7914,6 +7996,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Neun Miniaturen : für Klavier : op. 52" ], @@ -8052,88 +8137,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-17", + "urn:barcode:33433032841631" + ], + "physicalLocation": [ + "JMG 83-17" + ], + "shelfMark_sort": "aJMG 83-000017", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032841631" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-17", - "urn:barcode:33433032841631" + "shelfMark": [ + "JMG 83-17" ], + "uri": "i10942035", "identifierV2": [ { - "value": "JMG 83-17", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-17" }, { - "value": "33433032841631", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032841631" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032841631" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-17" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-17" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000017", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942035" + ] }, "sort": [ null @@ -8191,6 +8276,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Buzurgān-i Jahrum : mushtamil bar sharḥ-i aḥvāl va ā̲sār-i rijāl va sukhanvarān va dānishmandān va khushnivīsān va pizishkān-i Jahrum va Khafr" ], @@ -8318,31 +8406,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*OMP 84-2007", + "urn:barcode:33433013173012" + ], + "physicalLocation": [ + "*OMP 84-2007" + ], + "shelfMark_sort": "a*OMP 84-002007", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Text" + "shelfMark": [ + "*OMP 84-2007" ], - "holdingLocation": [ + "uri": "i10000008", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OMP 84-2007" + }, + { + "type": "bf:Barcode", + "value": "33433013173012" } ], "holdingLocation_packed": [ @@ -8351,55 +8458,36 @@ "idBarcode": [ "33433013173012" ], - "identifier": [ - "urn:shelfmark:*OMP 84-2007", - "urn:barcode:33433013173012" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OMP 84-2007", - "type": "bf:ShelfMark" - }, - { - "value": "33433013173012", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OMP 84-2007" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OMP 84-2007" - ], - "shelfMark_sort": "a*OMP 84-002007", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000008" + ] }, "sort": [ null @@ -8450,6 +8538,9 @@ "createdYear": [ 1981 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Psalm settings" ], @@ -8580,88 +8671,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-59", + "urn:barcode:33433032842035" + ], + "physicalLocation": [ + "JMG 83-59" + ], + "shelfMark_sort": "aJMG 83-000059", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842035" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-59", - "urn:barcode:33433032842035" + "shelfMark": [ + "JMG 83-59" ], + "uri": "i10942036", "identifierV2": [ { - "value": "JMG 83-59", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-59" }, { - "value": "33433032842035", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842035" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842035" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-59" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-59" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000059", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942036" + ] }, "sort": [ null @@ -8723,12 +8814,15 @@ "createdYear": [ 1974 ], - "title": [ - "Brhatkathāślokasaṁgraha : a study" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Brhatkathāślokasaṁgraha : a study" + ], "shelfMark": [ "*OKR 84-2006" ], @@ -8744,12 +8838,12 @@ "idLccn": [ "74903273" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Indian civilization series ; no. 4" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Guṇāḍhya", "Agrawala, Vasudeva Sharana", @@ -8761,9 +8855,6 @@ "dateStartYear": [ 1974 ], - "idOclc": [ - "NYPG001000016-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -8790,6 +8881,9 @@ "value": "(WaOLN)nyp0200033" } ], + "idOclc": [ + "NYPG001000016-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -8869,88 +8963,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKR 84-2006", + "urn:barcode:33433011528696" + ], + "physicalLocation": [ + "*OKR 84-2006" + ], + "shelfMark_sort": "a*OKR 84-002006", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011528696" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKR 84-2006", - "urn:barcode:33433011528696" + "shelfMark": [ + "*OKR 84-2006" ], + "uri": "i10000009", "identifierV2": [ { - "value": "*OKR 84-2006", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKR 84-2006" }, { - "value": "33433011528696", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011528696" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011528696" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKR 84-2006" + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKR 84-2006" - ], - "shelfMark_sort": "a*OKR 84-002006", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000009" + ] }, "sort": [ null @@ -9005,6 +9099,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -9108,15 +9205,15 @@ "placeOfPublication": [ "Amsterdam" ], + "titleAlt": [ + "Serenade" + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Serenade" - ], "tableOfContents": [ "Varianten -- Nocturne -- Toccata I -- Intermezzo -- Toccata II." ], @@ -9282,6 +9379,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Srīnārāyaṇatīrthayatīndracaritram[sic]" ], @@ -9419,88 +9519,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKB 84-1928", + "urn:barcode:33433058548433" + ], + "physicalLocation": [ + "*OKB 84-1928" + ], + "shelfMark_sort": "a*OKB 84-001928", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058548433" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKB 84-1928", - "urn:barcode:33433058548433" + "shelfMark": [ + "*OKB 84-1928" ], + "uri": "i12858032", "identifierV2": [ { - "value": "*OKB 84-1928", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKB 84-1928" }, { - "value": "33433058548433", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058548433" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058548433" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKB 84-1928" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKB 84-1928" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKB 84-001928", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12858032" + ] }, "sort": [ null @@ -9550,6 +9650,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Eight studies for guitar : in form of a suite : 1979" ], @@ -9682,88 +9785,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-5", + "urn:barcode:33433032841482" + ], + "physicalLocation": [ + "JMG 83-5" + ], + "shelfMark_sort": "aJMG 83-000005", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032841482" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-5", - "urn:barcode:33433032841482" + "shelfMark": [ + "JMG 83-5" ], + "uri": "i10942040", "identifierV2": [ { - "value": "JMG 83-5", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-5" }, { - "value": "33433032841482", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032841482" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032841482" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-5" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-5" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000005", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942040" + ] }, "sort": [ null @@ -9815,6 +9918,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" ], @@ -9952,31 +10058,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKP 84-1932", + "urn:barcode:33433058153572" + ], + "physicalLocation": [ + "*OKP 84-1932" + ], + "shelfMark_sort": "a*OKP 84-001932", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OKP 84-1932" + ], + "uri": "i13783788", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKP 84-1932" + }, { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:Barcode", + "value": "33433058153572" } ], "holdingLocation_packed": [ @@ -9985,55 +10110,36 @@ "idBarcode": [ "33433058153572" ], - "identifier": [ - "urn:shelfmark:*OKP 84-1932", - "urn:barcode:33433058153572" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OKP 84-1932", - "type": "bf:ShelfMark" - }, - { - "value": "33433058153572", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OKP 84-1932" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKP 84-1932" - ], - "shelfMark_sort": "a*OKP 84-001932", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783788" + ] }, "sort": [ null @@ -10076,6 +10182,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Five sonatas for pianoforte" ], @@ -10216,88 +10325,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-66", + "urn:barcode:33433032842100" + ], + "physicalLocation": [ + "JMG 83-66" + ], + "shelfMark_sort": "aJMG 83-000066", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842100" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-66", - "urn:barcode:33433032842100" + "shelfMark": [ + "JMG 83-66" ], + "uri": "i10942041", "identifierV2": [ { - "value": "JMG 83-66", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-66" }, { - "value": "33433032842100", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842100" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842100" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-66" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-66" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000066", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942041" + ] }, "sort": [ null @@ -10347,6 +10456,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tiru. Vi. Kaliyāṇacuntaraṉār." ], @@ -10487,88 +10599,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1947", + "urn:barcode:33433061301622" + ], + "physicalLocation": [ + "*OLB 84-1947" + ], + "shelfMark_sort": "a*OLB 84-001947", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301622" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1947", - "urn:barcode:33433061301622" + "shelfMark": [ + "*OLB 84-1947" ], + "uri": "i13783789", "identifierV2": [ { - "value": "*OLB 84-1947", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1947" }, { - "value": "33433061301622", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301622" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301622" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1947" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1947" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001947", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783789" + ] }, "sort": [ null @@ -10619,6 +10731,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Encounter" ], @@ -10759,31 +10874,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "identifier": [ + "urn:shelfmark:JMF 83-66", + "urn:barcode:33433032709291" + ], + "physicalLocation": [ + "JMF 83-66" + ], + "shelfMark_sort": "aJMF 83-000066", + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Notated music" + "shelfMark": [ + "JMF 83-66" ], - "holdingLocation": [ + "uri": "i10942042", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMF 83-66" + }, + { + "type": "bf:Barcode", + "value": "33433032709291" } ], "holdingLocation_packed": [ @@ -10792,55 +10926,36 @@ "idBarcode": [ "33433032709291" ], - "identifier": [ - "urn:shelfmark:JMF 83-66", - "urn:barcode:33433032709291" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMF 83-66", - "type": "bf:ShelfMark" - }, - { - "value": "33433032709291", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Notated music" ], - "physicalLocation": [ - "JMF 83-66" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NP" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMF 83-66" - ], - "shelfMark_sort": "aJMF 83-000066", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942042" + ] }, "sort": [ null @@ -10894,6 +11009,9 @@ "dateEndString": [ "1972" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." ], @@ -11038,88 +11156,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKN 84-1926", + "urn:barcode:33433058618392" + ], + "physicalLocation": [ + "*OKN 84-1926" + ], + "shelfMark_sort": "a*OKN 84-001926", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058618392" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKN 84-1926", - "urn:barcode:33433058618392" + "shelfMark": [ + "*OKN 84-1926" ], + "uri": "i13783790", "identifierV2": [ { - "value": "*OKN 84-1926", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKN 84-1926" }, { - "value": "33433058618392", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058618392" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058618392" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKN 84-1926" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKN 84-1926" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKN 84-001926", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783790" + ] }, "sort": [ null @@ -11180,6 +11298,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Capriccio : für 10 Blasinstrumente" ], @@ -11319,88 +11440,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMC 83-9", + "urn:barcode:33433004744128" + ], + "physicalLocation": [ + "JMC 83-9" + ], + "shelfMark_sort": "aJMC 83-000009", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433004744128" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMC 83-9", - "urn:barcode:33433004744128" + "shelfMark": [ + "JMC 83-9" ], + "uri": "i10000010", "identifierV2": [ { - "value": "JMC 83-9", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMC 83-9" }, { - "value": "33433004744128", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433004744128" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433004744128" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMC 83-9" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMC 83-9" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMC 83-000009", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000010" + ] }, "sort": [ null @@ -11465,12 +11586,15 @@ "createdYear": [ 1976 ], - "title": [ - "ʼJam-mgon Rgyal-ba gñis-paʼi Rgyal-tshab Dpal-ldan Bla-ma Dam-pa Khyab-bdag Khri-chen Byaṅ-chub-chos-ʼphel dpal-bzaṅ-poʼi rnam par thar pa Dgaʼ ldan bstan paʼi mdzes rgyab [sic] : the biography of the 69th Khri-chen of Dgaʼ-ʼldan Byaṅ-chub-chos-ʼphel" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "ʼJam-mgon Rgyal-ba gñis-paʼi Rgyal-tshab Dpal-ldan Bla-ma Dam-pa Khyab-bdag Khri-chen Byaṅ-chub-chos-ʼphel dpal-bzaṅ-poʼi rnam par thar pa Dgaʼ ldan bstan paʼi mdzes rgyab [sic] : the biography of the 69th Khri-chen of Dgaʼ-ʼldan Byaṅ-chub-chos-ʼphel" + ], "shelfMark": [ "*OZ+ 82-2361" ], @@ -11498,9 +11622,6 @@ "dateStartYear": [ 1976 ], - "idOclc": [ - "NYPG001000021-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -11527,6 +11648,9 @@ "value": "(WaOLN)nyp0200043" } ], + "idOclc": [ + "NYPG001000021-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -11611,88 +11735,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2361", + "urn:barcode:33433015080645" + ], + "physicalLocation": [ + "*OZ+ 82-2361" + ], + "shelfMark_sort": "a*OZ+ 82-002361", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080645" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2361", - "urn:barcode:33433015080645" + "shelfMark": [ + "*OZ+ 82-2361" ], + "uri": "i10000011", "identifierV2": [ { - "value": "*OZ+ 82-2361", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2361" }, { - "value": "33433015080645", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080645" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080645" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2361" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2361" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002361", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000011" + ] }, "sort": [ null @@ -11735,6 +11859,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Thoughts & feelings : for violin solo" ], @@ -11872,88 +11999,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 82-688", + "urn:barcode:33433032707568" + ], + "physicalLocation": [ + "JMG 82-688" + ], + "shelfMark_sort": "aJMG 82-000688", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032707568" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 82-688", - "urn:barcode:33433032707568" + "shelfMark": [ + "JMG 82-688" ], + "uri": "i10942043", "identifierV2": [ { - "value": "JMG 82-688", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 82-688" }, { - "value": "33433032707568", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032707568" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032707568" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 82-688" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 82-688" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 82-000688", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942043" + ] }, "sort": [ null @@ -12019,12 +12146,15 @@ "createdYear": [ 1976 ], - "title": [ - "Dpal Kye rdo rjeʼi phyi naṅ bskyed rim ñams len gnad kyi gsal byed sñan brgyud bstan pa rgyas paʼi ñin byed : a detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Dpal Kye rdo rjeʼi phyi naṅ bskyed rim ñams len gnad kyi gsal byed sñan brgyud bstan pa rgyas paʼi ñin byed : a detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra" + ], "shelfMark": [ "*OZ+ 82-2362" ], @@ -12052,9 +12182,6 @@ "dateStartYear": [ 1976 ], - "idOclc": [ - "NYPG001000022-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -12081,6 +12208,9 @@ "value": "(WaOLN)nyp0200045" } ], + "idOclc": [ + "NYPG001000022-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -12133,17 +12263,17 @@ "placeOfPublication": [ "New Delhi" ], + "titleAlt": [ + "Rgyal ba rdo rje ʼchan Kun dgaʼ bzaṅ poʼi rnam par thar pa legs bśad chu bo ʼdus paʼi rgya mtsho yon tan yid bźin nor buʼi byuṅ gnas.", + "Detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra.", + "Life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po." + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Rgyal ba rdo rje ʼchan Kun dgaʼ bzaṅ poʼi rnam par thar pa legs bśad chu bo ʼdus paʼi rgya mtsho yon tan yid bźin nor buʼi byuṅ gnas.", - "Detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra.", - "Life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po." - ], "dimensions": [ "28 x 37 cm." ] @@ -12170,31 +12300,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2362", + "urn:barcode:33433015080413" + ], + "physicalLocation": [ + "*OZ+ 82-2362" + ], + "shelfMark_sort": "a*OZ+ 82-002362", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OZ+ 82-2362" + ], + "uri": "i10000012", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2362" + }, { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:Barcode", + "value": "33433015080413" } ], "holdingLocation_packed": [ @@ -12203,55 +12352,36 @@ "idBarcode": [ "33433015080413" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2362", - "urn:barcode:33433015080413" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OZ+ 82-2362", - "type": "bf:ShelfMark" - }, - { - "value": "33433015080413", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OZ+ 82-2362" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OZ+ 82-2362" - ], - "shelfMark_sort": "a*OZ+ 82-002362", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000012" + ] }, "sort": [ null @@ -12307,6 +12437,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello" ], @@ -12450,88 +12583,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-79", + "urn:barcode:33433032842233" + ], + "physicalLocation": [ + "JMG 83-79" + ], + "shelfMark_sort": "aJMG 83-000079", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842233" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-79", - "urn:barcode:33433032842233" + "shelfMark": [ + "JMG 83-79" ], + "uri": "i10942044", "identifierV2": [ { - "value": "JMG 83-79", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-79" }, { - "value": "33433032842233", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842233" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842233" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-79" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-79" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000079", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942044" + ] }, "sort": [ null @@ -12587,6 +12720,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Bkra śis Tshe riṅ mai sgrub skor sogs : a collection of texts outlining the rites of the Five Long Lived Sisters and other highly esoteric rituals." ], @@ -12721,88 +12857,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2382", + "urn:barcode:33433015080439" + ], + "physicalLocation": [ + "*OZ+ 82-2382" + ], + "shelfMark_sort": "a*OZ+ 82-002382", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080439" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2382", - "urn:barcode:33433015080439" + "shelfMark": [ + "*OZ+ 82-2382" ], + "uri": "i10000013", "identifierV2": [ { - "value": "*OZ+ 82-2382", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2382" }, { - "value": "33433015080439", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080439" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080439" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2382" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2382" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002382", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000013" + ] }, "sort": [ null @@ -12853,6 +12989,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Symphony, op. 26 : full score" ], @@ -12996,31 +13135,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "identifier": [ + "urn:shelfmark:JMG 83-80", + "urn:barcode:33433032842241" + ], + "physicalLocation": [ + "JMG 83-80" + ], + "shelfMark_sort": "aJMG 83-000080", + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Notated music" + "shelfMark": [ + "JMG 83-80" ], - "holdingLocation": [ + "uri": "i10942045", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMG 83-80" + }, + { + "type": "bf:Barcode", + "value": "33433032842241" } ], "holdingLocation_packed": [ @@ -13029,55 +13187,36 @@ "idBarcode": [ "33433032842241" ], - "identifier": [ - "urn:shelfmark:JMG 83-80", - "urn:barcode:33433032842241" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMG 83-80", - "type": "bf:ShelfMark" - }, - { - "value": "33433032842241", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Notated music" ], - "physicalLocation": [ - "JMG 83-80" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NP" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMG 83-80" - ], - "shelfMark_sort": "aJMG 83-000080", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942045" + ] }, "sort": [ null @@ -13138,6 +13277,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "The rnam thar and mgur ʼbum of ʼBaʼ-ra-ba, with his Sgrub pa ñams su blaṅ baʼi lag len dgos ʼdod ʼbyuṅ baʼi gter mdzod." ], @@ -13280,88 +13422,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2381", + "urn:barcode:33433015080421" + ], + "physicalLocation": [ + "*OZ+ 82-2381" + ], + "shelfMark_sort": "a*OZ+ 82-002381", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080421" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2381", - "urn:barcode:33433015080421" + "shelfMark": [ + "*OZ+ 82-2381" ], + "uri": "i10000014", "identifierV2": [ { - "value": "*OZ+ 82-2381", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2381" }, { - "value": "33433015080421", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080421" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080421" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2381" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2381" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002381", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000014" + ] }, "sort": [ null @@ -13412,6 +13554,9 @@ "createdYear": [ 1977 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972" ], @@ -13560,88 +13705,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-75", + "urn:barcode:33433032842191" + ], + "physicalLocation": [ + "JMG 83-75" + ], + "shelfMark_sort": "aJMG 83-000075", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842191" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-75", - "urn:barcode:33433032842191" + "shelfMark": [ + "JMG 83-75" ], + "uri": "i10942046", "identifierV2": [ { - "value": "JMG 83-75", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-75" }, { - "value": "33433032842191", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842191" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842191" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-75" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-75" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000075", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942046" + ] }, "sort": [ null diff --git a/test/fixtures/query-cc9ac8df079b01781a46b3b096602c9a.json b/test/fixtures/query-cc9ac8df079b01781a46b3b096602c9a.json index e4b43378..933941a4 100644 --- a/test/fixtures/query-cc9ac8df079b01781a46b3b096602c9a.json +++ b/test/fixtures/query-cc9ac8df079b01781a46b3b096602c9a.json @@ -1,5 +1,5 @@ { - "took": 52, + "took": 53, "timed_out": false, "_shards": { "total": 2, @@ -46,6 +46,10 @@ "createdYear": [ 201 ], + "buildingLocationIds": [ + "ma", + "rc" + ], "parallelTitle": [ "‏כותר שאינו באותיות לטינית = зглавие руссий." ], @@ -760,97 +764,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v.1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:k||Check with staff" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "uri": "i37857771", + "identifierV2": [ { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + }, + { + "type": "bf:Barcode", + "value": "3333333333" } ], "holdingLocation_packed": [ "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" ], + "enumerationChronology": [ + "v.1" + ], "idBarcode": [ "3333333333" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ false ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "status": [ { "id": "status:k", "label": "Check with staff" } ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i37857771" + ] }, "sort": [ " 1-" @@ -865,88 +869,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1103", + "label": "Dorot Jewish Division" } ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" ], - "enumerationChronology": [ - "nothing" + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "catalogItemType_packed": [ + "catalogItemType:3||serial" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmf2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "44455533322211" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" ], + "uri": "i37857772", "identifierV2": [ { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" }, { - "value": "44455533322211", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "44455533322211" } ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "enumerationChronology": [ + "nothing" + ], + "idBarcode": [ + "44455533322211" ], "owner_packed": [ "orgs:1103||Dorot Jewish Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ true ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" + ] }, "sort": [ null diff --git a/test/fixtures/query-cfdab06564def0f049e34e634bdf4f8a.json b/test/fixtures/query-cfdab06564def0f049e34e634bdf4f8a.json index 7db9cece..fe600bfc 100644 --- a/test/fixtures/query-cfdab06564def0f049e34e634bdf4f8a.json +++ b/test/fixtures/query-cfdab06564def0f049e34e634bdf4f8a.json @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.631943, + "max_score": 15.734043, "hits": [ { "_index": "resources-2024-10-22", "_id": "cb4032259", - "_score": 15.631943, + "_score": 15.734043, "_source": { "extent": [ "x, 296 pages, 12 plates (including ports.~|~|~ facsims.) : tables ;" @@ -50,6 +50,9 @@ "createdYear": [ 1966 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], diff --git a/test/fixtures/query-d52cc52e4a5296d15be088619ebc97e8.json b/test/fixtures/query-d52cc52e4a5296d15be088619ebc97e8.json index bbffa861..bec58a66 100644 --- a/test/fixtures/query-d52cc52e4a5296d15be088619ebc97e8.json +++ b/test/fixtures/query-d52cc52e4a5296d15be088619ebc97e8.json @@ -1,5 +1,5 @@ { - "took": 820, + "took": 672, "timed_out": false, "_shards": { "total": 2, @@ -332,6 +332,9 @@ "createdYear": [ 1989 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Scottish islands" ], @@ -476,79 +479,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:JFF 89-526", + "urn:barcode:33433050409147" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "JFF 89-526" + ], + "shelfMark_sort": "aJFF 89-000526", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433050409147" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFF 89-526", - "urn:barcode:33433050409147" + "shelfMark": [ + "JFF 89-526" ], + "uri": "i13783780", "identifierV2": [ { - "value": "JFF 89-526", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFF 89-526" }, { - "value": "33433050409147", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433050409147" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "JFF 89-526" + "idBarcode": [ + "33433050409147" ], "requestable": [ true ], - "shelfMark": [ - "JFF 89-526" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "aJFF 89-000526", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783780" + ] }, "sort": [ null @@ -608,6 +611,9 @@ "createdYear": [ 1965 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Mutaṟkuṟaḷ uvamai." ], @@ -748,88 +754,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1934", + "urn:barcode:33433061301556" + ], + "physicalLocation": [ + "*OLB 84-1934" + ], + "shelfMark_sort": "a*OLB 84-001934", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301556" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1934", - "urn:barcode:33433061301556" + "shelfMark": [ + "*OLB 84-1934" ], + "uri": "i13783781", "identifierV2": [ { - "value": "*OLB 84-1934", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1934" }, { - "value": "33433061301556", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301556" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301556" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1934" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1934" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001934", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783781" + ] }, "sort": [ null @@ -890,6 +896,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Kon︠t︡sert No 2 dl︠i︡a skripki s orkestrom" ], @@ -1027,88 +1036,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-336", + "urn:barcode:33433032711909" + ], + "physicalLocation": [ + "JMF 83-336" + ], + "shelfMark_sort": "aJMF 83-000336", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032711909" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-336", - "urn:barcode:33433032711909" + "shelfMark": [ + "JMF 83-336" ], + "uri": "i10942022", "identifierV2": [ { - "value": "JMF 83-336", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-336" }, { - "value": "33433032711909", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032711909" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032711909" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-336" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-336" - ], - "shelfMark_sort": "aJMF 83-000336", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" + "formatLiteral": [ + "Notated music" ], - "uri": "i10942022" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -1169,6 +1178,9 @@ "createdYear": [ 1968 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tajdīd al-tafkīr al-dīnī fī al-Islām" ], @@ -1309,88 +1321,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OGC 84-1984", + "urn:barcode:33433022691665" + ], + "physicalLocation": [ + "*OGC 84-1984" + ], + "shelfMark_sort": "a*OGC 84-001984", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433022691665" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGC 84-1984", - "urn:barcode:33433022691665" + "shelfMark": [ + "*OGC 84-1984" ], + "uri": "i12540039", "identifierV2": [ { - "value": "*OGC 84-1984", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGC 84-1984" }, { - "value": "33433022691665", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433022691665" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433022691665" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGC 84-1984" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGC 84-1984" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGC 84-001984", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540039" + ] }, "sort": [ null @@ -1447,6 +1459,9 @@ "createdYear": [ 1981 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Due studi per chitarra" ], @@ -1585,88 +1600,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-276", + "urn:barcode:33433032883591" + ], + "physicalLocation": [ + "JMG 83-276" + ], + "shelfMark_sort": "aJMG 83-000276", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032883591" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-276", - "urn:barcode:33433032883591" + "shelfMark": [ + "JMG 83-276" ], + "uri": "i10942023", "identifierV2": [ { - "value": "JMG 83-276", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-276" }, { - "value": "33433032883591", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032883591" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032883591" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-276" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-276" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000276", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942023" + ] }, "sort": [ null @@ -1713,6 +1728,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Aṇṇāviṉ ciṟukataikaḷ." ], @@ -1847,88 +1865,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1986", + "urn:barcode:33433061301689" + ], + "physicalLocation": [ + "*OLB 84-1986" + ], + "shelfMark_sort": "a*OLB 84-001986", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301689" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1986", - "urn:barcode:33433061301689" + "shelfMark": [ + "*OLB 84-1986" ], + "uri": "i13783782", "identifierV2": [ { - "value": "*OLB 84-1986", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1986" }, { - "value": "33433061301689", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301689" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" - ], - "physicalLocation": [ - "*OLB 84-1986" + "idBarcode": [ + "33433061301689" ], - "recapCustomerCode": [ - "NA" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1986" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001986", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783782" + ] }, "sort": [ null @@ -1988,6 +2006,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Miniaturen II : 13 kleine Klavierstücke" ], @@ -2130,88 +2151,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-278", + "urn:barcode:33433032883617" + ], + "physicalLocation": [ + "JMG 83-278" + ], + "shelfMark_sort": "aJMG 83-000278", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032883617" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-278", - "urn:barcode:33433032883617" + "shelfMark": [ + "JMG 83-278" ], + "uri": "i10942024", "identifierV2": [ { - "value": "JMG 83-278", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-278" }, { - "value": "33433032883617", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032883617" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032883617" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-278" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-278" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000278", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942024" + ] }, "sort": [ null @@ -2266,6 +2287,9 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Cēkkiḻār; Corṇammāḷ niṉaivuc coṟpoḻivukaḷ." ], @@ -2406,88 +2430,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1938", + "urn:barcode:33433061301598" + ], + "physicalLocation": [ + "*OLB 84-1938" + ], + "shelfMark_sort": "a*OLB 84-001938", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301598" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1938", - "urn:barcode:33433061301598" + "shelfMark": [ + "*OLB 84-1938" ], + "uri": "i13783783", "identifierV2": [ { - "value": "*OLB 84-1938", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1938" }, { - "value": "33433061301598", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301598" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301598" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1938" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1938" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001938", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783783" + ] }, "sort": [ null @@ -2535,6 +2559,9 @@ "dateEndString": [ "1982" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Passie en pasen : suite voor orgel, opus 50" ], @@ -2664,88 +2691,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-279", + "urn:barcode:33433032883625" + ], + "physicalLocation": [ + "JMG 83-279" + ], + "shelfMark_sort": "aJMG 83-000279", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032883625" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-279", - "urn:barcode:33433032883625" + "shelfMark": [ + "JMG 83-279" ], + "uri": "i10942025", "identifierV2": [ { - "value": "JMG 83-279", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-279" }, { - "value": "33433032883625", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032883625" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032883625" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-279" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-279" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000279", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942025" + ] }, "sort": [ null @@ -2800,6 +2827,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Ḥuṭayʼah : fī sīratihi wa-nafsīyatihi wa-shiʻrihi" ], @@ -2926,88 +2956,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFS 84-1997", + "urn:barcode:33433014514719" + ], + "physicalLocation": [ + "*OFS 84-1997" + ], + "shelfMark_sort": "a*OFS 84-001997", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433014514719" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFS 84-1997", - "urn:barcode:33433014514719" + "shelfMark": [ + "*OFS 84-1997" ], + "uri": "i10000003", "identifierV2": [ { - "value": "*OFS 84-1997", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFS 84-1997" }, { - "value": "33433014514719", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433014514719" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433014514719" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFS 84-1997" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFS 84-1997" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFS 84-001997", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000003" + ] }, "sort": [ null @@ -3063,6 +3093,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Disko Treff 1 : Klavier." ], @@ -3189,88 +3222,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-366", + "urn:barcode:33433032712204" + ], + "physicalLocation": [ + "JMF 83-366" + ], + "shelfMark_sort": "aJMF 83-000366", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032712204" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-366", - "urn:barcode:33433032712204" + "shelfMark": [ + "JMF 83-366" ], + "uri": "i10942026", "identifierV2": [ { - "value": "JMF 83-366", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-366" }, { - "value": "33433032712204", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032712204" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032712204" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-366" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-366" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000366", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942026" + ] }, "sort": [ null @@ -3327,6 +3360,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Waḥdah al-Islāmīyah : aw al-taqrīb bayna al-madhāhib al-sabʻah, wathāʼiq khaṭīrah wa-buḥūth ʻilmīyah li-aʻāẓim ʻulamāʼ al-Muslimīn min al-sunnah wa-al-shīʻah" ], @@ -3457,88 +3493,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "identifier": [ + "urn:shelfmark:*OGC 84-1996", + "urn:barcode:33433022691780" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "*OGC 84-1996" ], - "holdingLocation": [ + "shelfMark_sort": "a*OGC 84-001996", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433022691780" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OGC 84-1996", - "urn:barcode:33433022691780" + "shelfMark": [ + "*OGC 84-1996" ], + "uri": "i12540040", "identifierV2": [ { - "value": "*OGC 84-1996", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OGC 84-1996" }, { - "value": "33433022691780", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433022691780" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433022691780" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OGC 84-1996" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OGC 84-1996" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OGC 84-001996", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12540040" + ] }, "sort": [ null @@ -3603,6 +3639,7 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [], "title": [ "Suite no. 1 : 1977" ], @@ -3777,6 +3814,9 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Nalla Kuṟuntokaiyil nāṉilam." ], @@ -3914,88 +3954,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1937", + "urn:barcode:33433061301580" + ], + "physicalLocation": [ + "*OLB 84-1937" + ], + "shelfMark_sort": "a*OLB 84-001937", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301580" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1937", - "urn:barcode:33433061301580" + "shelfMark": [ + "*OLB 84-1937" ], + "uri": "i13783785", "identifierV2": [ { - "value": "*OLB 84-1937", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1937" }, { - "value": "33433061301580", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301580" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301580" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1937" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1937" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001937", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783785" + ] }, "sort": [ null @@ -4057,6 +4097,9 @@ "createdYear": [ 1981 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Lettre du Mexique : pour baryton et piano, 1942" ], @@ -4187,88 +4230,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-395", + "urn:barcode:33433032735007" + ], + "physicalLocation": [ + "JMG 83-395" + ], + "shelfMark_sort": "aJMG 83-000395", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032735007" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-395", - "urn:barcode:33433032735007" + "shelfMark": [ + "JMG 83-395" ], + "uri": "i10942027", "identifierV2": [ { - "value": "JMG 83-395", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-395" }, { - "value": "33433032735007", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032735007" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032735007" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-395" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-395" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000395", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942027" + ] }, "sort": [ null @@ -4324,6 +4367,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Marʼah al-Lubnānīyah : wāqiʻuhā wa-qaḍāyāhā" ], @@ -4461,88 +4507,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFX 84-1995", + "urn:barcode:33433002031718" + ], + "physicalLocation": [ + "*OFX 84-1995" + ], + "shelfMark_sort": "a*OFX 84-001995", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002031718" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFX 84-1995", - "urn:barcode:33433002031718" + "shelfMark": [ + "*OFX 84-1995" ], + "uri": "i10000004", "identifierV2": [ { - "value": "*OFX 84-1995", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFX 84-1995" }, { - "value": "33433002031718", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002031718" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002031718" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFX 84-1995" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFX 84-1995" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFX 84-001995", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000004" + ] }, "sort": [ null @@ -4597,6 +4643,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Zwölf Walzer und ein Epilog : für Klavier" ], @@ -4735,88 +4784,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-111", + "urn:barcode:33433032845053" + ], + "physicalLocation": [ + "JMG 83-111" + ], + "shelfMark_sort": "aJMG 83-000111", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032845053" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-111", - "urn:barcode:33433032845053" + "shelfMark": [ + "JMG 83-111" ], + "uri": "i10942028", "identifierV2": [ { - "value": "JMG 83-111", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-111" }, { - "value": "33433032845053", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032845053" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032845053" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-111" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-111" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000111", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942028" + ] }, "sort": [ null @@ -4866,6 +4915,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tolkāppiyam." ], @@ -5009,100 +5061,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1936 v. 1", + "urn:barcode:33433061301572" + ], + "physicalLocation": [ + "*OLB 84-1936" + ], + "shelfMark_sort": "a*OLB 84-1936 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*OLB 84-1936 v. 1" + ], + "uri": "i13783786", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OLB 84-1936 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433061301572" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433061301572" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1936 v. 1", - "urn:barcode:33433061301572" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OLB 84-1936 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433061301572", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OLB 84-1936" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OLB 84-1936 v. 1" - ], - "shelfMark_sort": "a*OLB 84-1936 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i13783786" + ] }, "sort": [ " 1-" @@ -5163,6 +5215,9 @@ "createdYear": [ 1978 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Aurora : sinfonischer Prolog : Partitur" ], @@ -5294,88 +5349,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-113", + "urn:barcode:33433032845079" + ], + "physicalLocation": [ + "JMG 83-113" + ], + "shelfMark_sort": "aJMG 83-000113", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032845079" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-113", - "urn:barcode:33433032845079" + "shelfMark": [ + "JMG 83-113" ], + "uri": "i10942029", "identifierV2": [ { - "value": "JMG 83-113", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-113" }, { - "value": "33433032845079", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032845079" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032845079" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-113" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-113" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000113", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942029" + ] }, "sort": [ null @@ -5431,6 +5486,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Poṉpaṟṟi kāvalar puttamittiraṉār iyaṟṟiya Vīracōḻiyam; Peruntēvaṉār iyaṟṟiya uraiyuṭaṉ." ], @@ -5578,88 +5636,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1935", + "urn:barcode:33433061301564" + ], + "physicalLocation": [ + "*OLB 84-1935" + ], + "shelfMark_sort": "a*OLB 84-001935", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301564" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1935", - "urn:barcode:33433061301564" + "shelfMark": [ + "*OLB 84-1935" ], + "uri": "i13783787", "identifierV2": [ { - "value": "*OLB 84-1935", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1935" }, { - "value": "33433061301564", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301564" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301564" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1935" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1935" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001935", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783787" + ] }, "sort": [ null @@ -5725,6 +5783,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Musica sacra" ], @@ -5856,88 +5917,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-38", + "urn:barcode:33433032709028" + ], + "physicalLocation": [ + "JMF 83-38" + ], + "shelfMark_sort": "aJMF 83-000038", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032709028" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-38", - "urn:barcode:33433032709028" + "shelfMark": [ + "JMF 83-38" ], + "uri": "i10942030", "identifierV2": [ { - "value": "JMF 83-38", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-38" }, { - "value": "33433032709028", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032709028" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032709028" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-38" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-38" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000038", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942030" + ] }, "sort": [ null @@ -5996,6 +6057,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "al-Baḥrayn : mushkilāt al-taghyīr al-siyāsī wa-al-ijtimāʻī" ], @@ -6135,88 +6199,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFK 84-1944", + "urn:barcode:33433005548676" + ], + "physicalLocation": [ + "*OFK 84-1944" + ], + "shelfMark_sort": "a*OFK 84-001944", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433005548676" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFK 84-1944", - "urn:barcode:33433005548676" + "shelfMark": [ + "*OFK 84-1944" ], + "uri": "i10000005", "identifierV2": [ { - "value": "*OFK 84-1944", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFK 84-1944" }, { - "value": "33433005548676", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433005548676" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433005548676" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFK 84-1944" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFK 84-1944" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFK 84-001944", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000005" + ] }, "sort": [ null @@ -6259,6 +6323,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Drei Sonatinen für Klavier" ], @@ -6394,88 +6461,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-107", + "urn:barcode:33433032709697" + ], + "physicalLocation": [ + "JMF 83-107" + ], + "shelfMark_sort": "aJMF 83-000107", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032709697" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-107", - "urn:barcode:33433032709697" + "shelfMark": [ + "JMF 83-107" ], + "uri": "i10942031", "identifierV2": [ { - "value": "JMF 83-107", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-107" }, { - "value": "33433032709697", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032709697" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032709697" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-107" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-107" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000107", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942031" + ] }, "sort": [ null @@ -6531,6 +6598,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Mushārakat al-marʼah fī al-ḥayāh al-ʻāmmah fī Sūrīyah mundhu al-istiqlāl 1945 wa-ḥattá 1975" ], @@ -6668,88 +6738,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "identifier": [ + "urn:shelfmark:*OFX 84-1953", + "urn:barcode:33433002031700" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "*OFX 84-1953" ], - "holdingLocation": [ + "shelfMark_sort": "a*OFX 84-001953", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002031700" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFX 84-1953", - "urn:barcode:33433002031700" + "shelfMark": [ + "*OFX 84-1953" ], + "uri": "i10000006", "identifierV2": [ { - "value": "*OFX 84-1953", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFX 84-1953" }, { - "value": "33433002031700", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002031700" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002031700" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFX 84-1953" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFX 84-1953" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFX 84-001953", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000006" + ] }, "sort": [ null @@ -6792,6 +6862,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Drei kleine Sonaten : für Violine solo" ], @@ -6927,88 +7000,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-95", + "urn:barcode:33433032709572" + ], + "physicalLocation": [ + "JMF 83-95" + ], + "shelfMark_sort": "aJMF 83-000095", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032709572" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMF 83-95", - "urn:barcode:33433032709572" + "shelfMark": [ + "JMF 83-95" ], + "uri": "i10942032", "identifierV2": [ { - "value": "JMF 83-95", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMF 83-95" }, { - "value": "33433032709572", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032709572" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032709572" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMF 83-95" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMF 83-95" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMF 83-000095", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942032" + ] }, "sort": [ null @@ -7068,6 +7141,9 @@ "createdYear": [ 1973 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Vaṃśabhāskara : eka adhyayana" ], @@ -7205,88 +7281,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKTM 84-1945", + "urn:barcode:33433011094210" + ], + "physicalLocation": [ + "*OKTM 84-1945" + ], + "shelfMark_sort": "a*OKTM 84-001945", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011094210" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKTM 84-1945", - "urn:barcode:33433011094210" + "shelfMark": [ + "*OKTM 84-1945" ], + "uri": "i10942033", "identifierV2": [ { - "value": "*OKTM 84-1945", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKTM 84-1945" }, { - "value": "33433011094210", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011094210" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011094210" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKTM 84-1945" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKTM 84-1945" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKTM 84-001945", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942033" + ] }, "sort": [ null @@ -7346,6 +7422,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Cruor : for organ solo, 1977" ], @@ -7493,31 +7572,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMF 83-93", + "urn:barcode:33433032709556" + ], + "physicalLocation": [ + "JMF 83-93" + ], + "shelfMark_sort": "aJMF 83-000093", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JMF 83-93" + ], + "uri": "i10942034", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMF 83-93" + }, + { + "type": "bf:Barcode", + "value": "33433032709556" } ], "holdingLocation_packed": [ @@ -7526,55 +7624,36 @@ "idBarcode": [ "33433032709556" ], - "identifier": [ - "urn:shelfmark:JMF 83-93", - "urn:barcode:33433032709556" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMF 83-93", - "type": "bf:ShelfMark" - }, - { - "value": "33433032709556", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Notated music" ], - "physicalLocation": [ - "JMF 83-93" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NP" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMF 83-93" - ], - "shelfMark_sort": "aJMF 83-000093", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942034" + ] }, "sort": [ null @@ -7640,12 +7719,15 @@ "createdYear": [ 1974 ], - "title": [ - "Uṇādi-koṣaḥ" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Uṇādi-koṣaḥ" + ], "shelfMark": [ "*OKA 84-1931" ], @@ -7676,9 +7758,6 @@ "dateStartYear": [ 1974 ], - "idOclc": [ - "NYPG001000014-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -7705,6 +7784,9 @@ "value": "(WaOLN)nyp0200029" } ], + "idOclc": [ + "NYPG001000014-B" + ], "uniformTitle": [ "Uṇādisūtra." ], @@ -7790,88 +7872,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKA 84-1931", + "urn:barcode:33433012968222" + ], + "physicalLocation": [ + "*OKA 84-1931" + ], + "shelfMark_sort": "a*OKA 84-001931", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433012968222" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKA 84-1931", - "urn:barcode:33433012968222" + "shelfMark": [ + "*OKA 84-1931" ], + "uri": "i10000007", "identifierV2": [ { - "value": "*OKA 84-1931", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKA 84-1931" }, { - "value": "33433012968222", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433012968222" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433012968222" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKA 84-1931" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKA 84-1931" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKA 84-001931", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000007" + ] }, "sort": [ null @@ -7914,6 +7996,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Neun Miniaturen : für Klavier : op. 52" ], @@ -8052,88 +8137,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-17", + "urn:barcode:33433032841631" + ], + "physicalLocation": [ + "JMG 83-17" + ], + "shelfMark_sort": "aJMG 83-000017", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032841631" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-17", - "urn:barcode:33433032841631" + "shelfMark": [ + "JMG 83-17" ], + "uri": "i10942035", "identifierV2": [ { - "value": "JMG 83-17", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-17" }, { - "value": "33433032841631", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032841631" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032841631" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-17" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-17" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000017", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942035" + ] }, "sort": [ null @@ -8191,6 +8276,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Buzurgān-i Jahrum : mushtamil bar sharḥ-i aḥvāl va ā̲sār-i rijāl va sukhanvarān va dānishmandān va khushnivīsān va pizishkān-i Jahrum va Khafr" ], @@ -8318,31 +8406,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" + } + ], + "identifier": [ + "urn:shelfmark:*OMP 84-2007", + "urn:barcode:33433013173012" + ], + "physicalLocation": [ + "*OMP 84-2007" + ], + "shelfMark_sort": "a*OMP 84-002007", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Text" + "shelfMark": [ + "*OMP 84-2007" ], - "holdingLocation": [ + "uri": "i10000008", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*OMP 84-2007" + }, + { + "type": "bf:Barcode", + "value": "33433013173012" } ], "holdingLocation_packed": [ @@ -8351,55 +8458,36 @@ "idBarcode": [ "33433013173012" ], - "identifier": [ - "urn:shelfmark:*OMP 84-2007", - "urn:barcode:33433013173012" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OMP 84-2007", - "type": "bf:ShelfMark" - }, - { - "value": "33433013173012", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OMP 84-2007" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OMP 84-2007" - ], - "shelfMark_sort": "a*OMP 84-002007", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000008" + ] }, "sort": [ null @@ -8450,6 +8538,9 @@ "createdYear": [ 1981 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Psalm settings" ], @@ -8580,88 +8671,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-59", + "urn:barcode:33433032842035" + ], + "physicalLocation": [ + "JMG 83-59" + ], + "shelfMark_sort": "aJMG 83-000059", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842035" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-59", - "urn:barcode:33433032842035" + "shelfMark": [ + "JMG 83-59" ], + "uri": "i10942036", "identifierV2": [ { - "value": "JMG 83-59", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-59" }, { - "value": "33433032842035", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842035" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842035" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-59" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-59" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000059", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942036" + ] }, "sort": [ null @@ -8723,12 +8814,15 @@ "createdYear": [ 1974 ], - "title": [ - "Brhatkathāślokasaṁgraha : a study" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Brhatkathāślokasaṁgraha : a study" + ], "shelfMark": [ "*OKR 84-2006" ], @@ -8744,12 +8838,12 @@ "idLccn": [ "74903273" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Indian civilization series ; no. 4" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Guṇāḍhya", "Agrawala, Vasudeva Sharana", @@ -8761,9 +8855,6 @@ "dateStartYear": [ 1974 ], - "idOclc": [ - "NYPG001000016-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -8790,6 +8881,9 @@ "value": "(WaOLN)nyp0200033" } ], + "idOclc": [ + "NYPG001000016-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -8869,88 +8963,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKR 84-2006", + "urn:barcode:33433011528696" + ], + "physicalLocation": [ + "*OKR 84-2006" + ], + "shelfMark_sort": "a*OKR 84-002006", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433011528696" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKR 84-2006", - "urn:barcode:33433011528696" + "shelfMark": [ + "*OKR 84-2006" ], + "uri": "i10000009", "identifierV2": [ { - "value": "*OKR 84-2006", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKR 84-2006" }, { - "value": "33433011528696", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433011528696" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433011528696" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKR 84-2006" + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKR 84-2006" - ], - "shelfMark_sort": "a*OKR 84-002006", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000009" + ] }, "sort": [ null @@ -9005,6 +9099,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -9108,15 +9205,15 @@ "placeOfPublication": [ "Amsterdam" ], + "titleAlt": [ + "Serenade" + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Serenade" - ], "tableOfContents": [ "Varianten -- Nocturne -- Toccata I -- Intermezzo -- Toccata II." ], @@ -9282,6 +9379,9 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Srīnārāyaṇatīrthayatīndracaritram[sic]" ], @@ -9419,88 +9519,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKB 84-1928", + "urn:barcode:33433058548433" + ], + "physicalLocation": [ + "*OKB 84-1928" + ], + "shelfMark_sort": "a*OKB 84-001928", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058548433" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKB 84-1928", - "urn:barcode:33433058548433" + "shelfMark": [ + "*OKB 84-1928" ], + "uri": "i12858032", "identifierV2": [ { - "value": "*OKB 84-1928", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKB 84-1928" }, { - "value": "33433058548433", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058548433" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058548433" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKB 84-1928" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKB 84-1928" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKB 84-001928", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12858032" + ] }, "sort": [ null @@ -9550,6 +9650,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Eight studies for guitar : in form of a suite : 1979" ], @@ -9682,88 +9785,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-5", + "urn:barcode:33433032841482" + ], + "physicalLocation": [ + "JMG 83-5" + ], + "shelfMark_sort": "aJMG 83-000005", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032841482" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-5", - "urn:barcode:33433032841482" + "shelfMark": [ + "JMG 83-5" ], + "uri": "i10942040", "identifierV2": [ { - "value": "JMG 83-5", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-5" }, { - "value": "33433032841482", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032841482" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032841482" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-5" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-5" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000005", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942040" + ] }, "sort": [ null @@ -9815,6 +9918,9 @@ "createdYear": [ 1975 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Rtambharā : Himācala ke ādhunika Saṃskrta kaviyoṃ kī kavitāyoṃ kā saṅkalana" ], @@ -9952,31 +10058,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKP 84-1932", + "urn:barcode:33433058153572" + ], + "physicalLocation": [ + "*OKP 84-1932" + ], + "shelfMark_sort": "a*OKP 84-001932", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OKP 84-1932" + ], + "uri": "i13783788", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OKP 84-1932" + }, { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:Barcode", + "value": "33433058153572" } ], "holdingLocation_packed": [ @@ -9985,55 +10110,36 @@ "idBarcode": [ "33433058153572" ], - "identifier": [ - "urn:shelfmark:*OKP 84-1932", - "urn:barcode:33433058153572" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OKP 84-1932", - "type": "bf:ShelfMark" - }, - { - "value": "33433058153572", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OKP 84-1932" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OKP 84-1932" - ], - "shelfMark_sort": "a*OKP 84-001932", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783788" + ] }, "sort": [ null @@ -10076,6 +10182,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Five sonatas for pianoforte" ], @@ -10216,88 +10325,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-66", + "urn:barcode:33433032842100" + ], + "physicalLocation": [ + "JMG 83-66" + ], + "shelfMark_sort": "aJMG 83-000066", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842100" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-66", - "urn:barcode:33433032842100" + "shelfMark": [ + "JMG 83-66" ], + "uri": "i10942041", "identifierV2": [ { - "value": "JMG 83-66", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-66" }, { - "value": "33433032842100", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842100" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842100" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-66" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-66" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000066", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942041" + ] }, "sort": [ null @@ -10347,6 +10456,9 @@ "createdYear": [ 1970 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Tiru. Vi. Kaliyāṇacuntaraṉār." ], @@ -10487,88 +10599,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OLB 84-1947", + "urn:barcode:33433061301622" + ], + "physicalLocation": [ + "*OLB 84-1947" + ], + "shelfMark_sort": "a*OLB 84-001947", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433061301622" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OLB 84-1947", - "urn:barcode:33433061301622" + "shelfMark": [ + "*OLB 84-1947" ], + "uri": "i13783789", "identifierV2": [ { - "value": "*OLB 84-1947", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OLB 84-1947" }, { - "value": "33433061301622", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433061301622" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433061301622" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OLB 84-1947" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OLB 84-1947" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OLB 84-001947", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783789" + ] }, "sort": [ null @@ -10619,6 +10731,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Encounter" ], @@ -10759,31 +10874,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "identifier": [ + "urn:shelfmark:JMF 83-66", + "urn:barcode:33433032709291" + ], + "physicalLocation": [ + "JMF 83-66" + ], + "shelfMark_sort": "aJMF 83-000066", + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Notated music" + "shelfMark": [ + "JMF 83-66" ], - "holdingLocation": [ + "uri": "i10942042", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMF 83-66" + }, + { + "type": "bf:Barcode", + "value": "33433032709291" } ], "holdingLocation_packed": [ @@ -10792,55 +10926,36 @@ "idBarcode": [ "33433032709291" ], - "identifier": [ - "urn:shelfmark:JMF 83-66", - "urn:barcode:33433032709291" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMF 83-66", - "type": "bf:ShelfMark" - }, - { - "value": "33433032709291", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Notated music" ], - "physicalLocation": [ - "JMF 83-66" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NP" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMF 83-66" - ], - "shelfMark_sort": "aJMF 83-000066", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942042" + ] }, "sort": [ null @@ -10894,6 +11009,9 @@ "dateEndString": [ "1972" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Sanatsujātīyadarśanam; Mahābhārata-Udyoga parva ke antargata brahmavidyā kā sandarbha. Śabdārtha evaṃ subodha Hindī-bhāṣya se samanvita." ], @@ -11038,88 +11156,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OKN 84-1926", + "urn:barcode:33433058618392" + ], + "physicalLocation": [ + "*OKN 84-1926" + ], + "shelfMark_sort": "a*OKN 84-001926", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058618392" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OKN 84-1926", - "urn:barcode:33433058618392" + "shelfMark": [ + "*OKN 84-1926" ], + "uri": "i13783790", "identifierV2": [ { - "value": "*OKN 84-1926", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OKN 84-1926" }, { - "value": "33433058618392", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058618392" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433058618392" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OKN 84-1926" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OKN 84-1926" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OKN 84-001926", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13783790" + ] }, "sort": [ null @@ -11180,6 +11298,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Capriccio : für 10 Blasinstrumente" ], @@ -11319,88 +11440,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMC 83-9", + "urn:barcode:33433004744128" + ], + "physicalLocation": [ + "JMC 83-9" + ], + "shelfMark_sort": "aJMC 83-000009", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433004744128" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMC 83-9", - "urn:barcode:33433004744128" + "shelfMark": [ + "JMC 83-9" ], + "uri": "i10000010", "identifierV2": [ { - "value": "JMC 83-9", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMC 83-9" }, { - "value": "33433004744128", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433004744128" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433004744128" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMC 83-9" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMC 83-9" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMC 83-000009", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000010" + ] }, "sort": [ null @@ -11465,12 +11586,15 @@ "createdYear": [ 1976 ], - "title": [ - "ʼJam-mgon Rgyal-ba gñis-paʼi Rgyal-tshab Dpal-ldan Bla-ma Dam-pa Khyab-bdag Khri-chen Byaṅ-chub-chos-ʼphel dpal-bzaṅ-poʼi rnam par thar pa Dgaʼ ldan bstan paʼi mdzes rgyab [sic] : the biography of the 69th Khri-chen of Dgaʼ-ʼldan Byaṅ-chub-chos-ʼphel" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "ʼJam-mgon Rgyal-ba gñis-paʼi Rgyal-tshab Dpal-ldan Bla-ma Dam-pa Khyab-bdag Khri-chen Byaṅ-chub-chos-ʼphel dpal-bzaṅ-poʼi rnam par thar pa Dgaʼ ldan bstan paʼi mdzes rgyab [sic] : the biography of the 69th Khri-chen of Dgaʼ-ʼldan Byaṅ-chub-chos-ʼphel" + ], "shelfMark": [ "*OZ+ 82-2361" ], @@ -11498,9 +11622,6 @@ "dateStartYear": [ 1976 ], - "idOclc": [ - "NYPG001000021-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -11527,6 +11648,9 @@ "value": "(WaOLN)nyp0200043" } ], + "idOclc": [ + "NYPG001000021-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -11611,88 +11735,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2361", + "urn:barcode:33433015080645" + ], + "physicalLocation": [ + "*OZ+ 82-2361" + ], + "shelfMark_sort": "a*OZ+ 82-002361", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080645" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2361", - "urn:barcode:33433015080645" + "shelfMark": [ + "*OZ+ 82-2361" ], + "uri": "i10000011", "identifierV2": [ { - "value": "*OZ+ 82-2361", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2361" }, { - "value": "33433015080645", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080645" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080645" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2361" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2361" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002361", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000011" + ] }, "sort": [ null @@ -11735,6 +11859,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Thoughts & feelings : for violin solo" ], @@ -11872,88 +11999,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 82-688", + "urn:barcode:33433032707568" + ], + "physicalLocation": [ + "JMG 82-688" + ], + "shelfMark_sort": "aJMG 82-000688", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032707568" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 82-688", - "urn:barcode:33433032707568" + "shelfMark": [ + "JMG 82-688" ], + "uri": "i10942043", "identifierV2": [ { - "value": "JMG 82-688", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 82-688" }, { - "value": "33433032707568", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032707568" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032707568" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 82-688" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 82-688" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 82-000688", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942043" + ] }, "sort": [ null @@ -12019,12 +12146,15 @@ "createdYear": [ 1976 ], - "title": [ - "Dpal Kye rdo rjeʼi phyi naṅ bskyed rim ñams len gnad kyi gsal byed sñan brgyud bstan pa rgyas paʼi ñin byed : a detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Dpal Kye rdo rjeʼi phyi naṅ bskyed rim ñams len gnad kyi gsal byed sñan brgyud bstan pa rgyas paʼi ñin byed : a detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra" + ], "shelfMark": [ "*OZ+ 82-2362" ], @@ -12052,9 +12182,6 @@ "dateStartYear": [ 1976 ], - "idOclc": [ - "NYPG001000022-B" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -12081,6 +12208,9 @@ "value": "(WaOLN)nyp0200045" } ], + "idOclc": [ + "NYPG001000022-B" + ], "popularity": 1, "updatedAt": 1729000306794, "publicationStatement": [ @@ -12133,17 +12263,17 @@ "placeOfPublication": [ "New Delhi" ], + "titleAlt": [ + "Rgyal ba rdo rje ʼchan Kun dgaʼ bzaṅ poʼi rnam par thar pa legs bśad chu bo ʼdus paʼi rgya mtsho yon tan yid bźin nor buʼi byuṅ gnas.", + "Detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra.", + "Life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po." + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Rgyal ba rdo rje ʼchan Kun dgaʼ bzaṅ poʼi rnam par thar pa legs bśad chu bo ʼdus paʼi rgya mtsho yon tan yid bźin nor buʼi byuṅ gnas.", - "Detailed exegesis of external and internal aspects of the visualization practice of the Hevajra tantra.", - "Life of the founder of the Ṅor-pa tradition, Ṅor-chen Kun-dgaʼ-bzaṅ-po." - ], "dimensions": [ "28 x 37 cm." ] @@ -12170,31 +12300,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2362", + "urn:barcode:33433015080413" + ], + "physicalLocation": [ + "*OZ+ 82-2362" + ], + "shelfMark_sort": "a*OZ+ 82-002362", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*OZ+ 82-2362" + ], + "uri": "i10000012", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2362" + }, { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:Barcode", + "value": "33433015080413" } ], "holdingLocation_packed": [ @@ -12203,55 +12352,36 @@ "idBarcode": [ "33433015080413" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2362", - "urn:barcode:33433015080413" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*OZ+ 82-2362", - "type": "bf:ShelfMark" - }, - { - "value": "33433015080413", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*OZ+ 82-2362" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*OZ+ 82-2362" - ], - "shelfMark_sort": "a*OZ+ 82-002362", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000012" + ] }, "sort": [ null @@ -12307,6 +12437,9 @@ "createdYear": [ 1979 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Vocalise, op. 38, for soprano, clarinet, piano, violin, violoncello" ], @@ -12450,88 +12583,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-79", + "urn:barcode:33433032842233" + ], + "physicalLocation": [ + "JMG 83-79" + ], + "shelfMark_sort": "aJMG 83-000079", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842233" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-79", - "urn:barcode:33433032842233" + "shelfMark": [ + "JMG 83-79" ], + "uri": "i10942044", "identifierV2": [ { - "value": "JMG 83-79", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-79" }, { - "value": "33433032842233", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842233" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842233" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-79" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-79" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000079", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942044" + ] }, "sort": [ null @@ -12587,6 +12720,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Bkra śis Tshe riṅ mai sgrub skor sogs : a collection of texts outlining the rites of the Five Long Lived Sisters and other highly esoteric rituals." ], @@ -12721,88 +12857,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2382", + "urn:barcode:33433015080439" + ], + "physicalLocation": [ + "*OZ+ 82-2382" + ], + "shelfMark_sort": "a*OZ+ 82-002382", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080439" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2382", - "urn:barcode:33433015080439" + "shelfMark": [ + "*OZ+ 82-2382" ], + "uri": "i10000013", "identifierV2": [ { - "value": "*OZ+ 82-2382", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2382" }, { - "value": "33433015080439", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080439" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080439" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2382" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2382" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002382", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000013" + ] }, "sort": [ null @@ -12853,6 +12989,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Symphony, op. 26 : full score" ], @@ -12996,31 +13135,50 @@ }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ + { + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + } + ], + "identifier": [ + "urn:shelfmark:JMG 83-80", + "urn:barcode:33433032842241" + ], + "physicalLocation": [ + "JMG 83-80" + ], + "shelfMark_sort": "aJMG 83-000080", + "catalogItemType_packed": [ + "catalogItemType:7||printed music, non-circ" + ], "accessMessage": [ { "id": "accessMessage:2", "label": "Request in advance" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:7", - "label": "printed music, non-circ" - } + "status_packed": [ + "status:a||Available" ], - "catalogItemType_packed": [ - "catalogItemType:7||printed music, non-circ" + "type": [ + "bf:Item" ], - "formatLiteral": [ - "Notated music" + "shelfMark": [ + "JMG 83-80" ], - "holdingLocation": [ + "uri": "i10942045", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMG 83-80" + }, + { + "type": "bf:Barcode", + "value": "33433032842241" } ], "holdingLocation_packed": [ @@ -13029,55 +13187,36 @@ "idBarcode": [ "33433032842241" ], - "identifier": [ - "urn:shelfmark:JMG 83-80", - "urn:barcode:33433032842241" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMG 83-80", - "type": "bf:ShelfMark" - }, - { - "value": "33433032842241", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:7", + "label": "printed music, non-circ" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Notated music" ], - "physicalLocation": [ - "JMG 83-80" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NP" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMG 83-80" - ], - "shelfMark_sort": "aJMG 83-000080", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942045" + ] }, "sort": [ null @@ -13138,6 +13277,9 @@ "createdYear": [ 1976 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "The rnam thar and mgur ʼbum of ʼBaʼ-ra-ba, with his Sgrub pa ñams su blaṅ baʼi lag len dgos ʼdod ʼbyuṅ baʼi gter mdzod." ], @@ -13280,88 +13422,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OZ+ 82-2381", + "urn:barcode:33433015080421" + ], + "physicalLocation": [ + "*OZ+ 82-2381" + ], + "shelfMark_sort": "a*OZ+ 82-002381", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433015080421" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OZ+ 82-2381", - "urn:barcode:33433015080421" + "shelfMark": [ + "*OZ+ 82-2381" ], + "uri": "i10000014", "identifierV2": [ { - "value": "*OZ+ 82-2381", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OZ+ 82-2381" }, { - "value": "33433015080421", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015080421" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433015080421" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OZ+ 82-2381" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OZ+ 82-2381" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OZ+ 82-002381", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000014" + ] }, "sort": [ null @@ -13412,6 +13554,9 @@ "createdYear": [ 1977 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "2 symfoni : Den forsvundne : baseret på musikken til filmen \"Den forsvundne fuldmægtig\" op. 69c, 1972" ], @@ -13560,88 +13705,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:7", - "label": "printed music, non-circ" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMG 83-75", + "urn:barcode:33433032842191" + ], + "physicalLocation": [ + "JMG 83-75" + ], + "shelfMark_sort": "aJMG 83-000075", "catalogItemType_packed": [ "catalogItemType:7||printed music, non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433032842191" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JMG 83-75", - "urn:barcode:33433032842191" + "shelfMark": [ + "JMG 83-75" ], + "uri": "i10942046", "identifierV2": [ { - "value": "JMG 83-75", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JMG 83-75" }, { - "value": "33433032842191", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433032842191" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433032842191" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JMG 83-75" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JMG 83-75" + "catalogItemType": [ + { + "id": "catalogItemType:7", + "label": "printed music, non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJMG 83-000075", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10942046" + ] }, "sort": [ null diff --git a/test/fixtures/query-d8058a0018e4ef1fd018fbfd2f821677.json b/test/fixtures/query-d8058a0018e4ef1fd018fbfd2f821677.json index f5c54994..3f2f26ed 100644 --- a/test/fixtures/query-d8058a0018e4ef1fd018fbfd2f821677.json +++ b/test/fixtures/query-d8058a0018e4ef1fd018fbfd2f821677.json @@ -1,5 +1,5 @@ { - "took": 96, + "took": 102, "timed_out": false, "_shards": { "total": 2, @@ -74,6 +74,9 @@ "numItemsTotal": [ 100 ], + "buildingLocationIds": [ + "pa" + ], "createdYear": [ 1991 ], @@ -86,12 +89,12 @@ "type": [ "nypl:Item" ], + "numItemVolumesParsed": [ + 64 + ], "shelfMark": [ "JMN 91-37" ], - "numItemVolumesParsed": [ - 63 - ], "createdString": [ "1991" ], @@ -141,7 +144,7 @@ "contributorLiteral": [ "Mayeda, Akio", "Niemöller, Klaus Wolfgang", - "Paganini, Nicolò, 1782-1840.", + "Paganini, Nicolò, 1782-1840", "Robert-Schumann-Gesellschaft Düsseldorf, issuing body", "Robert-Schumann-Haus Zwickau, issuing body" ], @@ -804,10 +807,10 @@ "value": "(OCoLC)24261548 (OCoLC)24555199 (OCoLC)25341179 (OCoLC)921918725 (OCoLC)923345847 (OCoLC)974752377 (OCoLC)976558002 (OCoLC)987010083 (OCoLC)1045748175 (OCoLC)1057109311 (OCoLC)1066804977 (OCoLC)1109464156 (OCoLC)1180843906 (OCoLC)1225693248 (OCoLC)1229937286" } ], + "popularity": 2, "uniformTitle": [ "Works. 1991" ], - "popularity": 2, "dateEndYear": [ 9999 ], @@ -1262,7 +1265,7 @@ "uri": "h1061152" } ], - "updatedAt": 1729001768022, + "updatedAt": 1731515296387, "publicationStatement": [ "Mainz ; New York : Schott, 1991-<2023>" ], @@ -1631,7 +1634,7 @@ "_id": "b11481799", "_nested": { "field": "items", - "offset": 17 + "offset": 18 }, "_score": null, "_source": { @@ -1710,13 +1713,13 @@ "type": [ "bf:Item" ], + "uri": "i40842752", "volumeRange": [ { "gte": 8, "lte": 8 } - ], - "uri": "i40842752" + ] }, "sort": [ " 8-" @@ -1727,7 +1730,7 @@ "_id": "b11481799", "_nested": { "field": "items", - "offset": 57 + "offset": 58 }, "_score": null, "_source": { @@ -1800,7 +1803,7 @@ "_id": "b11481799", "_nested": { "field": "items", - "offset": 70 + "offset": 71 }, "_score": null, "_source": { @@ -1905,6 +1908,10 @@ "createdYear": [ 201 ], + "buildingLocationIds": [ + "ma", + "rc" + ], "parallelTitle": [ "‏כותר שאינו באותיות לטינית = зглавие руссий." ], @@ -2619,97 +2626,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v.1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:k||Check with staff" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "uri": "i37857771", + "identifierV2": [ { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + }, + { + "type": "bf:Barcode", + "value": "3333333333" } ], "holdingLocation_packed": [ "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" ], + "enumerationChronology": [ + "v.1" + ], "idBarcode": [ "3333333333" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ false ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "status": [ { "id": "status:k", "label": "Check with staff" } ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i37857771" + ] }, "sort": [ " 1-" @@ -2724,88 +2731,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1103", + "label": "Dorot Jewish Division" } ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" ], - "enumerationChronology": [ - "nothing" + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "catalogItemType_packed": [ + "catalogItemType:3||serial" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmf2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "44455533322211" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" ], + "uri": "i37857772", "identifierV2": [ { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" }, { - "value": "44455533322211", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "44455533322211" } ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "enumerationChronology": [ + "nothing" + ], + "idBarcode": [ + "44455533322211" ], "owner_packed": [ "orgs:1103||Dorot Jewish Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ true ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" + ] }, "sort": [ null diff --git a/test/fixtures/query-dbade4d529ac9bce432e4a425809a743.json b/test/fixtures/query-dbade4d529ac9bce432e4a425809a743.json index 91887f2c..a660157f 100644 --- a/test/fixtures/query-dbade4d529ac9bce432e4a425809a743.json +++ b/test/fixtures/query-dbade4d529ac9bce432e4a425809a743.json @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.631155, + "max_score": 15.73737, "hits": [ { "_index": "resources-2024-10-22", "_id": "b14937001", - "_score": 15.631155, + "_score": 15.73737, "_source": { "note": [ { @@ -60,6 +60,10 @@ "dateEndString": [ "1uuu" ], + "buildingLocationIds": [ + "rc", + "ma" + ], "title": [ "Morgenblatt für gebildete leser." ], @@ -538,21 +542,23 @@ }, "_score": 0, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", + "urn:barcode:33433088646033" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -562,76 +568,74 @@ "lte": "1933" } ], - "enumerationChronology": [ - "Jahrg. Mar.-May 1933" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1933" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + ], + "uri": "i28309666", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + }, + { + "type": "bf:Barcode", + "value": "33433088646033" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], "idBarcode": [ "33433088646033" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", - "urn:barcode:33433088646033" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", - "type": "bf:ShelfMark" - }, - { - "value": "33433088646033", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309666" + ] } }, { @@ -643,21 +647,23 @@ }, "_score": 0, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "urn:barcode:33433096425198" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -667,76 +673,74 @@ "lte": "1855" } ], - "enumerationChronology": [ - "Jahrg. 49 (1855)" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1855" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "uri": "i28309648", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + }, + { + "type": "bf:Barcode", + "value": "33433096425198" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "Jahrg. 49 (1855)" + ], "idBarcode": [ "33433096425198" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", - "urn:barcode:33433096425198" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", - "type": "bf:ShelfMark" - }, - { - "value": "33433096425198", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309648" + ] } }, { @@ -748,21 +752,23 @@ }, "_score": 0, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "urn:barcode:33433088646041" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -772,76 +778,74 @@ "lte": "1861" } ], - "enumerationChronology": [ - "Jahrg. 1861" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1861" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "uri": "i28309668", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + }, + { + "type": "bf:Barcode", + "value": "33433088646041" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "Jahrg. 1861" + ], "idBarcode": [ "33433088646041" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", - "urn:barcode:33433088646041" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", - "type": "bf:ShelfMark" - }, - { - "value": "33433088646041", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309668" + ] } } ] @@ -864,21 +868,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", + "urn:barcode:33433088646033" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -888,76 +894,74 @@ "lte": "1933" } ], - "enumerationChronology": [ - "Jahrg. Mar.-May 1933" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1933" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + ], + "uri": "i28309666", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" + }, + { + "type": "bf:Barcode", + "value": "33433088646033" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "Jahrg. Mar.-May 1933" + ], "idBarcode": [ "33433088646033" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", - "urn:barcode:33433088646033" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933", - "type": "bf:ShelfMark" - }, - { - "value": "33433088646033", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 1933" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. Mar.-May 001933", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309666" + ] }, "sort": [ " -1933" @@ -972,21 +976,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", + "urn:barcode:33433088646041" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -996,76 +1002,74 @@ "lte": "1861" } ], - "enumerationChronology": [ - "Jahrg. 1861" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1861" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + ], + "uri": "i28309668", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" + }, + { + "type": "bf:Barcode", + "value": "33433088646041" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "Jahrg. 1861" + ], "idBarcode": [ "33433088646041" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", - "urn:barcode:33433088646041" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861", - "type": "bf:ShelfMark" - }, - { - "value": "33433088646041", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1861" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001861", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309668" + ] }, "sort": [ " -1861" @@ -1080,21 +1084,20 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", + "urn:barcode:33433097964930" ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -1104,67 +1107,68 @@ "lte": "1860" } ], - "enumerationChronology": [ - "Jahrg. 1860" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1860" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + ], + "uri": "i28543800", + "identifierV2": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + }, + { + "type": "bf:Barcode", + "value": "33433097964930" } ], "holdingLocation_packed": [ "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], + "enumerationChronology": [ + "Jahrg. 1860" + ], "idBarcode": [ "33433097964930" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", - "urn:barcode:33433097964930" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433097964930", - "type": "bf:Barcode" + "id": "catalogItemType:3", + "label": "serial" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 1860" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 001860", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28543800" + ] }, "sort": [ " -1860" @@ -1179,21 +1183,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", + "urn:barcode:33433096425198" + ], + "physicalLocation": [ + "*DF+ (Morgenblatt für gebildete Leser)" + ], + "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -1203,76 +1209,74 @@ "lte": "1855" } ], - "enumerationChronology": [ - "Jahrg. 49 (1855)" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1855" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + ], + "uri": "i28309648", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" + }, + { + "type": "bf:Barcode", + "value": "33433096425198" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "Jahrg. 49 (1855)" + ], "idBarcode": [ "33433096425198" ], - "identifier": [ - "urn:shelfmark:*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", - "urn:barcode:33433096425198" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", - "type": "bf:ShelfMark" - }, - { - "value": "33433096425198", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*DF+ (Morgenblatt für gebildete Leser)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)" - ], - "shelfMark_sort": "a*DF+ (Morgenblatt für gebildete Leser) Jahrg. 49 (1855)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28309648" + ] }, "sort": [ " -1855" diff --git a/test/fixtures/query-df30b31ca38a7e40cd8bd9778386e0ec.json b/test/fixtures/query-df30b31ca38a7e40cd8bd9778386e0ec.json index ef456b91..2eb8fd53 100644 --- a/test/fixtures/query-df30b31ca38a7e40cd8bd9778386e0ec.json +++ b/test/fixtures/query-df30b31ca38a7e40cd8bd9778386e0ec.json @@ -1,5 +1,5 @@ { - "took": 52, + "took": 61, "timed_out": false, "_shards": { "total": 2, @@ -46,6 +46,10 @@ "createdYear": [ 201 ], + "buildingLocationIds": [ + "ma", + "rc" + ], "parallelTitle": [ "‏כותר שאינו באותיות לטינית = зглавие руссий." ], @@ -760,97 +764,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v.1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:k||Check with staff" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "uri": "i37857771", + "identifierV2": [ { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + }, + { + "type": "bf:Barcode", + "value": "3333333333" } ], "holdingLocation_packed": [ "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" ], + "enumerationChronology": [ + "v.1" + ], "idBarcode": [ "3333333333" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ false ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "status": [ { "id": "status:k", "label": "Check with staff" } ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i37857771" + ] }, "sort": [ " 1-" @@ -865,88 +869,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1103", + "label": "Dorot Jewish Division" } ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" ], - "enumerationChronology": [ - "nothing" + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "catalogItemType_packed": [ + "catalogItemType:3||serial" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmf2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "44455533322211" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" ], + "uri": "i37857772", "identifierV2": [ { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" }, { - "value": "44455533322211", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "44455533322211" } ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "enumerationChronology": [ + "nothing" + ], + "idBarcode": [ + "44455533322211" ], "owner_packed": [ "orgs:1103||Dorot Jewish Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ true ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" + ] }, "sort": [ null diff --git a/test/fixtures/query-e0064d3fe01d09801fa38287f31365f9.json b/test/fixtures/query-e0064d3fe01d09801fa38287f31365f9.json index 235a19e6..3237f3f9 100644 --- a/test/fixtures/query-e0064d3fe01d09801fa38287f31365f9.json +++ b/test/fixtures/query-e0064d3fe01d09801fa38287f31365f9.json @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.631155, + "max_score": 15.73737, "hits": [ { "_index": "resources-2024-10-22", "_id": "b11984689", - "_score": 15.631155, + "_score": 15.73737, "_source": { "extent": [ "v. ill." @@ -65,6 +65,9 @@ "dateEndString": [ "1962" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Canadian woodworker; millwork, furniture, plywood." ], @@ -208,21 +211,9 @@ }, "_score": 0, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -232,11 +223,36 @@ "lte": "1962" } ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VMA (Canadian woodworker) v. 62 (Jan. -July 1962)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMA (Canadian woodworker) v. 62 (Jan. -July 1962)" + }, + { + "type": "bf:Barcode", + "value": "33433102813007" + } + ], "enumerationChronology": [ "v. 62 (Jan. -July 1962)" ], - "enumerationChronology_sort": [ - " 62-1962" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } ], "formatLiteral": [ "Text" @@ -247,24 +263,13 @@ "label": "Offsite" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433102813007" - ], - "identifier": [ - "urn:shelfmark:VMA (Canadian woodworker) v. 62 (Jan. -July 1962)", - "urn:barcode:33433102813007" + "recapCustomerCode": [ + "JS" ], - "identifierV2": [ - { - "value": "VMA (Canadian woodworker) v. 62 (Jan. -July 1962)", - "type": "bf:ShelfMark" - }, + "volumeRange": [ { - "value": "33433102813007", - "type": "bf:Barcode" + "gte": 62, + "lte": 62 } ], "owner": [ @@ -273,41 +278,39 @@ "label": "Stephen A. Schwarzman Building" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker) v. 62 (Jan. -July 1962)", + "urn:barcode:33433102813007" ], "physicalLocation": [ "VMA (Canadian woodworker)" ], - "recapCustomerCode": [ - "JS" + "shelfMark_sort": "aVMA (Canadian woodworker) v. 000062 (Jan. -July 1962)", + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 62-1962" + ], + "uri": "i29978114", + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433102813007" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "VMA (Canadian woodworker) v. 62 (Jan. -July 1962)" - ], - "shelfMark_sort": "aVMA (Canadian woodworker) v. 000062 (Jan. -July 1962)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 62, - "lte": 62 - } - ], - "uri": "i29978114" + ] } }, { @@ -319,21 +322,9 @@ }, "_score": 0, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -343,11 +334,36 @@ "lte": "1961" } ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VMA (Canadian woodworker) v. 61 (1961)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMA (Canadian woodworker) v. 61 (1961)" + }, + { + "type": "bf:Barcode", + "value": "33433102812850" + } + ], "enumerationChronology": [ "v. 61 (1961)" ], - "enumerationChronology_sort": [ - " 61-1961" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } ], "formatLiteral": [ "Text" @@ -358,24 +374,13 @@ "label": "Offsite" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433102812850" - ], - "identifier": [ - "urn:shelfmark:VMA (Canadian woodworker) v. 61 (1961)", - "urn:barcode:33433102812850" + "recapCustomerCode": [ + "JS" ], - "identifierV2": [ - { - "value": "VMA (Canadian woodworker) v. 61 (1961)", - "type": "bf:ShelfMark" - }, + "volumeRange": [ { - "value": "33433102812850", - "type": "bf:Barcode" + "gte": 61, + "lte": 61 } ], "owner": [ @@ -384,41 +389,39 @@ "label": "Stephen A. Schwarzman Building" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker) v. 61 (1961)", + "urn:barcode:33433102812850" ], "physicalLocation": [ "VMA (Canadian woodworker)" ], - "recapCustomerCode": [ - "JS" + "shelfMark_sort": "aVMA (Canadian woodworker) v. 000061 (1961)", + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 61-1961" + ], + "uri": "i29978115", + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433102812850" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "VMA (Canadian woodworker) v. 61 (1961)" - ], - "shelfMark_sort": "aVMA (Canadian woodworker) v. 000061 (1961)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 61, - "lte": 61 - } - ], - "uri": "i29978115" + ] } }, { @@ -430,21 +433,9 @@ }, "_score": 0, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -454,11 +445,36 @@ "lte": "1960" } ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VMA (Canadian woodworker) v. 60 (1960)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMA (Canadian woodworker) v. 60 (1960)" + }, + { + "type": "bf:Barcode", + "value": "33433102812553" + } + ], "enumerationChronology": [ "v. 60 (1960)" ], - "enumerationChronology_sort": [ - " 60-1960" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } ], "formatLiteral": [ "Text" @@ -469,24 +485,13 @@ "label": "Offsite" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433102812553" - ], - "identifier": [ - "urn:shelfmark:VMA (Canadian woodworker) v. 60 (1960)", - "urn:barcode:33433102812553" + "recapCustomerCode": [ + "JS" ], - "identifierV2": [ - { - "value": "VMA (Canadian woodworker) v. 60 (1960)", - "type": "bf:ShelfMark" - }, + "volumeRange": [ { - "value": "33433102812553", - "type": "bf:Barcode" + "gte": 60, + "lte": 60 } ], "owner": [ @@ -495,41 +500,39 @@ "label": "Stephen A. Schwarzman Building" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker) v. 60 (1960)", + "urn:barcode:33433102812553" ], "physicalLocation": [ "VMA (Canadian woodworker)" ], - "recapCustomerCode": [ - "JS" + "shelfMark_sort": "aVMA (Canadian woodworker) v. 000060 (1960)", + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 60-1960" + ], + "uri": "i29978117", + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433102812553" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "VMA (Canadian woodworker) v. 60 (1960)" - ], - "shelfMark_sort": "aVMA (Canadian woodworker) v. 000060 (1960)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 60, - "lte": 60 - } - ], - "uri": "i29978117" + ] } } ] @@ -552,21 +555,9 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -576,11 +567,36 @@ "lte": "1944" } ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "VMA (Canadian woodworker) v. 44 (1944)" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "VMA (Canadian woodworker) v. 44 (1944)" + }, + { + "type": "bf:Barcode", + "value": "33433102812199" + } + ], "enumerationChronology": [ "v. 44 (1944)" ], - "enumerationChronology_sort": [ - " 44-1944" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } ], "formatLiteral": [ "Text" @@ -591,24 +607,13 @@ "label": "Offsite" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" - ], - "idBarcode": [ - "33433102812199" - ], - "identifier": [ - "urn:shelfmark:VMA (Canadian woodworker) v. 44 (1944)", - "urn:barcode:33433102812199" + "recapCustomerCode": [ + "JS" ], - "identifierV2": [ - { - "value": "VMA (Canadian woodworker) v. 44 (1944)", - "type": "bf:ShelfMark" - }, + "volumeRange": [ { - "value": "33433102812199", - "type": "bf:Barcode" + "gte": 44, + "lte": 44 } ], "owner": [ @@ -617,41 +622,39 @@ "label": "Stephen A. Schwarzman Building" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "identifier": [ + "urn:shelfmark:VMA (Canadian woodworker) v. 44 (1944)", + "urn:barcode:33433102812199" ], "physicalLocation": [ "VMA (Canadian woodworker)" ], - "recapCustomerCode": [ - "JS" + "shelfMark_sort": "aVMA (Canadian woodworker) v. 000044 (1944)", + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 44-1944" + ], + "uri": "i29976055", + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433102812199" + ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], "requestable": [ true ], - "shelfMark": [ - "VMA (Canadian woodworker) v. 44 (1944)" - ], - "shelfMark_sort": "aVMA (Canadian woodworker) v. 000044 (1944)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "volumeRange": [ - { - "gte": 44, - "lte": 44 - } - ], - "uri": "i29976055" + ] }, "sort": [ " 44-1944" diff --git a/test/fixtures/query-ea3775938eb329a0a01dd120e48defee.json b/test/fixtures/query-ea3775938eb329a0a01dd120e48defee.json index bfe3732b..555298ac 100644 --- a/test/fixtures/query-ea3775938eb329a0a01dd120e48defee.json +++ b/test/fixtures/query-ea3775938eb329a0a01dd120e48defee.json @@ -1,5 +1,5 @@ { - "took": 602, + "took": 692, "timed_out": false, "_shards": { "total": 2, @@ -50,6 +50,9 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Dīwān Muḥammad al-ʻĪd Muḥammad ʻAlī Khalīfah." ], @@ -187,88 +190,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*OFA 82-5137", + "urn:barcode:33433002000671" + ], + "physicalLocation": [ + "*OFA 82-5137" + ], + "shelfMark_sort": "a*OFA 82-005137", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433002000671" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*OFA 82-5137", - "urn:barcode:33433002000671" + "shelfMark": [ + "*OFA 82-5137" ], + "uri": "i10000042", "identifierV2": [ { - "value": "*OFA 82-5137", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*OFA 82-5137" }, { - "value": "33433002000671", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433002000671" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433002000671" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*OFA 82-5137" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*OFA 82-5137" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "a*OFA 82-005137", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10000042" + ] }, "sort": [ null diff --git a/test/fixtures/query-ea715b9e10b9a6e2e1ae6abcb7bc25bb.json b/test/fixtures/query-ea715b9e10b9a6e2e1ae6abcb7bc25bb.json index ffd52dd7..b3b2e92f 100644 --- a/test/fixtures/query-ea715b9e10b9a6e2e1ae6abcb7bc25bb.json +++ b/test/fixtures/query-ea715b9e10b9a6e2e1ae6abcb7bc25bb.json @@ -1,5 +1,5 @@ { - "took": 1028, + "took": 1287, "timed_out": false, "_shards": { "total": 2, @@ -9,7 +9,7 @@ }, "hits": { "total": { - "value": 124, + "value": 126, "relation": "eq" }, "max_score": null, @@ -17,7 +17,7 @@ { "_index": "resources-2024-10-22", "_id": "b12709113", - "_score": 2430.5195, + "_score": 2453.356, "_source": { "extent": [ "iv, 350 p. : ill., port. ;" @@ -47,6 +47,9 @@ "createdYear": [ 1937 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "A history of Washington county, Nebraska" ], @@ -142,7 +145,7 @@ ] }, "sort": [ - 2430.5195, + 2453.356, "b12709113" ], "inner_hits": { @@ -163,79 +166,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)", + "urn:barcode:33433099509238" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" + ], + "shelfMark_sort": "aIWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433099509238" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)", - "urn:barcode:33433099509238" + "shelfMark": [ + "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" ], + "uri": "i16202472", "identifierV2": [ { - "value": "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" }, { - "value": "33433099509238", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433099509238" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" ], - "physicalLocation": [ - "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" + "idBarcode": [ + "33433099509238" ], "requestable": [ true ], - "shelfMark": [ - "IWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } ], - "shelfMark_sort": "aIWD (Washington co.) (Shrader, F. B. History of Washington county, Nebraska)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16202472" + ] }, "sort": [ null @@ -249,7 +252,7 @@ { "_index": "resources-2024-10-22", "_id": "b10024431", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "x, 242 p." @@ -290,6 +293,10 @@ "createdYear": [ 1969 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "dateEndString": [ "1903" ], @@ -425,7 +432,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b10024431" ], "inner_hits": { @@ -625,7 +632,7 @@ { "_index": "resources-2024-10-22", "_id": "b10578369", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "243 p. illus." @@ -669,6 +676,10 @@ "createdYear": [ 1972 ], + "buildingLocationIds": [ + "sc", + "rc" + ], "title": [ "Race, class, and political consciousness" ], @@ -809,7 +820,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b10578369" ], "inner_hits": { @@ -830,85 +841,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc E 02-1201", + "urn:barcode:33433018580450" + ], + "physicalLocation": [ + "Sc E 02-1201" + ], + "shelfMark_sort": "aSc E 02-001201", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018580450" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc E 02-1201", - "urn:barcode:33433018580450" + "shelfMark": [ + "Sc E 02-1201" ], + "uri": "i11038931", "identifierV2": [ { - "value": "Sc E 02-1201", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 02-1201" }, { - "value": "33433018580450", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018580450" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433018580450" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 02-1201" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 02-1201" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc E 02-001201", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11038931" + ] }, "sort": [ null @@ -923,88 +934,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:JLE 79-2381", + "urn:barcode:33433081059655" + ], + "physicalLocation": [ + "JLE 79-2381" + ], + "shelfMark_sort": "aJLE 79-002381", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433081059655" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JLE 79-2381", - "urn:barcode:33433081059655" + "shelfMark": [ + "JLE 79-2381" ], + "uri": "i11976916", "identifierV2": [ { - "value": "JLE 79-2381", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JLE 79-2381" }, { - "value": "33433081059655", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433081059655" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433081059655" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "JLE 79-2381" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "JLE 79-2381" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aJLE 79-002381", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11976916" + ] }, "sort": [ null @@ -1018,7 +1029,7 @@ { "_index": "resources-2024-10-22", "_id": "b10818236", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "112 p. : ill. ;" @@ -1192,7 +1203,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b10818236" ], "inner_hits": { @@ -1308,7 +1319,7 @@ { "_index": "resources-2024-10-22", "_id": "b10855482", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "62 p. ;" @@ -1344,6 +1355,9 @@ "createdYear": [ 1980 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Ensayos sobre el Caribe" ], @@ -1469,7 +1483,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b10855482" ], "inner_hits": { @@ -1490,85 +1504,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:HNB 84-199", + "urn:barcode:33433099014460" + ], + "physicalLocation": [ + "HNB 84-199" + ], + "shelfMark_sort": "aHNB 84-000199", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433099014460" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:HNB 84-199", - "urn:barcode:33433099014460" + "shelfMark": [ + "HNB 84-199" ], + "uri": "i15810175", "identifierV2": [ { - "value": "HNB 84-199", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "HNB 84-199" }, { - "value": "33433099014460", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433099014460" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433099014460" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "HNB 84-199" - ], "requestable": [ true ], - "shelfMark": [ - "HNB 84-199" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aHNB 84-000199", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15810175" + ] }, "sort": [ null @@ -1582,7 +1596,7 @@ { "_index": "resources-2024-10-22", "_id": "b10861449", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "185 p. : ill. ;" @@ -1615,6 +1629,9 @@ "createdYear": [ 1984 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "The year of miracle and grief" ], @@ -1741,7 +1758,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b10861449" ], "inner_hits": { @@ -1762,79 +1779,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "identifier": [ + "urn:shelfmark:**QDM 85-994", + "urn:barcode:33433059440952" + ], + "m2CustomerCode": [ + "XA" ], + "physicalLocation": [ + "**QDM 85-994" + ], + "shelfMark_sort": "a**QDM 85-000994", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433059440952" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:**QDM 85-994", - "urn:barcode:33433059440952" + "shelfMark": [ + "**QDM 85-994" ], + "uri": "i13931350", "identifierV2": [ { - "value": "**QDM 85-994", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "**QDM 85-994" }, { - "value": "33433059440952", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433059440952" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "**QDM 85-994" + "idBarcode": [ + "33433059440952" ], "requestable": [ true ], - "shelfMark": [ - "**QDM 85-994" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a**QDM 85-000994", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13931350" + ] }, "sort": [ null @@ -1848,7 +1865,7 @@ { "_index": "resources-2024-10-22", "_id": "b11205007", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "496 p. ;" @@ -1878,6 +1895,9 @@ "createdYear": [ 1986 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Mitología cubana" ], @@ -2000,7 +2020,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b11205007" ], "inner_hits": { @@ -2113,7 +2133,7 @@ { "_index": "resources-2024-10-22", "_id": "b11280922", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "viii, 152 p. : chiefly color ill. ;" @@ -2151,6 +2171,10 @@ "createdYear": [ 1989 ], + "buildingLocationIds": [ + "rc", + "sc" + ], "type": [ "nypl:Item" ], @@ -2288,7 +2312,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b11280922" ], "inner_hits": { @@ -2309,81 +2333,81 @@ }, "_score": null, "_source": { - "uri": "i12658931", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:1105", "label": "Irma and Paul Milstein Division of United States History, Local History and Genealogy" } ], - "owner_packed": [ - "orgs:1105||Irma and Paul Milstein Division of United States History, Local History and Genealogy" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:barcode:33433100845084" + ], + "physicalLocation": [ + "ITC+ 90-2828" ], + "shelfMark_sort": "aITC+ 90-002828", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmg2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmg2||Offsite" + "status_packed": [ + "status:a||Available" ], + "uri": "i12658931", "shelfMark": [ "ITC+ 90-2828" ], "identifierV2": [ { - "value": "ITC+ 90-2828", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ITC+ 90-2828" }, { "type": "bf:Barcode", "value": "33433100845084" } ], - "physicalLocation": [ - "ITC+ 90-2828" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433100845084" + "holdingLocation_packed": [ + "loc:rcmg2||Offsite" ], "idBarcode": [ "33433100845084" ], + "owner_packed": [ + "orgs:1105||Irma and Paul Milstein Division of United States History, Local History and Genealogy" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rcmg2", + "label": "Offsite" + } ], - "shelfMark_sort": "aITC+ 90-002828" + "recapCustomerCode": [ + "NA" + ] }, "sort": [ null @@ -2398,78 +2422,78 @@ }, "_score": null, "_source": { - "uri": "i12658932", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:1114", "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], - "owner_packed": [ - "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + "accessMessage_packed": [ + "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "identifier": [ + "urn:barcode:33433018663926" + ], + "physicalLocation": [ + "Sc+ G 03-1" ], + "shelfMark_sort": "aSc+ G 03-000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], + "uri": "i12658932", "shelfMark": [ "Sc+ G 03-1" ], "identifierV2": [ { - "value": "Sc+ G 03-1", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc+ G 03-1" }, { "type": "bf:Barcode", "value": "33433018663926" } ], - "physicalLocation": [ - "Sc+ G 03-1" - ], - "identifier": [ - "urn:barcode:33433018663926" + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" ], "idBarcode": [ "33433018663926" ], + "owner_packed": [ + "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + ], "requestable": [ false ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "catalogItemType:2", + "label": "book non-circ" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "shelfMark_sort": "aSc+ G 03-000001" + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } + ] }, "sort": [ null @@ -2483,7 +2507,7 @@ { "_index": "resources-2024-10-22", "_id": "b11425862", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "xii, 353 p., [12] p. of plates : ill. ;" @@ -2515,6 +2539,9 @@ "createdYear": [ 1991 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -2650,7 +2677,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b11425862" ], "inner_hits": { @@ -2671,81 +2698,81 @@ }, "_score": null, "_source": { - "uri": "i12674670", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:1000", "label": "Stephen A. Schwarzman Building" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:barcode:33433036991341" + ], + "physicalLocation": [ + "JBE 91-972" ], + "shelfMark_sort": "aJBE 91-000972", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], + "uri": "i12674670", "shelfMark": [ "JBE 91-972" ], "identifierV2": [ { - "value": "JBE 91-972", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JBE 91-972" }, { "type": "bf:Barcode", "value": "33433036991341" } ], - "physicalLocation": [ - "JBE 91-972" - ], - "recapCustomerCode": [ - "NA" - ], - "identifier": [ - "urn:barcode:33433036991341" + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" ], "idBarcode": [ "33433036991341" ], + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], - "shelfMark_sort": "aJBE 91-000972" + "recapCustomerCode": [ + "NA" + ] }, "sort": [ null @@ -2759,7 +2786,7 @@ { "_index": "resources-2024-10-22", "_id": "b11535326", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "479 p. ;" @@ -2797,6 +2824,10 @@ "createdYear": [ 1986 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Discursos escogidos, 1979-1983" ], @@ -2925,7 +2956,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b11535326" ], "inner_hits": { @@ -2946,85 +2977,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc D 01-1515", + "urn:barcode:33433059467153" + ], + "physicalLocation": [ + "Sc D 01-1515" + ], + "shelfMark_sort": "aSc D 01-001515", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433059467153" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc D 01-1515", - "urn:barcode:33433059467153" + "shelfMark": [ + "Sc D 01-1515" ], + "uri": "i10352589", "identifierV2": [ { - "value": "Sc D 01-1515", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc D 01-1515" }, { - "value": "33433059467153", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433059467153" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433059467153" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc D 01-1515" - ], "requestable": [ true ], - "shelfMark": [ - "Sc D 01-1515" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc D 01-001515", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10352589" + ] }, "sort": [ null @@ -3039,70 +3070,27 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" - ], - "idBarcode": [ - "33433098321981" - ], "identifier": [ "urn:shelfmark:HRG 92-3767", "urn:barcode:33433098321981" ], - "identifierV2": [ - { - "value": "HRG 92-3767", - "type": "bf:ShelfMark" - }, - { - "value": "33433098321981", - "type": "bf:Barcode" - } - ], "m2CustomerCode": [ "XA" ], "physicalLocation": [ "HRG 92-3767" ], - "requestable": [ - true - ], - "shelfMark": [ - "HRG 92-3767" - ], "shelfMark_sort": "aHRG 92-003767", - "status": [ + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "status:a", - "label": "Available" + "id": "accessMessage:1", + "label": "Use in library" } ], "status_packed": [ @@ -3111,7 +3099,50 @@ "type": [ "bf:Item" ], - "uri": "i10352588" + "shelfMark": [ + "HRG 92-3767" + ], + "uri": "i10352588", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "HRG 92-3767" + }, + { + "type": "bf:Barcode", + "value": "33433098321981" + } + ], + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" + ], + "idBarcode": [ + "33433098321981" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -3125,7 +3156,7 @@ { "_index": "resources-2024-10-22", "_id": "b11579218", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "190 p." @@ -3162,6 +3193,9 @@ "createdYear": [ 1957 ], + "buildingLocationIds": [ + "sc" + ], "title": [ "White man, listen!" ], @@ -3302,7 +3336,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b11579218" ], "inner_hits": { @@ -3508,7 +3542,7 @@ { "_index": "resources-2024-10-22", "_id": "b11687986", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "347 p. ;" @@ -3545,6 +3579,10 @@ "createdYear": [ 1967 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "African writing today." ], @@ -3667,7 +3705,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b11687986" ], "inner_hits": { @@ -3688,85 +3726,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc 808.8-M (Mphahlele, E. African writing today)", + "urn:barcode:33433070028810" + ], + "physicalLocation": [ + "Sc 808.8-M (Mphahlele, E. African writing today)" + ], + "shelfMark_sort": "aSc 808.8-M (Mphahlele, E. African writing today)", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433070028810" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc 808.8-M (Mphahlele, E. African writing today)", - "urn:barcode:33433070028810" + "shelfMark": [ + "Sc 808.8-M (Mphahlele, E. African writing today)" ], + "uri": "i10398899", "identifierV2": [ { - "value": "Sc 808.8-M (Mphahlele, E. African writing today)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc 808.8-M (Mphahlele, E. African writing today)" }, { - "value": "33433070028810", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433070028810" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433070028810" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc 808.8-M (Mphahlele, E. African writing today)" - ], "requestable": [ true ], - "shelfMark": [ - "Sc 808.8-M (Mphahlele, E. African writing today)" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc 808.8-M (Mphahlele, E. African writing today)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10398899" + ] }, "sort": [ null @@ -3781,79 +3819,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:C-13 4965", + "urn:barcode:33433101446361" ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "C-13 4965" + ], + "shelfMark_sort": "aC-13 004965", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433101446361" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:C-13 4965", - "urn:barcode:33433101446361" + "shelfMark": [ + "C-13 4965" ], + "uri": "i10398900", "identifierV2": [ { - "value": "C-13 4965", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "C-13 4965" }, { - "value": "33433101446361", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433101446361" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "C-13 4965" + "idBarcode": [ + "33433101446361" ], "requestable": [ true ], - "shelfMark": [ - "C-13 4965" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "aC-13 004965", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10398900" + ] }, "sort": [ null @@ -3867,7 +3905,7 @@ { "_index": "resources-2024-10-22", "_id": "b11798161", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "xii, 216 p. : map ;" @@ -3916,6 +3954,10 @@ "createdYear": [ 1993 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Imagining Ethiopia : struggles for history and identity in the Horn of Africa" ], @@ -4067,7 +4109,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b11798161" ], "inner_hits": { @@ -4088,85 +4130,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc E 02-1460", + "urn:barcode:33433017860945" + ], + "physicalLocation": [ + "Sc E 02-1460" + ], + "shelfMark_sort": "aSc E 02-001460", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "idBarcode": [ - "33433017860945" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:Sc E 02-1460", - "urn:barcode:33433017860945" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "Sc E 02-1460" ], + "uri": "i11167482", "identifierV2": [ { - "value": "Sc E 02-1460", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 02-1460" }, { - "value": "33433017860945", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433017860945" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433017860945" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 02-1460" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 02-1460" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc E 02-001460", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11167482" + ] }, "sort": [ null @@ -4181,79 +4223,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:JFE 93-12431", + "urn:barcode:33433070285527" + ], + "m2CustomerCode": [ + "XF" + ], + "physicalLocation": [ + "JFE 93-12431" ], + "shelfMark_sort": "aJFE 93-012431", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433070285527" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFE 93-12431", - "urn:barcode:33433070285527" + "shelfMark": [ + "JFE 93-12431" ], + "uri": "i11167481", "identifierV2": [ { - "value": "JFE 93-12431", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFE 93-12431" }, { - "value": "33433070285527", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433070285527" } ], - "m2CustomerCode": [ - "XF" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "JFE 93-12431" + "idBarcode": [ + "33433070285527" ], "requestable": [ true ], - "shelfMark": [ - "JFE 93-12431" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "aJFE 93-012431", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11167481" + ] }, "sort": [ null @@ -4267,7 +4309,7 @@ { "_index": "resources-2024-10-22", "_id": "b11946223", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "xv, 454 p., [26] p. of plates : ill., geneal. tables ;" @@ -4320,12 +4362,17 @@ "createdYear": [ 1994 ], - "title": [ - "The House of Percy : honor, melancholy, and imagination in a Southern family" + "buildingLocationIds": [ + "sc", + "rc", + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "The House of Percy : honor, melancholy, and imagination in a Southern family" + ], "shelfMark": [ "JFE 94-15682" ], @@ -4353,9 +4400,6 @@ "donor": [ "Gift of New York Genealogical and Biographical Society." ], - "idOclc": [ - "28294789" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -4386,14 +4430,13 @@ "value": "(WaOLN)nyp1935774" } ], + "idOclc": [ + "28294789" + ], "updatedAt": 1711082115184, "publicationStatement": [ "New York : Oxford University Press, 1994." ], - "idIsbn": [ - "SECOND COPY GIFT FOR SCHOMBURG", - "0195056264 (alk. paper)" - ], "identifier": [ "urn:shelfmark:JFE 94-15682", "urn:bnum:11946223", @@ -4403,6 +4446,10 @@ "urn:lccn:93020690", "urn:identifier:(WaOLN)nyp1935774" ], + "idIsbn": [ + "SECOND COPY GIFT FOR SCHOMBURG", + "0195056264 (alk. paper)" + ], "numCheckinCardItems": [ 0 ], @@ -4460,7 +4507,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b11946223" ], "inner_hits": { @@ -4481,85 +4528,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc E 03-852", + "urn:barcode:33433018663819" + ], + "physicalLocation": [ + "Sc E 03-852" + ], + "shelfMark_sort": "aSc E 03-000852", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018663819" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc E 03-852", - "urn:barcode:33433018663819" + "shelfMark": [ + "Sc E 03-852" ], + "uri": "i12219973", "identifierV2": [ { - "value": "Sc E 03-852", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 03-852" }, { - "value": "33433018663819", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018663819" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433018663819" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 03-852" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 03-852" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc E 03-000852", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12219973" + ] }, "sort": [ null @@ -4574,88 +4621,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:65", - "label": "book, good condition, non-MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:NYGB G P 4127", + "urn:barcode:33433085765687" + ], + "physicalLocation": [ + "NYGB G P 4127" + ], + "shelfMark_sort": "aNYGB G P 004127", "catalogItemType_packed": [ "catalogItemType:65||book, good condition, non-MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcma2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcma2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433085765687" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:NYGB G P 4127", - "urn:barcode:33433085765687" + "shelfMark": [ + "NYGB G P 4127" ], + "uri": "i23219257", "identifierV2": [ { - "value": "NYGB G P 4127", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "NYGB G P 4127" }, { - "value": "33433085765687", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433085765687" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rcma2||Offsite" + ], + "idBarcode": [ + "33433085765687" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "NYGB G P 4127" - ], - "recapCustomerCode": [ - "NQ" - ], "requestable": [ true ], - "shelfMark": [ - "NYGB G P 4127" + "catalogItemType": [ + { + "id": "catalogItemType:65", + "label": "book, good condition, non-MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcma2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NQ" ], - "shelfMark_sort": "aNYGB G P 004127", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i23219257" + ] }, "sort": [ null @@ -4670,85 +4717,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFE 94-15682", + "urn:barcode:33433078502899" + ], + "physicalLocation": [ + "JFE 94-15682" + ], + "shelfMark_sort": "aJFE 94-015682", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433078502899" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFE 94-15682", - "urn:barcode:33433078502899" + "shelfMark": [ + "JFE 94-15682" ], + "uri": "i12219972", "identifierV2": [ { - "value": "JFE 94-15682", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFE 94-15682" }, { - "value": "33433078502899", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433078502899" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433078502899" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFE 94-15682" - ], "requestable": [ true ], - "shelfMark": [ - "JFE 94-15682" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFE 94-015682", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12219972" + ] }, "sort": [ null @@ -4762,7 +4809,7 @@ { "_index": "resources-2024-10-22", "_id": "b12005666", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "xv, 305 p., [6] p. of plates : ill., map ;" @@ -4812,6 +4859,10 @@ "createdYear": [ 1995 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Indians at Hampton Institute, 1877-1923" ], @@ -4948,7 +4999,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b12005666" ], "inner_hits": { @@ -4969,85 +5020,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc E 03-842", + "urn:barcode:33433018663934" + ], + "physicalLocation": [ + "Sc E 03-842" + ], + "shelfMark_sort": "aSc E 03-000842", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018663934" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc E 03-842", - "urn:barcode:33433018663934" + "shelfMark": [ + "Sc E 03-842" ], + "uri": "i12227995", "identifierV2": [ { - "value": "Sc E 03-842", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 03-842" }, { - "value": "33433018663934", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018663934" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433018663934" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 03-842" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 03-842" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc E 03-000842", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12227995" + ] }, "sort": [ null @@ -5062,85 +5113,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:HBC 95-2988", + "urn:barcode:33433062825967" + ], + "physicalLocation": [ + "HBC 95-2988" + ], + "shelfMark_sort": "aHBC 95-002988", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433062825967" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:HBC 95-2988", - "urn:barcode:33433062825967" + "shelfMark": [ + "HBC 95-2988" ], + "uri": "i12227994", "identifierV2": [ { - "value": "HBC 95-2988", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "HBC 95-2988" }, { - "value": "33433062825967", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433062825967" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433062825967" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "HBC 95-2988" - ], "requestable": [ true ], - "shelfMark": [ - "HBC 95-2988" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aHBC 95-002988", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12227994" + ] }, "sort": [ null @@ -5154,7 +5205,7 @@ { "_index": "resources-2024-10-22", "_id": "b12116006", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "viii, 194 p." @@ -5180,6 +5231,9 @@ "createdYear": [ 1964 ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Hello, Dolly! A musical comedy. Book by Michael Stewart based on The matchmaker by Thornton Wilder. Music and lyrics by Jerry Herman. Directed and choreographed by Gower Champion. Piano reduction by Robert H. Noeltner." ], @@ -5316,7 +5370,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b12116006" ], "inner_hits": { @@ -5337,85 +5391,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc F 02-543", + "urn:barcode:33433017883194" + ], + "physicalLocation": [ + "Sc F 02-543" + ], + "shelfMark_sort": "aSc F 02-000543", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433017883194" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc F 02-543", - "urn:barcode:33433017883194" + "shelfMark": [ + "Sc F 02-543" ], + "uri": "i11238198", "identifierV2": [ { - "value": "Sc F 02-543", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc F 02-543" }, { - "value": "33433017883194", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433017883194" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433017883194" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc F 02-543" - ], "requestable": [ true ], - "shelfMark": [ - "Sc F 02-543" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc F 02-000543", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11238198" + ] }, "sort": [ null @@ -5429,7 +5483,7 @@ { "_index": "resources-2024-10-22", "_id": "b12361250", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "342 p." @@ -5474,6 +5528,9 @@ "dateEndString": [ "1889" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Alcohol inside out from bottom principles facts for the millions." ], @@ -5592,7 +5649,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b12361250" ], "inner_hits": { @@ -5613,100 +5670,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:6", - "label": "microfilm service copy" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*Z-7413 no. 1 no. 1-6", + "urn:barcode:33433107290128" + ], + "physicalLocation": [ + "*Z-7413 no. 1" + ], + "shelfMark_sort": "a*Z-7413 no. 000001 no. 1-6", "catalogItemType_packed": [ "catalogItemType:6||microfilm service copy" ], - "enumerationChronology": [ - "no. 1-6" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*Z-7413 no. 1 no. 1-6" + ], + "uri": "i30164992", + "identifierV2": [ { - "id": "loc:rcmi2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*Z-7413 no. 1 no. 1-6" + }, + { + "type": "bf:Barcode", + "value": "33433107290128" } ], "holdingLocation_packed": [ "loc:rcmi2||Offsite" ], + "enumerationChronology": [ + "no. 1-6" + ], "idBarcode": [ "33433107290128" ], - "identifier": [ - "urn:shelfmark:*Z-7413 no. 1 no. 1-6", - "urn:barcode:33433107290128" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*Z-7413 no. 1 no. 1-6", - "type": "bf:ShelfMark" - }, - { - "value": "33433107290128", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:6", + "label": "microfilm service copy" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*Z-7413 no. 1" + "holdingLocation": [ + { + "id": "loc:rcmi2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*Z-7413 no. 1 no. 1-6" - ], - "shelfMark_sort": "a*Z-7413 no. 000001 no. 1-6", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 6 } - ], - "uri": "i30164992" + ] }, "sort": [ " 1-" @@ -5720,7 +5777,7 @@ { "_index": "resources-2024-10-22", "_id": "b12657791", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "211 p. illus., ports." @@ -5750,6 +5807,9 @@ "createdYear": [ 1945 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Histoire d'Haïti, à l'usage des candidates au certificat d'études primaires, d'après le Manuel d'histoire d'Haïti" ], @@ -5864,7 +5924,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b12657791" ], "inner_hits": { @@ -5885,77 +5945,77 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], - "catalogItemType_packed": [ - "catalogItemType:2||book non-circ" + "identifier": [ + "urn:shelfmark:HPB (Brothers of Christian Instruction. Histoire d'Haiti)" ], - "formatLiteral": [ - "Text" + "physicalLocation": [ + "HPB (Brothers of Christian Instruction. Histoire d'Haiti)" ], - "holdingLocation": [ + "shelfMark_sort": "aHPB (Brothers of Christian Instruction. Histoire d'Haiti)", + "catalogItemType_packed": [ + "catalogItemType:2||book non-circ" + ], + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:HPB (Brothers of Christian Instruction. Histoire d'Haiti)" + "type": [ + "bf:Item" ], + "shelfMark": [ + "HPB (Brothers of Christian Instruction. Histoire d'Haiti)" + ], + "uri": "i16166841", "identifierV2": [ { - "value": "HPB (Brothers of Christian Instruction. Histoire d'Haiti)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "HPB (Brothers of Christian Instruction. Histoire d'Haiti)" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "HPB (Brothers of Christian Instruction. Histoire d'Haiti)" - ], "requestable": [ true ], - "shelfMark": [ - "HPB (Brothers of Christian Instruction. Histoire d'Haiti)" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aHPB (Brothers of Christian Instruction. Histoire d'Haiti)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16166841" + ] }, "sort": [ null @@ -5969,7 +6029,7 @@ { "_index": "resources-2024-10-22", "_id": "b12763093", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "viii, 114 p. : maps ;" @@ -6006,6 +6066,10 @@ "createdYear": [ 1963 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Africa past and present" ], @@ -6112,7 +6176,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b12763093" ], "inner_hits": { @@ -6133,97 +6197,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:61", - "label": "pamphlet volumes, bound with" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:C-12 9885 no. 1-8", + "urn:barcode:33433110584525" + ], + "physicalLocation": [ + "C-12 9885" + ], + "shelfMark_sort": "aC-12 9885 no. 000001-8", "catalogItemType_packed": [ "catalogItemType:61||pamphlet volumes, bound with" ], - "enumerationChronology": [ - "no. 1-8" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "C-12 9885 no. 1-8" + ], + "uri": "i31319399", + "identifierV2": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "type": "bf:ShelfMark", + "value": "C-12 9885 no. 1-8" + }, + { + "type": "bf:Barcode", + "value": "33433110584525" } ], "holdingLocation_packed": [ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], + "enumerationChronology": [ + "no. 1-8" + ], "idBarcode": [ "33433110584525" ], - "identifier": [ - "urn:shelfmark:C-12 9885 no. 1-8", - "urn:barcode:33433110584525" - ], - "identifierV2": [ - { - "value": "C-12 9885 no. 1-8", - "type": "bf:ShelfMark" - }, - { - "value": "33433110584525", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "C-12 9885" - ], "requestable": [ true ], - "shelfMark": [ - "C-12 9885 no. 1-8" + "catalogItemType": [ + { + "id": "catalogItemType:61", + "label": "pamphlet volumes, bound with" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aC-12 9885 no. 000001-8", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 8 } - ], - "uri": "i31319399" + ] }, "sort": [ " 1-" @@ -6238,85 +6302,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc C 03-369", + "urn:barcode:33433018555486" + ], + "physicalLocation": [ + "Sc C 03-369" + ], + "shelfMark_sort": "aSc C 03-000369", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018555486" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc C 03-369", - "urn:barcode:33433018555486" + "shelfMark": [ + "Sc C 03-369" ], + "uri": "i13435623", "identifierV2": [ { - "value": "Sc C 03-369", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc C 03-369" }, { - "value": "33433018555486", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018555486" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433018555486" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc C 03-369" - ], "requestable": [ true ], - "shelfMark": [ - "Sc C 03-369" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc C 03-000369", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13435623" + ] }, "sort": [ null @@ -6330,7 +6394,7 @@ { "_index": "resources-2024-10-22", "_id": "b13638125", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "141 p. : ill. ;" @@ -6493,7 +6557,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b13638125" ], "inner_hits": { @@ -6699,7 +6763,7 @@ { "_index": "resources-2024-10-22", "_id": "b13957410", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "286 p. : ill. ;" @@ -6740,6 +6804,10 @@ "createdYear": [ 1998 ], + "buildingLocationIds": [ + "sc", + "rc" + ], "title": [ "Rockers, jazzbos & visionaries" ], @@ -6871,7 +6939,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b13957410" ], "inner_hits": { @@ -6892,85 +6960,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "formatLiteral": [ - "Text" + "identifier": [ + "urn:shelfmark:Sc E 03-1387", + "urn:barcode:33433058173984" ], - "holdingLocation": [ + "physicalLocation": [ + "Sc E 03-1387" + ], + "shelfMark_sort": "aSc E 03-001387", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433058173984" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc E 03-1387", - "urn:barcode:33433058173984" + "shelfMark": [ + "Sc E 03-1387" ], + "uri": "i14440557", "identifierV2": [ { - "value": "Sc E 03-1387", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 03-1387" }, { - "value": "33433058173984", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433058173984" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433058173984" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 03-1387" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 03-1387" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc E 03-001387", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14440557" + ] }, "sort": [ null @@ -6985,88 +7053,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JME 99-57", + "urn:barcode:33433047473644" + ], + "physicalLocation": [ + "JME 99-57" + ], + "shelfMark_sort": "aJME 99-000057", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433047473644" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JME 99-57", - "urn:barcode:33433047473644" + "shelfMark": [ + "JME 99-57" ], + "uri": "i14440556", "identifierV2": [ { - "value": "JME 99-57", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JME 99-57" }, { - "value": "33433047473644", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433047473644" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433047473644" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JME 99-57" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JME 99-57" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJME 99-000057", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14440556" + ] }, "sort": [ null @@ -7080,7 +7148,7 @@ { "_index": "resources-2024-10-22", "_id": "b14192476", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "xvii, 264 p. : ill. ;" @@ -7125,6 +7193,9 @@ "createdYear": [ 1999 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "French colonial empire and the Popular Front : hope and disillusion" ], @@ -7269,7 +7340,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b14192476" ], "inner_hits": { @@ -7290,85 +7361,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFD 99-10935", + "urn:barcode:33433042458608" + ], + "physicalLocation": [ + "JFD 99-10935" + ], + "shelfMark_sort": "aJFD 99-010935", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433042458608" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFD 99-10935", - "urn:barcode:33433042458608" + "shelfMark": [ + "JFD 99-10935" ], + "uri": "i13675402", "identifierV2": [ { - "value": "JFD 99-10935", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFD 99-10935" }, { - "value": "33433042458608", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433042458608" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433042458608" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFD 99-10935" - ], "requestable": [ true ], - "shelfMark": [ - "JFD 99-10935" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFD 99-010935", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13675402" + ] }, "sort": [ null @@ -7382,7 +7453,7 @@ { "_index": "resources-2024-10-22", "_id": "b15021954", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "xlii, 567 p. ;" @@ -7420,6 +7491,10 @@ "createdYear": [ 2000 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Historical dictionary of Equatorial Guinea" ], @@ -7552,7 +7627,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b15021954" ], "inner_hits": { @@ -7573,85 +7648,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:-", - "label": "No restrictions" - } - ], "accessMessage_packed": [ "accessMessage:-||No restrictions" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)", + "urn:barcode:33433015882909" + ], + "physicalLocation": [ + "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)" + ], + "shelfMark_sort": "aSc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff1", - "label": "Schomburg Center - Research & Reference - Open Shelf" + "id": "accessMessage:-", + "label": "No restrictions" } ], - "holdingLocation_packed": [ - "loc:scff1||Schomburg Center - Research & Reference - Open Shelf" + "status_packed": [ + "status:o||Use in library" ], - "idBarcode": [ - "33433015882909" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)", - "urn:barcode:33433015882909" + "shelfMark": [ + "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)" ], + "uri": "i10908907", "identifierV2": [ { - "value": "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)" }, { - "value": "33433015882909", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433015882909" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff1||Schomburg Center - Research & Reference - Open Shelf" + ], + "idBarcode": [ + "33433015882909" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)" - ], "requestable": [ false ], - "shelfMark": [ - "Sc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff1", + "label": "Schomburg Center - Research & Reference - Open Shelf" + } ], - "shelfMark_sort": "aSc *967.18-L (Liniger-Goumaz, M. Historical dictionary of Equatorial Guinea)", "status": [ { "id": "status:o", "label": "Use in library" } - ], - "status_packed": [ - "status:o||Use in library" - ], - "type": [ - "bf:Item" - ], - "uri": "i10908907" + ] }, "sort": [ null @@ -7666,85 +7741,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:-", - "label": "No restrictions" - } - ], "accessMessage_packed": [ "accessMessage:-||No restrictions" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:*R-RMRR DT620.15 .L57 2000", + "urn:barcode:33433071345189" + ], + "physicalLocation": [ + "*R-RMRR DT620.15 .L57 2000" + ], + "shelfMark_sort": "a*R-RMRR DT620.15 .L57 002000", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" + "id": "accessMessage:-", + "label": "No restrictions" } ], - "holdingLocation_packed": [ - "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + "status_packed": [ + "status:o||Use in library" ], - "idBarcode": [ - "33433071345189" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*R-RMRR DT620.15 .L57 2000", - "urn:barcode:33433071345189" + "shelfMark": [ + "*R-RMRR DT620.15 .L57 2000" ], + "uri": "i10908906", "identifierV2": [ { - "value": "*R-RMRR DT620.15 .L57 2000", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*R-RMRR DT620.15 .L57 2000" }, { - "value": "33433071345189", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433071345189" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" + ], + "idBarcode": [ + "33433071345189" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "*R-RMRR DT620.15 .L57 2000" - ], "requestable": [ false ], - "shelfMark": [ - "*R-RMRR DT620.15 .L57 2000" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } ], - "shelfMark_sort": "a*R-RMRR DT620.15 .L57 002000", "status": [ { "id": "status:o", "label": "Use in library" } - ], - "status_packed": [ - "status:o||Use in library" - ], - "type": [ - "bf:Item" - ], - "uri": "i10908906" + ] }, "sort": [ null @@ -7758,7 +7833,7 @@ { "_index": "resources-2024-10-22", "_id": "b15340973", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "v." @@ -7796,6 +7871,9 @@ "dateEndString": [ "uuuu" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Verslag over het bestuur en den zakentoestand der Stad." ], @@ -7904,7 +7982,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b15340973" ], "inner_hits": { @@ -7925,21 +8003,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937", + "urn:barcode:33433014295111" + ], + "physicalLocation": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" + ], + "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-001937", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -7949,76 +8029,74 @@ "lte": "1937" } ], - "enumerationChronology": [ - "1936-1937" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1936" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937" + ], + "uri": "i11694436", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937" + }, + { + "type": "bf:Barcode", + "value": "33433014295111" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "1936-1937" + ], "idBarcode": [ "33433014295111" ], - "identifier": [ - "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937", - "urn:barcode:33433014295111" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937", - "type": "bf:ShelfMark" - }, - { - "value": "33433014295111", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-1937" - ], - "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1936-001937", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11694436" + ] }, "sort": [ " -1936" @@ -8033,21 +8111,23 @@ }, "_score": null, "_source": { - "accessMessage": [ + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "owner": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "identifier": [ + "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935", + "urn:barcode:33433014295129" ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } + "physicalLocation": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" ], + "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-001935", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -8057,76 +8137,74 @@ "lte": "1935" } ], - "enumerationChronology": [ - "1932-1935" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1932" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935" + ], + "uri": "i11694435", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935" + }, + { + "type": "bf:Barcode", + "value": "33433014295129" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "1932-1935" + ], "idBarcode": [ "33433014295129" ], - "identifier": [ - "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935", - "urn:barcode:33433014295129" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935", - "type": "bf:ShelfMark" - }, - { - "value": "33433014295129", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-1935" - ], - "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1932-001935", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11694435" + ] }, "sort": [ " -1932" @@ -8141,21 +8219,23 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931", + "urn:barcode:33433014295137" + ], + "physicalLocation": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" + ], + "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-001931", "catalogItemType_packed": [ "catalogItemType:3||serial" ], @@ -8165,76 +8245,74 @@ "lte": "1931" } ], - "enumerationChronology": [ - "1930-1931" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " -1930" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931" + ], + "uri": "i11694434", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931" + }, + { + "type": "bf:Barcode", + "value": "33433014295137" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "1930-1931" + ], "idBarcode": [ "33433014295137" ], - "identifier": [ - "urn:shelfmark:*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931", - "urn:barcode:33433014295137" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931", - "type": "bf:ShelfMark" - }, - { - "value": "33433014295137", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:3", + "label": "serial" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-1931" - ], - "shelfMark_sort": "a*SYN (Antwerp (city). Bourgmestre et échevins, Colleège des. Verslag over het bestuur en den zakentoestand der Stad) Library has: 1896-1937(Incomplete) 1930-001931", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11694434" + ] }, "sort": [ " -1930" @@ -8248,7 +8326,7 @@ { "_index": "resources-2024-10-22", "_id": "b15393792", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "vii, 196 p. : map ;" @@ -8293,6 +8371,10 @@ "createdYear": [ 2001 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "Civil blood : a Civil War mystery" ], @@ -8429,7 +8511,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b15393792" ], "inner_hits": { @@ -8450,85 +8532,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc E 03-795", + "urn:barcode:33433018585681" + ], + "physicalLocation": [ + "Sc E 03-795" + ], + "shelfMark_sort": "aSc E 03-000795", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018585681" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc E 03-795", - "urn:barcode:33433018585681" + "shelfMark": [ + "Sc E 03-795" ], + "uri": "i14562818", "identifierV2": [ { - "value": "Sc E 03-795", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 03-795" }, { - "value": "33433018585681", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018585681" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433018585681" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 03-795" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 03-795" - ], - "shelfMark_sort": "aSc E 03-000795", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "uri": "i14562818" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -8543,85 +8625,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFE 02-14816", + "urn:barcode:33433030975449" + ], + "physicalLocation": [ + "JFE 02-14816" + ], + "shelfMark_sort": "aJFE 02-014816", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433030975449" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFE 02-14816", - "urn:barcode:33433030975449" + "shelfMark": [ + "JFE 02-14816" ], + "uri": "i11756968", "identifierV2": [ { - "value": "JFE 02-14816", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFE 02-14816" }, { - "value": "33433030975449", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433030975449" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433030975449" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFE 02-14816" - ], "requestable": [ true ], - "shelfMark": [ - "JFE 02-14816" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFE 02-014816", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11756968" + ] }, "sort": [ null @@ -8636,85 +8718,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFE 02-14816", + "urn:barcode:33433018426258" + ], + "physicalLocation": [ + "JFE 02-14816" + ], + "shelfMark_sort": "aJFE 02-014816", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433018426258" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFE 02-14816", - "urn:barcode:33433018426258" + "shelfMark": [ + "JFE 02-14816" ], + "uri": "i11756967", "identifierV2": [ { - "value": "JFE 02-14816", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFE 02-14816" }, { - "value": "33433018426258", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433018426258" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433018426258" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFE 02-14816" - ], "requestable": [ true ], - "shelfMark": [ - "JFE 02-14816" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFE 02-014816", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i11756967" + ] }, "sort": [ null @@ -8728,7 +8810,7 @@ { "_index": "resources-2024-10-22", "_id": "b15568526", - "_score": 279.4066, + "_score": 277.8135, "_ignored": [ "title.keyword", "title.keywordLowercased", @@ -8781,6 +8863,9 @@ "createdYear": [ 2000 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "So︠t︡sialʹni ta politychni nauky u Spivdru︠z︡hnosti nezale︠z︡hnykh der︠z︡hav (SND) : dopovidi druhoï robochoï zustrichi, Kyïv, 23-24 veresn︠i︡a 1999 r. = Social and political sciences in the Commonwealth of Independent states (CIS) : proceedings of the Second Workshop, Kyiv, September, 23-24, 1999" ], @@ -8903,7 +8988,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b15568526" ], "inner_hits": { @@ -8924,88 +9009,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:*QGA 03-2333", + "urn:barcode:33433031887841" + ], + "physicalLocation": [ + "*QGA 03-2333" + ], + "shelfMark_sort": "a*QGA 03-002333", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433031887841" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*QGA 03-2333", - "urn:barcode:33433031887841" + "shelfMark": [ + "*QGA 03-2333" ], + "uri": "i12462040", "identifierV2": [ { - "value": "*QGA 03-2333", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*QGA 03-2333" }, { - "value": "33433031887841", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433031887841" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433031887841" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "*QGA 03-2333" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "*QGA 03-2333" - ], - "shelfMark_sort": "a*QGA 03-002333", - "status": [ + "catalogItemType": [ { - "id": "status:a", - "label": "Available" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "status_packed": [ - "status:a||Available" + "formatLiteral": [ + "Text" ], - "type": [ - "bf:Item" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "uri": "i12462040" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -9019,7 +9104,7 @@ { "_index": "resources-2024-10-22", "_id": "b15727834", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "xv, 336 p. : ill. ;" @@ -9063,12 +9148,15 @@ "createdYear": [ 2003 ], - "title": [ - "I never walked alone : the autobiography of an American singer" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "I never walked alone : the autobiography of an American singer" + ], "shelfMark": [ "JME 03-511" ], @@ -9093,9 +9181,6 @@ "dateStartYear": [ 2003 ], - "idOclc": [ - "vendor" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -9122,14 +9207,13 @@ "value": "2003002601" } ], + "idOclc": [ + "vendor" + ], "updatedAt": 1711013255913, "publicationStatement": [ "Hoboken, N.J. : John Wiley & Sons, c2003." ], - "idIsbn": [ - "GIFT REC'D AT SCH.", - "0471209910 (Cloth)" - ], "identifier": [ "urn:shelfmark:JME 03-511", "urn:bnum:15727834", @@ -9138,6 +9222,10 @@ "urn:oclc:vendor", "urn:lccn:2003002601" ], + "idIsbn": [ + "GIFT REC'D AT SCH.", + "0471209910 (Cloth)" + ], "numCheckinCardItems": [ 0 ], @@ -9194,7 +9282,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b15727834" ], "inner_hits": { @@ -9215,88 +9303,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JME 03-511", + "urn:barcode:33433035597842" + ], + "physicalLocation": [ + "JME 03-511" + ], + "shelfMark_sort": "aJME 03-000511", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433035597842" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JME 03-511", - "urn:barcode:33433035597842" + "shelfMark": [ + "JME 03-511" ], + "uri": "i12826752", "identifierV2": [ { - "value": "JME 03-511", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JME 03-511" }, { - "value": "33433035597842", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433035597842" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433035597842" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JME 03-511" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JME 03-511" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJME 03-000511", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i12826752" + ] }, "sort": [ null @@ -9310,7 +9398,7 @@ { "_index": "resources-2024-10-22", "_id": "b16081816", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "511 p." @@ -9348,6 +9436,9 @@ "createdYear": [ 1952 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Trudy I. V. Stalina o ︠i︡azykoznanii i voprosy istoricheskogo materializma." ], @@ -9475,7 +9566,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b16081816" ], "inner_hits": { @@ -9496,79 +9587,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:*QGF (Aleksandrov, G. Trudy)", + "urn:barcode:33433070398676" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "*QGF (Aleksandrov, G. Trudy)" ], + "shelfMark_sort": "a*QGF (Aleksandrov, G. Trudy)", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433070398676" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:*QGF (Aleksandrov, G. Trudy)", - "urn:barcode:33433070398676" + "shelfMark": [ + "*QGF (Aleksandrov, G. Trudy)" ], + "uri": "i15492993", "identifierV2": [ { - "value": "*QGF (Aleksandrov, G. Trudy)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*QGF (Aleksandrov, G. Trudy)" }, { - "value": "33433070398676", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433070398676" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "*QGF (Aleksandrov, G. Trudy)" + "idBarcode": [ + "33433070398676" ], "requestable": [ true ], - "shelfMark": [ - "*QGF (Aleksandrov, G. Trudy)" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "a*QGF (Aleksandrov, G. Trudy)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i15492993" + ] }, "sort": [ null @@ -9582,7 +9673,7 @@ { "_index": "resources-2024-10-22", "_id": "b18845012", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "199 p. : ill. ;" @@ -9632,12 +9723,15 @@ "createdYear": [ 2010 ], - "title": [ - "Salvador Dalí : Les chants de Maldoror, 1934" + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Salvador Dalí : Les chants de Maldoror, 1934" + ], "shelfMark": [ "MDG (Dali) 11-2416" ], @@ -9662,11 +9756,6 @@ "dateStartYear": [ 2010 ], - "idOclc": [ - "671870008", - "0671870008", - "it 60710530" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -9697,14 +9786,16 @@ "value": "(OCoLC)0671870008" } ], + "idOclc": [ + "671870008", + "0671870008", + "it 60710530" + ], "popularity": 0, "updatedAt": 1729181297739, "publicationStatement": [ "[Figueres, Spain] : Distribucions d'Art Surrealista, 2010." ], - "idIsbn": [ - "" - ], "identifier": [ "urn:shelfmark:MDG (Dali) 11-2416", "urn:bnum:18845012", @@ -9714,6 +9805,9 @@ "urn:oclc:it 60710530", "urn:identifier:(OCoLC)0671870008" ], + "idIsbn": [ + "" + ], "numCheckinCardItems": [ 0 ], @@ -9772,7 +9866,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b18845012" ], "inner_hits": { @@ -9793,87 +9887,87 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1112", + "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection" } ], + "identifier": [ + "urn:shelfmark:MDG (Dali) 11-2416", + "urn:barcode:33433090594536" + ], + "physicalLocation": [ + "MDG (Dali) 11-2416" + ], + "shelfMark_sort": "aMDG (Dali) 11-002416", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mauu2", - "label": "Schwarzman Building - Print Collection Room 308" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mauu2||Schwarzman Building - Print Collection Room 308" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090594536" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=MDG+%28Dali%29+11-2416&Date=2010&Form=30&Genre=book+non-circ&ItemEdition=1.+ed.&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db18845012&ItemISxN=i262430988&ItemNumber=33433090594536&ItemPlace=%5BFigueres%2C+Spain%5D&ItemPublisher=Distribucions+d%27Art+Surrealista%2C+2010.&Location=Schwarzman+Prints+and+Photographs+Division&ReferenceNumber=b188450129&Site=SASPR&Title=Salvador+Dal%C3%AD+%3A+Les+chants+de+Maldoror%2C+1934" ], - "identifier": [ - "urn:shelfmark:MDG (Dali) 11-2416", - "urn:barcode:33433090594536" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "MDG (Dali) 11-2416" ], + "uri": "i26243098", "identifierV2": [ { - "value": "MDG (Dali) 11-2416", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "MDG (Dali) 11-2416" }, { - "value": "33433090594536", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090594536" } ], - "owner": [ - { - "id": "orgs:1112", - "label": "The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection" - } + "holdingLocation_packed": [ + "loc:mauu2||Schwarzman Building - Print Collection Room 308" + ], + "idBarcode": [ + "33433090594536" ], "owner_packed": [ "orgs:1112||The Miriam and Ira D. Wallach Division of Art, Prints and Photographs: Print Collection" ], - "physicalLocation": [ - "MDG (Dali) 11-2416" - ], "requestable": [ false ], - "shelfMark": [ - "MDG (Dali) 11-2416" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mauu2", + "label": "Schwarzman Building - Print Collection Room 308" + } ], - "shelfMark_sort": "aMDG (Dali) 11-002416", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i26243098", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&CallNumber=MDG+%28Dali%29+11-2416&Date=2010&Form=30&Genre=book+non-circ&ItemEdition=1.+ed.&ItemInfo1=Use+in+library&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db18845012&ItemISxN=i262430988&ItemNumber=33433090594536&ItemPlace=%5BFigueres%2C+Spain%5D&ItemPublisher=Distribucions+d%27Art+Surrealista%2C+2010.&Location=Schwarzman+Prints+and+Photographs+Division&ReferenceNumber=b188450129&Site=SASPR&Title=Salvador+Dal%C3%AD+%3A+Les+chants+de+Maldoror%2C+1934" ] }, "sort": [ @@ -9888,7 +9982,7 @@ { "_index": "resources-2024-10-22", "_id": "b18883794", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "134 p. : ill. (some col.) ;" @@ -9927,12 +10021,15 @@ "createdYear": [ 2010 ], - "title": [ - "Le château Brethous : Camblanes-et-Meynac" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Le château Brethous : Camblanes-et-Meynac" + ], "shelfMark": [ "ReCAP 10-23065" ], @@ -9945,21 +10042,18 @@ "creatorLiteral": [ "Dupont, Aurélie." ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Châteaux viticoles de l'Entre-deux-Mers" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Coste, Laurent, 1961-" ], "dateStartYear": [ 2010 ], - "idOclc": [ - "666251824" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -9986,6 +10080,9 @@ "value": "(OCoLC)666251824" } ], + "idOclc": [ + "666251824" + ], "uniformTitle": [ "Châteaux viticoles de l'Entre-deux-Mers." ], @@ -9993,9 +10090,6 @@ "publicationStatement": [ "[Lignan-de-Bordeaux] : Société archéologique et historique du canton de Créon, 2010." ], - "idIsbn": [ - "(pbk.)" - ], "identifier": [ "urn:shelfmark:ReCAP 10-23065", "urn:bnum:18883794", @@ -10004,6 +10098,9 @@ "urn:identifier:(AUXAM)AAL0493710-0001", "urn:identifier:(OCoLC)666251824" ], + "idIsbn": [ + "(pbk.)" + ], "numCheckinCardItems": [ 0 ], @@ -10059,7 +10156,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b18883794" ], "inner_hits": { @@ -10080,88 +10177,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 10-23065", + "urn:barcode:33433090205430" + ], + "physicalLocation": [ + "ReCAP 10-23065" + ], + "shelfMark_sort": "aReCAP 10-023065", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090205430" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 10-23065", - "urn:barcode:33433090205430" + "shelfMark": [ + "ReCAP 10-23065" ], + "uri": "i26247203", "identifierV2": [ { - "value": "ReCAP 10-23065", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 10-23065" }, { - "value": "33433090205430", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090205430" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433090205430" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 10-23065" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 10-23065" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 10-023065", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i26247203" + ] }, "sort": [ null @@ -10175,7 +10272,7 @@ { "_index": "resources-2024-10-22", "_id": "b18890661", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "318 p. : ill., maps ;" @@ -10215,6 +10312,9 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Xivray-et-Marvoisin (Meuse) et ses familles de 1695 à 1933 : documents d'archives, documents privés" ], @@ -10340,7 +10440,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b18890661" ], "inner_hits": { @@ -10361,88 +10461,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 10-23290", + "urn:barcode:33433090203732" + ], + "physicalLocation": [ + "ReCAP 10-23290" + ], + "shelfMark_sort": "aReCAP 10-023290", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090203732" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 10-23290", - "urn:barcode:33433090203732" + "shelfMark": [ + "ReCAP 10-23290" ], + "uri": "i26309432", "identifierV2": [ { - "value": "ReCAP 10-23290", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 10-23290" }, { - "value": "33433090203732", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090203732" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433090203732" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 10-23290" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 10-23290" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 10-023290", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i26309432" + ] }, "sort": [ null @@ -10456,7 +10556,7 @@ { "_index": "resources-2024-10-22", "_id": "b18894005", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "200 p. : ill., maps ;" @@ -10501,6 +10601,9 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "La Révolution française dans le \"pays vallée de la Sarthe\", 1789-1800" ], @@ -10630,7 +10733,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b18894005" ], "inner_hits": { @@ -10651,88 +10754,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 10-24397", + "urn:barcode:33433090192968" + ], + "physicalLocation": [ + "ReCAP 10-24397" + ], + "shelfMark_sort": "aReCAP 10-024397", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090192968" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 10-24397", - "urn:barcode:33433090192968" + "shelfMark": [ + "ReCAP 10-24397" ], + "uri": "i26348705", "identifierV2": [ { - "value": "ReCAP 10-24397", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 10-24397" }, { - "value": "33433090192968", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090192968" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433090192968" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 10-24397" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 10-24397" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 10-024397", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i26348705" + ] }, "sort": [ null @@ -10746,7 +10849,7 @@ { "_index": "resources-2024-10-22", "_id": "b19274772", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "86 p. : ill. ;" @@ -10780,6 +10883,9 @@ "createdYear": [ 2009 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Au-dessus des djebels : aéronefs de l'armée de l'Air en AFN, 1945-1967 : moyens aériens engagés par l'armée de l'Air lors des opérations de pacification en 5ème RA" ], @@ -10900,7 +11006,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b19274772" ], "inner_hits": { @@ -10921,88 +11027,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 11-51203", + "urn:barcode:33433090183157" + ], + "physicalLocation": [ + "ReCAP 11-51203" + ], + "shelfMark_sort": "aReCAP 11-051203", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090183157" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 11-51203", - "urn:barcode:33433090183157" + "shelfMark": [ + "ReCAP 11-51203" ], + "uri": "i27468941", "identifierV2": [ { - "value": "ReCAP 11-51203", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 11-51203" }, { - "value": "33433090183157", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090183157" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433090183157" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 11-51203" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 11-51203" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 11-051203", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i27468941" + ] }, "sort": [ null @@ -11016,7 +11122,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626695", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "v. ;" @@ -11056,15 +11162,18 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "ma" + ], "dateEndString": [ "9999" ], - "title": [ - "Mariages et décès franco-belges dans l'Avesnois" - ], "type": [ "nypl:Item" ], + "title": [ + "Mariages et décès franco-belges dans l'Avesnois" + ], "shelfMark": [ "ReCAP 12-24738" ], @@ -11077,12 +11186,12 @@ "creatorLiteral": [ "Dubois, Lucette." ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Histoire en Sambre-Avesnois ; no 65" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Immereschts, Charles.", "Cercle historique et généalogique de Berlaimont." @@ -11090,9 +11199,6 @@ "dateStartYear": [ 2010 ], - "idOclc": [ - "670409914" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -11115,6 +11221,9 @@ "value": "(OCoLC)670409914" } ], + "idOclc": [ + "670409914" + ], "dateEndYear": [ 9999 ], @@ -11122,9 +11231,6 @@ "publicationStatement": [ "Berlaimont : Cercle historique et généalogique de Berlaimont, 2010-" ], - "idIsbn": [ - "(pbk.)" - ], "identifier": [ "urn:shelfmark:ReCAP 12-24738", "urn:bnum:19626695", @@ -11132,6 +11238,9 @@ "urn:oclc:670409914", "urn:identifier:(OCoLC)670409914" ], + "idIsbn": [ + "(pbk.)" + ], "numCheckinCardItems": [ 0 ], @@ -11186,7 +11295,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b19626695" ], "inner_hits": { @@ -11207,91 +11316,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:ReCAP 12-24738 v. 1", + "urn:barcode:33433094173238" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "ReCAP 12-24738" ], + "shelfMark_sort": "aReCAP 12-24738 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "ReCAP 12-24738 v. 1" + ], + "uri": "i28867446", + "identifierV2": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "type": "bf:ShelfMark", + "value": "ReCAP 12-24738 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433094173238" } ], "holdingLocation_packed": [ "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433094173238" ], - "identifier": [ - "urn:shelfmark:ReCAP 12-24738 v. 1", - "urn:barcode:33433094173238" + "requestable": [ + true ], - "identifierV2": [ - { - "value": "ReCAP 12-24738 v. 1", - "type": "bf:ShelfMark" - }, + "catalogItemType": [ { - "value": "33433094173238", - "type": "bf:Barcode" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "m2CustomerCode": [ - "XA" - ], - "physicalLocation": [ - "ReCAP 12-24738" - ], - "requestable": [ - true + "formatLiteral": [ + "Text" ], - "shelfMark": [ - "ReCAP 12-24738 v. 1" + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "aReCAP 12-24738 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i28867446" + ] }, "sort": [ " 1-" @@ -11305,7 +11414,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626711", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "169 p. ;" @@ -11357,6 +11466,9 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Niederroedern : les baptêmes, 1704-1789" ], @@ -11481,7 +11593,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b19626711" ], "inner_hits": { @@ -11502,88 +11614,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 12-51511", + "urn:barcode:33433094173394" + ], + "physicalLocation": [ + "ReCAP 12-51511" + ], + "shelfMark_sort": "aReCAP 12-051511", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433094173394" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 12-51511", - "urn:barcode:33433094173394" + "shelfMark": [ + "ReCAP 12-51511" ], + "uri": "i28732651", "identifierV2": [ { - "value": "ReCAP 12-51511", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 12-51511" }, { - "value": "33433094173394", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433094173394" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433094173394" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 12-51511" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 12-51511" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 12-051511", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28732651" + ] }, "sort": [ null @@ -11597,7 +11709,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626731", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "ii, 87 p. : charts ;" @@ -11644,12 +11756,15 @@ "createdYear": [ 2010 ], - "title": [ - "Nomain, Nord : B. M. S., 1683-1694" + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Nomain, Nord : B. M. S., 1683-1694" + ], "shelfMark": [ "ReCAP 12-51523" ], @@ -11662,21 +11777,18 @@ "creatorLiteral": [ "Malnar, Jacky." ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Publication (Centre d'études généalogiques du Douaisis) ; no 209" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Centre d'études généalogiques du Douaisis." ], "dateStartYear": [ 2010 ], - "idOclc": [ - "670409919" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -11699,6 +11811,9 @@ "value": "(OCoLC)670409919" } ], + "idOclc": [ + "670409919" + ], "uniformTitle": [ "Publication (Centre d'études généalogiques du Douaisis) ; no 209." ], @@ -11707,9 +11822,6 @@ "publicationStatement": [ "Douai : Centre d'études généalogiques du Douaisis, [2010]." ], - "idIsbn": [ - "(pbk.)" - ], "identifier": [ "urn:shelfmark:ReCAP 12-51523", "urn:bnum:19626731", @@ -11717,6 +11829,9 @@ "urn:oclc:670409919", "urn:identifier:(OCoLC)670409919" ], + "idIsbn": [ + "(pbk.)" + ], "numCheckinCardItems": [ 0 ], @@ -11757,15 +11872,15 @@ "placeOfPublication": [ "Douai" ], + "titleAlt": [ + "Nomain, Nord : baptêmes, mariages, sépultures, 1683-1694" + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Nomain, Nord : baptêmes, mariages, sépultures, 1683-1694" - ], "dimensions": [ "30 cm." ], @@ -11774,7 +11889,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b19626731" ], "inner_hits": { @@ -11795,79 +11910,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:ReCAP 12-51523", + "urn:barcode:33433094173451" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "ReCAP 12-51523" ], + "shelfMark_sort": "aReCAP 12-051523", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433094173451" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 12-51523", - "urn:barcode:33433094173451" + "shelfMark": [ + "ReCAP 12-51523" ], + "uri": "i28732700", "identifierV2": [ { - "value": "ReCAP 12-51523", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 12-51523" }, { - "value": "33433094173451", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433094173451" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building - General Research Room 315" ], - "physicalLocation": [ - "ReCAP 12-51523" + "idBarcode": [ + "33433094173451" ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 12-51523" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building - General Research Room 315" + } ], - "shelfMark_sort": "aReCAP 12-051523", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28732700" + ] }, "sort": [ null @@ -11881,7 +11996,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626820", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "231 p. ; " @@ -11907,6 +12022,7 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [], "title": [ "Wingen, les naissances" ], @@ -12013,7 +12129,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b19626820" ], "inner_hits": { @@ -12032,7 +12148,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626821", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "172 p. ; " @@ -12058,6 +12174,7 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [], "title": [ "Wingen, les décès" ], @@ -12164,7 +12281,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b19626821" ], "inner_hits": { @@ -12183,7 +12300,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626822", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "137 p. ; " @@ -12209,6 +12326,7 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [], "title": [ "Wingen, les naissances" ], @@ -12315,7 +12433,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b19626822" ], "inner_hits": { @@ -12334,7 +12452,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626833", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "107 p. ;" @@ -12377,6 +12495,9 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Hoffen : les mariages, 1793-1910" ], @@ -12500,7 +12621,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b19626833" ], "inner_hits": { @@ -12521,88 +12642,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 12-51536", + "urn:barcode:33433094175514" + ], + "physicalLocation": [ + "ReCAP 12-51536" + ], + "shelfMark_sort": "aReCAP 12-051536", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433094175514" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 12-51536", - "urn:barcode:33433094175514" + "shelfMark": [ + "ReCAP 12-51536" ], + "uri": "i28732751", "identifierV2": [ { - "value": "ReCAP 12-51536", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 12-51536" }, { - "value": "33433094175514", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433094175514" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433094175514" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 12-51536" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 12-51536" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 12-051536", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28732751" + ] }, "sort": [ null @@ -12616,7 +12737,7 @@ { "_index": "resources-2024-10-22", "_id": "b19626836", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "19, 98 p. ;" @@ -12667,6 +12788,9 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Schoenenbourg : Les sépultures, 1685-1792" ], @@ -12791,7 +12915,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b19626836" ], "inner_hits": { @@ -12812,88 +12936,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 12-51548", + "urn:barcode:33433094173683" + ], + "physicalLocation": [ + "ReCAP 12-51548" + ], + "shelfMark_sort": "aReCAP 12-051548", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433094173683" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 12-51548", - "urn:barcode:33433094173683" + "shelfMark": [ + "ReCAP 12-51548" ], + "uri": "i28732754", "identifierV2": [ { - "value": "ReCAP 12-51548", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 12-51548" }, { - "value": "33433094173683", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433094173683" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433094173683" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 12-51548" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 12-51548" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 12-051548", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i28732754" + ] }, "sort": [ null @@ -12907,50 +13031,14 @@ { "_index": "resources-2024-10-22", "_id": "b19797207", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "2 volumes : illustrations ;" ], - "parallelDisplayField": [ - { - "fieldName": "publicationStatement", - "index": 0, - "value": "Москва ; Краснодар ; Санкт Петербург : Лань : Планета музыки, 2013." - }, - { - "fieldName": "placeOfPublication", - "index": 0, - "value": "Москва ; Краснодар ; Санкт Петербург" - }, - { - "fieldName": "tableOfContents", - "index": 0, - "value": "Том 1: История: как всё начиналось; Мастера российского джаза -- Том 2: Мастера российского джаза (продолжение); Поколение XXI века: куда идём?; Проблемы и решения." - } - ], - "note": [ - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (pages 537-538).", - "type": "bf:Note" - } - ], "nyplSource": [ "sierra-nypl" ], - "subjectLiteral_exploded": [ - "Jazz", - "Jazz -- Russia (Federation)", - "Jazz -- Russia (Federation) -- History", - "Jazz -- Russia (Federation) -- History -- 20th century", - "Jazz musicians", - "Jazz musicians -- Russia (Federation)", - "Jazz musicians -- Russia (Federation) -- Biography" - ], - "numItemDatesParsed": [ - 0 - ], "publisherLiteral": [ "Lanʹ : Planeta muzyki" ], @@ -12963,46 +13051,27 @@ "label": "Russian" } ], - "numItemsTotal": [ - 2 - ], "createdYear": [ 2013 ], + "buildingLocationIds": [ + "rc" + ], "parallelTitle": [ "Российский джаз : в двух томах" ], - "title": [ - "Rossiĭskiĭ dzhaz : v dvukh tomakh" - ], "type": [ "nypl:Item" ], "shelfMark": [ "JMD 14-169" ], - "numItemVolumesParsed": [ - 2 - ], - "createdString": [ - "2013" - ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Mir kulʹtury, istorii i filosofii" ], - "contributorLiteral": [ - "Filipʹeva, A.", - "Moshkov, Kirill, 1968-" - ], "dateStartYear": [ 2013 ], - "idOclc": [ - "857364582" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -13062,10 +13131,6 @@ "value": "(OCoLC)857364582" } ], - "uniformTitle": [ - "Seri︠i︡a \"Mir kulʹtury, istorii i filosofii.\"" - ], - "popularity": 2, "parallelUniformTitle": [ "Серия \"Мир культуры, истории и философии.\"" ], @@ -13073,17 +13138,6 @@ "publicationStatement": [ "Moskva ; Krasnodar ; Sankt Peterburg : Lanʹ : Planeta muzyki, 2013." ], - "idIsbn": [ - "9785811414475 (v.1) (Izd-vo Lanʹ)", - "5811414471 (v.1) (Izd-vo Lanʹ)", - "9785919380801 (v. 1) (Izd-vo Planeta Muzyki)", - "5919380802 (v. 1) (Izd-vo Planeta Muzyki)", - "9785811414482 (v. 2) (Izd-vo Lanʹ)", - "581141448X (v. 2) (Izd-vo Lanʹ)", - "", - "9785919380818 (v. 2) (Izd-vo Planeta Muzyki)", - "5919380810 (v. 2) (Izd-vo Planeta Muzyki)" - ], "identifier": [ "urn:shelfmark:JMD 14-169", "urn:bnum:19797207", @@ -13100,10 +13154,105 @@ "urn:oclc:857364582", "urn:identifier:(OCoLC)857364582" ], - "numCheckinCardItems": [ - 0 - ], - "materialType": [ + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jazz -- Russia (Federation) -- History -- 20th century.", + "Jazz musicians -- Russia (Federation) -- Biography." + ], + "lccClassification": [ + "ML3509.R8 R677 2013" + ], + "parallelSeriesStatement": [ + "Мир культуры, истории и философии" + ], + "titleAlt": [ + "Russian jazz : ninety years of history" + ], + "tableOfContents": [ + "Tom 1: Istori︠i︡a: kak vsë nachinalosʹ; Mastera rossiĭskogo dzhaza -- Tom 2: Mastera rossiĭskogo dzhaza (prodolzhenie); Pokolenie XXI veka: kuda idëm?; Problemy i resheni︠i︡a." + ], + "parallelDisplayField": [ + { + "fieldName": "publicationStatement", + "index": 0, + "value": "Москва ; Краснодар ; Санкт Петербург : Лань : Планета музыки, 2013." + }, + { + "fieldName": "placeOfPublication", + "index": 0, + "value": "Москва ; Краснодар ; Санкт Петербург" + }, + { + "fieldName": "tableOfContents", + "index": 0, + "value": "Том 1: История: как всё начиналось; Мастера российского джаза -- Том 2: Мастера российского джаза (продолжение); Поколение XXI века: куда идём?; Проблемы и решения." + } + ], + "note": [ + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (pages 537-538).", + "type": "bf:Note" + } + ], + "subjectLiteral_exploded": [ + "Jazz", + "Jazz -- Russia (Federation)", + "Jazz -- Russia (Federation) -- History", + "Jazz -- Russia (Federation) -- History -- 20th century", + "Jazz musicians", + "Jazz musicians -- Russia (Federation)", + "Jazz musicians -- Russia (Federation) -- Biography" + ], + "numItemDatesParsed": [ + 0 + ], + "numItemsTotal": [ + 2 + ], + "title": [ + "Rossiĭskiĭ dzhaz : v dvukh tomakh" + ], + "numItemVolumesParsed": [ + 2 + ], + "createdString": [ + "2013" + ], + "numElectronicResources": [ + 0 + ], + "contributorLiteral": [ + "Filipʹeva, A.", + "Moshkov, Kirill, 1968-" + ], + "idOclc": [ + "857364582" + ], + "uniformTitle": [ + "Seri︠i︡a \"Mir kulʹtury, istorii i filosofii.\"" + ], + "popularity": 2, + "idIsbn": [ + "9785811414475 (v.1) (Izd-vo Lanʹ)", + "5811414471 (v.1) (Izd-vo Lanʹ)", + "9785919380801 (v. 1) (Izd-vo Planeta Muzyki)", + "5919380802 (v. 1) (Izd-vo Planeta Muzyki)", + "9785811414482 (v. 2) (Izd-vo Lanʹ)", + "581141448X (v. 2) (Izd-vo Lanʹ)", + "", + "9785919380818 (v. 2) (Izd-vo Planeta Muzyki)", + "5919380810 (v. 2) (Izd-vo Planeta Muzyki)" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ { "id": "resourcetypes:txt", "label": "Text" @@ -13118,30 +13267,14 @@ "dateString": [ "2013" ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "Jazz -- Russia (Federation) -- History -- 20th century.", - "Jazz musicians -- Russia (Federation) -- Biography." - ], "titleDisplay": [ "Rossiĭskiĭ dzhaz : v dvukh tomakh / pod redak︠t︡sieĭ K. Moshkova i A. Filipʹevoĭ." ], "uri": "b19797207", - "lccClassification": [ - "ML3509.R8 R677 2013" - ], "parallelContributorLiteral": [ "Филипьева, А.", "Мошков, Кирилл, 1968-" ], - "parallelSeriesStatement": [ - "Мир культуры, истории и философии" - ], "parallelTitleDisplay": [ "Российский джаз : в двух томах / под редакцией К. Мошкова и А. Филипьевой." ], @@ -13154,12 +13287,6 @@ "label": "monograph/item" } ], - "titleAlt": [ - "Russian jazz : ninety years of history" - ], - "tableOfContents": [ - "Tom 1: Istori︠i︡a: kak vsë nachinalosʹ; Mastera rossiĭskogo dzhaza -- Tom 2: Mastera rossiĭskogo dzhaza (prodolzhenie); Pokolenie XXI veka: kuda idëm?; Problemy i resheni︠i︡a." - ], "dimensions": [ "21 cm." ], @@ -13176,7 +13303,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b19797207" ], "inner_hits": { @@ -13197,100 +13324,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMD 14-169 v. 2", + "urn:barcode:33433111774158" + ], + "physicalLocation": [ + "JMD 14-169" + ], + "shelfMark_sort": "aJMD 14-169 v. 000002", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 2-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JMD 14-169 v. 2" + ], + "uri": "i31438752", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMD 14-169 v. 2" + }, + { + "type": "bf:Barcode", + "value": "33433111774158" } ], "holdingLocation_packed": [ "loc:rcpm2||Offsite" ], + "enumerationChronology": [ + "v. 2" + ], "idBarcode": [ "33433111774158" ], - "identifier": [ - "urn:shelfmark:JMD 14-169 v. 2", - "urn:barcode:33433111774158" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMD 14-169 v. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433111774158", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JMD 14-169" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMD 14-169 v. 2" - ], - "shelfMark_sort": "aJMD 14-169 v. 000002", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i31438752" + ] }, "sort": [ " 2-" @@ -13305,100 +13432,100 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JMD 14-169 v. 1", + "urn:barcode:33433111774166" + ], + "physicalLocation": [ + "JMD 14-169" + ], + "shelfMark_sort": "aJMD 14-169 v. 000001", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "enumerationChronology": [ - "v. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "JMD 14-169 v. 1" + ], + "uri": "i31438751", + "identifierV2": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "JMD 14-169 v. 1" + }, + { + "type": "bf:Barcode", + "value": "33433111774166" } ], "holdingLocation_packed": [ "loc:rcpm2||Offsite" ], + "enumerationChronology": [ + "v. 1" + ], "idBarcode": [ "33433111774166" ], - "identifier": [ - "urn:shelfmark:JMD 14-169 v. 1", - "urn:barcode:33433111774166" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "identifierV2": [ - { - "value": "JMD 14-169 v. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433111774166", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "JMD 14-169" + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "JMD 14-169 v. 1" - ], - "shelfMark_sort": "aJMD 14-169 v. 000001", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i31438751" + ] }, "sort": [ " 1-" @@ -13412,7 +13539,7 @@ { "_index": "resources-2024-10-22", "_id": "b20518533", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "248 p. : ill. (some col.), charts (some col.) ;" @@ -13466,6 +13593,9 @@ "createdYear": [ 2013 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "France-Brésil, échanges intellectuels et artistiques : repères historiques et prospectifs" ], @@ -13589,7 +13719,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "b20518533" ], "inner_hits": { @@ -13610,88 +13740,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 15-60536", + "urn:barcode:33433112874940" + ], + "physicalLocation": [ + "ReCAP 15-60536" + ], + "shelfMark_sort": "aReCAP 15-060536", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433112874940" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 15-60536", - "urn:barcode:33433112874940" + "shelfMark": [ + "ReCAP 15-60536" ], + "uri": "i32505166", "identifierV2": [ { - "value": "ReCAP 15-60536", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 15-60536" }, { - "value": "33433112874940", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433112874940" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433112874940" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 15-60536" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 15-60536" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 15-060536", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i32505166" + ] }, "sort": [ null @@ -13705,7 +13835,7 @@ { "_index": "resources-2024-10-22", "_id": "b20613060", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "93 pages ;" @@ -13742,6 +13872,7 @@ "createdYear": [ 2013 ], + "buildingLocationIds": [], "title": [ "Evreii din România : [Matineul de duminică, 2 - 17 februarie 2013]" ], @@ -13808,7 +13939,159 @@ } ], "dateString": [ - "2013" + "2013" + ], + "mediaType": [ + { + "id": "mediatypes:n", + "label": "unmediated" + } + ], + "subjectLiteral": [ + "Jews.", + "Romania." + ], + "titleDisplay": [ + "Evreii din România : [Matineul de duminică, 2 - 17 februarie 2013] / Ileana Buculei." + ], + "uri": "b20613060", + "placeOfPublication": [ + "Bucureşti" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "dimensions": [ + "22 cm" + ], + "idIsbn_clean": [ + "" + ] + }, + "sort": [ + 277.8135, + "b20613060" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 0, + "relation": "eq" + }, + "max_score": null, + "hits": [] + } + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b23380112", + "_score": 277.8135, + "_source": { + "extent": [ + "85 pages : illustrations ;" + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Tierra Nueva" + ], + "language": [ + { + "id": "lang:spa", + "label": "Spanish" + } + ], + "numItemsTotal": [ + 0 + ], + "createdYear": [ + 2023 + ], + "buildingLocationIds": [], + "title": [ + "Historia de San Joaquín de Omaguas : rescate de un linaje asombroso" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "2023" + ], + "creatorLiteral": [ + "Vílchez Vela, Percy, 1960-" + ], + "numElectronicResources": [ + 0 + ], + "dateStartYear": [ + 2023 + ], + "idOclc": [ + "00019739" + ], + "identifierV2": [ + { + "type": "nypl:Bnumber", + "value": "23380112" + }, + { + "type": "bf:Isbn", + "value": "9786124142765" + }, + { + "type": "bf:Isbn", + "value": "i" + }, + { + "type": "nypl:Oclc", + "value": "00019739" + } + ], + "popularity": 0, + "updatedAt": 1722431001509, + "publicationStatement": [ + "Iquitos, Perú : Tierra Nueva, 2023." + ], + "idIsbn": [ + "9786124142765", + "i" + ], + "identifier": [ + "urn:bnum:23380112", + "urn:isbn:9786124142765", + "urn:isbn:i", + "urn:oclc:00019739" + ], + "numCheckinCardItems": [ + 0 + ], + "materialType": [ + { + "id": "resourcetypes:txt", + "label": "Text" + } + ], + "carrierType": [ + { + "id": "carriertypes:nc", + "label": "volume" + } + ], + "dateString": [ + "2023" ], "mediaType": [ { @@ -13816,16 +14099,12 @@ "label": "unmediated" } ], - "subjectLiteral": [ - "Jews.", - "Romania." - ], "titleDisplay": [ - "Evreii din România : [Matineul de duminică, 2 - 17 februarie 2013] / Ileana Buculei." + "Historia de San Joaquín de Omaguas : rescate de un linaje asombroso / Percy Vílchez Vela." ], - "uri": "b20613060", + "uri": "b23380112", "placeOfPublication": [ - "Bucureşti" + "Iquitos, Perú" ], "issuance": [ { @@ -13834,15 +14113,16 @@ } ], "dimensions": [ - "22 cm" + "18 cm" ], "idIsbn_clean": [ + "9786124142765", "" ] }, "sort": [ - 279.4066, - "b20613060" + 277.8135, + "b23380112" ], "inner_hits": { "items": { @@ -13859,35 +14139,42 @@ }, { "_index": "resources-2024-10-22", - "_id": "b23380112", - "_score": 279.4066, + "_id": "b23454022", + "_score": 277.8135, "_source": { "extent": [ - "85 pages : illustrations ;" + "30, 2 unnumbered pages : illustrations ;" ], "nyplSource": [ "sierra-nypl" ], + "subjectLiteral_exploded": [ + "Tykocin (Poland)", + "Tykocin (Poland) -- History", + "Tykocin (Poland) -- History -- 17th century", + "Tykocin (Poland) -- History -- 17th century -- Historical comic books, stripes, etc" + ], "numItemDatesParsed": [ 0 ], "publisherLiteral": [ - "Tierra Nueva" + "Wydawnictwo Podlaski Młyn" ], "language": [ { - "id": "lang:spa", - "label": "Spanish" + "id": "lang:pol", + "label": "Polish" } ], "numItemsTotal": [ 0 ], + "buildingLocationIds": [], "createdYear": [ - 2023 + 2012 ], "title": [ - "Historia de San Joaquín de Omaguas : rescate de un linaje asombroso" + "Zdobycie Tykocina : 1657" ], "type": [ "nypl:Item" @@ -13896,52 +14183,54 @@ 0 ], "createdString": [ - "2023" - ], - "creatorLiteral": [ - "Vílchez Vela, Percy, 1960-" + "2012" ], "numElectronicResources": [ 0 ], + "contributorLiteral": [ + "Rudawski, Adam", + "Lebiedzińska, Kamila", + "Busłowski, Andrzej" + ], "dateStartYear": [ - 2023 + 2012 ], "idOclc": [ - "00019739" + "lx2024105775" ], "identifierV2": [ { "type": "nypl:Bnumber", - "value": "23380112" + "value": "23454022" }, { "type": "bf:Isbn", - "value": "9786124142765" + "value": "[without ISBN] ;" }, { - "type": "bf:Isbn", - "value": "i" + "type": "nypl:Oclc", + "value": "lx2024105775" }, { - "type": "nypl:Oclc", - "value": "00019739" + "type": "bf:Identifier", + "value": "(PlWaKWL)nr2145725974" } ], "popularity": 0, - "updatedAt": 1722431001509, + "updatedAt": 1730481867767, "publicationStatement": [ - "Iquitos, Perú : Tierra Nueva, 2023." + "Tykocin : Wydawnictwo Podlaski Młyn, 2012.", + "©2012" ], "idIsbn": [ - "9786124142765", - "i" + "[without ISBN] ;" ], "identifier": [ - "urn:bnum:23380112", - "urn:isbn:9786124142765", - "urn:isbn:i", - "urn:oclc:00019739" + "urn:bnum:23454022", + "urn:isbn:[without ISBN] ;", + "urn:oclc:lx2024105775", + "urn:identifier:(PlWaKWL)nr2145725974" ], "numCheckinCardItems": [ 0 @@ -13959,7 +14248,7 @@ } ], "dateString": [ - "2023" + "2012" ], "mediaType": [ { @@ -13967,12 +14256,18 @@ "label": "unmediated" } ], + "subjectLiteral": [ + "Tykocin (Poland) -- History -- 17th century -- Historical comic books, stripes, etc." + ], "titleDisplay": [ - "Historia de San Joaquín de Omaguas : rescate de un linaje asombroso / Percy Vílchez Vela." + "Zdobycie Tykocina : 1657 / scenariusz: Adam Rudawski; rysunki: Kamila Lebiedzińska, Andrzej Busłowski." + ], + "uri": "b23454022", + "lccClassification": [ + "PN6790.P63.4 Z36 2012" ], - "uri": "b23380112", "placeOfPublication": [ - "Iquitos, Perú" + "Tykocin" ], "issuance": [ { @@ -13981,16 +14276,15 @@ } ], "dimensions": [ - "18 cm" + "24 cm." ], "idIsbn_clean": [ - "9786124142765", "" ] }, "sort": [ - 279.4066, - "b23380112" + 277.8135, + "b23454022" ], "inner_hits": { "items": { @@ -14008,7 +14302,7 @@ { "_index": "resources-2024-10-22", "_id": "cb10558328", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "2 volumes ;" @@ -14058,27 +14352,30 @@ "createdYear": [ 2013 ], + "buildingLocationIds": [ + "rc" + ], "parallelTitle": [ "Российский джаз : в двух томах" ], - "title": [ - "Rossiĭskiĭ dzhaz : v dvukh tomakh" - ], "type": [ "nypl:Item" ], + "title": [ + "Rossiĭskiĭ dzhaz : v dvukh tomakh" + ], "numItemVolumesParsed": [ 0 ], "createdString": [ "2013" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Mir kulʹtury, istorii i filosofii" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Filipʹeva, A.", "Moshkov, Kirill, 1968-" @@ -14086,11 +14383,6 @@ "dateStartYear": [ 2013 ], - "idOclc": [ - "ocn857364582", - "857364582", - "SCSB-5718665" - ], "identifierV2": [ { "type": "nypl:Bnumber", @@ -14166,6 +14458,11 @@ "value": "10558328" } ], + "idOclc": [ + "ocn857364582", + "857364582", + "SCSB-5718665" + ], "uniformTitle": [ "Serii︠a︡ \"Mir kulʹtury, istorii i filosofii.\"" ], @@ -14176,17 +14473,6 @@ "publicationStatement": [ "Moskva ; Krasnodar ; Sankt Peterburg : Lanʹ : Planeta muzyki, 2013." ], - "idIsbn": [ - "9785811414475 (v.1) (Izd-vo Lanʹ)", - "5811414471 (v.1) (Izd-vo Lanʹ)", - "9785919380801 (v. 1) (Izd-vo Planeta Muzyki)", - "5919380802 (v. 1) (Izd-vo Planeta Muzyki)", - "9785811414482 (v. 2) (Izd-vo Lanʹ)", - "581141448X (v. 2) (Izd-vo Lanʹ)", - "", - "9785919380818 (v. 2) (Izd-vo Planeta Muzyki)", - "5919380810 (v. 2) (Izd-vo Planeta Muzyki)" - ], "identifier": [ "urn:bnum:10558328", "urn:isbn:9785811414475 (v.1) (Izd-vo Lanʹ)", @@ -14207,6 +14493,17 @@ "urn:identifier:(NNC)10558328", "urn:identifier:10558328" ], + "idIsbn": [ + "9785811414475 (v.1) (Izd-vo Lanʹ)", + "5811414471 (v.1) (Izd-vo Lanʹ)", + "9785919380801 (v. 1) (Izd-vo Planeta Muzyki)", + "5919380802 (v. 1) (Izd-vo Planeta Muzyki)", + "9785811414482 (v. 2) (Izd-vo Lanʹ)", + "581141448X (v. 2) (Izd-vo Lanʹ)", + "", + "9785919380818 (v. 2) (Izd-vo Planeta Muzyki)", + "5919380810 (v. 2) (Izd-vo Planeta Muzyki)" + ], "numCheckinCardItems": [ 0 ], @@ -14277,7 +14574,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "cb10558328" ], "inner_hits": { @@ -14298,82 +14595,82 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0002", + "label": "Columbia University Libraries" } ], + "identifier": [ + "urn:shelfmark:ML3509.R8 R677 2013g t.2", + "urn:barcode:CU23199733" + ], + "physicalLocation": [ + "ML3509.R8 R677 2013g" + ], + "shelfMark_sort": "aML3509.R8 R677 2013g t.000002", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "enumerationChronology": [ - "t.2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "formatLiteral": [ - "Text" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "CU23199733" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ML3509.R8 R677 2013g t.2", - "urn:barcode:CU23199733" + "shelfMark": [ + "ML3509.R8 R677 2013g t.2" ], + "uri": "ci8385547", "identifierV2": [ { - "value": "ML3509.R8 R677 2013g t.2", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ML3509.R8 R677 2013g t.2" }, { - "value": "CU23199733", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "CU23199733" } ], - "owner": [ - { - "id": "orgs:0002", - "label": "Columbia University Libraries" - } + "enumerationChronology": [ + "t.2" + ], + "idBarcode": [ + "CU23199733" ], "owner_packed": [ "orgs:0002||Columbia University Libraries" ], - "physicalLocation": [ - "ML3509.R8 R677 2013g" - ], - "recapCustomerCode": [ - "CU" - ], "requestable": [ true ], - "shelfMark": [ - "ML3509.R8 R677 2013g t.2" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "CU" ], - "shelfMark_sort": "aML3509.R8 R677 2013g t.000002", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "ci8385547" + ] }, "sort": [ null @@ -14388,82 +14685,82 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0002", + "label": "Columbia University Libraries" } ], + "identifier": [ + "urn:shelfmark:ML3509.R8 R677 2013g t.1", + "urn:barcode:CU23199741" + ], + "physicalLocation": [ + "ML3509.R8 R677 2013g" + ], + "shelfMark_sort": "aML3509.R8 R677 2013g t.000001", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "enumerationChronology": [ - "t.1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "formatLiteral": [ - "Text" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "CU23199741" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ML3509.R8 R677 2013g t.1", - "urn:barcode:CU23199741" + "shelfMark": [ + "ML3509.R8 R677 2013g t.1" ], + "uri": "ci8385546", "identifierV2": [ { - "value": "ML3509.R8 R677 2013g t.1", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ML3509.R8 R677 2013g t.1" }, { - "value": "CU23199741", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "CU23199741" } ], - "owner": [ - { - "id": "orgs:0002", - "label": "Columbia University Libraries" - } + "enumerationChronology": [ + "t.1" + ], + "idBarcode": [ + "CU23199741" ], "owner_packed": [ "orgs:0002||Columbia University Libraries" ], - "physicalLocation": [ - "ML3509.R8 R677 2013g" + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" ], "recapCustomerCode": [ "CU" ], - "requestable": [ - true - ], - "shelfMark": [ - "ML3509.R8 R677 2013g t.1" - ], - "shelfMark_sort": "aML3509.R8 R677 2013g t.000001", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "ci8385546" + ] }, "sort": [ null @@ -14477,7 +14774,7 @@ { "_index": "resources-2024-10-22", "_id": "cb131516", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "xii, 71 p. ;" @@ -14607,7 +14904,7 @@ ] }, "sort": [ - 279.4066, + 277.8135, "cb131516" ], "inner_hits": { @@ -14700,7 +14997,7 @@ { "_index": "resources-2024-10-22", "_id": "cb469529", - "_score": 279.4066, + "_score": 277.8135, "_source": { "extent": [ "48 p. : ill., maps (some col.) ;" @@ -14754,247 +15051,7 @@ "urn:isbn:(pa.)" ], "idIsbn": [ - "(pa.)" - ], - "materialType": [ - { - "id": "resourcetypes:txt", - "label": "Text" - } - ], - "carrierType": [ - { - "id": "carriertypes:nc", - "label": "volume" - } - ], - "dateString": [ - "1969" - ], - "mediaType": [ - { - "id": "mediatypes:n", - "label": "unmediated" - } - ], - "subjectLiteral": [ - "City planning -- Ontario -- Toronto." - ], - "titleDisplay": [ - "Plan for Yorkville : draft proposals / presented for the public discussion by the City of Toronto Planning Board." - ], - "uri": "cb469529", - "numItems": [ - 1 - ], - "numAvailable": [ - 1 - ], - "placeOfPublication": [ - "Toronto :" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "28 cm." - ] - }, - "sort": [ - 279.4066, - "cb469529" - ], - "inner_hits": { - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-10-22", - "_id": "cb469529", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:0002", - "label": "Columbia University Libraries" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "identifier": [ - "urn:barcode:AR52190137" - ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "ci713317", - "shelfMark": [ - "AA9130 T63 T6356" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "AA9130 T63 T6356" - }, - { - "type": "bf:Barcode", - "value": "AR52190137" - } - ], - "idBarcode": [ - "AR52190137" - ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ] - }, - "sort": [ - null - ] - } - ] - } - } - } - }, - { - "_index": "resources-2024-10-22", - "_id": "cb70235", - "_score": 279.4066, - "_source": { - "extent": [ - "312 p. ;" - ], - "nyplSource": [ - "recap-cul" - ], - "publisherLiteral": [ - "American Novelists' Cooperative Publications," - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "createdYear": [ - 1977 - ], - "type": [ - "nypl:Item" - ], - "title": [ - "Rabbi : a tale of the waning year / Stanley Sultan." - ], - "creatorLiteral": [ - "Sultan, Stanley." - ], - "createdString": [ - "1977" - ], - "idLccn": [ - " 77010052 " - ], - "dateStartYear": [ - 1977 - ], - "identifierV2": [ - { - "type": "nypl:Bnumber", - "value": "70235" - }, - { - "type": "bf:Isbn", - "value": "(pbk.)" - }, - { - "type": "bf:Lccn", - "value": " 77010052 " - }, - { - "type": "nypl:Oclc", - "value": "3168797" - }, - { - "type": "nypl:Oclc", - "value": "ocm03168797" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)3168797" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)ocm03168797" - }, - { - "type": "bf:Identifier", - "value": "(CStRLIN)NYCG82-B13057" - }, - { - "type": "bf:Identifier", - "value": "(NNC)70235" - } - ], - "idOclc": [ - "3168797", - "ocm03168797" - ], - "holdings": [], - "updatedAt": 1639675654859, - "publicationStatement": [ - "West Whately, Mass. : American Novelists' Cooperative Publications, c1977." - ], - "identifier": [ - "urn:bnum:70235", - "urn:isbn:(pbk.)", - "urn:lccn: 77010052 ", - "urn:oclc:3168797", - "urn:oclc:ocm03168797", - "urn:undefined:(OCoLC)3168797", - "urn:undefined:(OCoLC)ocm03168797", - "urn:undefined:(CStRLIN)NYCG82-B13057", - "urn:undefined:(NNC)70235" - ], - "idIsbn": [ - "(pbk.)" + "(pa.)" ], "materialType": [ { @@ -15009,7 +15066,7 @@ } ], "dateString": [ - "1977" + "1969" ], "mediaType": [ { @@ -15017,13 +15074,13 @@ "label": "unmediated" } ], - "titleDisplay": [ - "Rabbi : a tale of the waning year / Stanley Sultan." + "subjectLiteral": [ + "City planning -- Ontario -- Toronto." ], - "uri": "cb70235", - "lccClassification": [ - "PZ4.S9532 Rab PS3569.U3597" + "titleDisplay": [ + "Plan for Yorkville : draft proposals / presented for the public discussion by the City of Toronto Planning Board." ], + "uri": "cb469529", "numItems": [ 1 ], @@ -15031,7 +15088,7 @@ 1 ], "placeOfPublication": [ - "West Whately, Mass. :" + "Toronto :" ], "issuance": [ { @@ -15040,12 +15097,12 @@ } ], "dimensions": [ - "23 cm." + "28 cm." ] }, "sort": [ - 279.4066, - "cb70235" + 277.8135, + "cb469529" ], "inner_hits": { "items": { @@ -15058,76 +15115,72 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "cb70235", + "_id": "cb469529", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "uri": "ci106279", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:AR52190137" ], "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "ci713317", "shelfMark": [ - "PS3569.U3597 R3" + "AA9130 T63 T6356" ], "identifierV2": [ { - "value": "PS3569.U3597 R3", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "AA9130 T63 T6356" }, { "type": "bf:Barcode", - "value": "CU54669421" + "value": "AR52190137" } ], - "physicalLocation": [ - "PS3569.U3597 R3" - ], - "identifier": [ - "urn:barcode:CU54669421" - ], "idBarcode": [ - "CU54669421" + "AR52190137" + ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "shelfMark_sort": "aPS3569.U3597 R000003" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -15140,174 +15193,108 @@ }, { "_index": "resources-2024-10-22", - "_id": "pb99102451453506421", - "_score": 279.4066, + "_id": "cb70235", + "_score": 277.8135, "_source": { "extent": [ - "99 pages : many color illustrations ;" - ], - "note": [ - { - "noteType": "Note", - "label": "Includes biography and list of works (pages 95-97)", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes biography and list of works (pages 95-97).", - "type": "bf:Note" - }, - { - "noteType": "Language", - "label": "Text in English and Swedish.", - "type": "bf:Note" - } + "312 p. ;" ], "nyplSource": [ - "recap-pul" - ], - "subjectLiteral_exploded": [ - "Wåhlstrand, Gunnel, 1974-", - "Artists", - "Artists -- Sweden", - "Artists -- Sweden -- Exhibitions", - "Artists -- Sweden -- Biography", - "Ink painting", - "Ink painting -- Sweden", - "Ink painting -- Sweden -- Exhibitions", - "Painting, Swedish", - "Painting, Swedish -- 21st century", - "Painting, Swedish -- 21st century -- Exhibitions" - ], - "numItemDatesParsed": [ - 0 + "recap-cul" ], "publisherLiteral": [ - "Art and Theory" - ], - "description": [ - "Swedish artist Gunnel Wåhlstrand (b. 1974) creates extraordinary large-scale ink wash paintings featuring monumental landscapes, compelling portraits and serene interiors with intriguing compositions. The point of departure for Wåhlstrand's work was a box of family photographs, the only connection that she had to her father while growing up. To fill the silence surrounding his life and disappearance, she began to use these photographs: enlarging the image, delving into every detail and using her imagination to complete any information that is lacking or obscured. Each work takes months to complete, as the ink washes are applied in successive layers, gradually filling the white paper through a process that the artist likens to a slowly developing photograph. This book assembles all of the artist's works, including an interview with the artist and a text by Lars Norén." + "American Novelists' Cooperative Publications," ], "language": [ { - "id": "lang:mul", - "label": "Multiple languages" + "id": "lang:eng", + "label": "English" } ], - "numItemsTotal": [ - 1 - ], "createdYear": [ - 2017 + 1977 ], - "title": [ - "Gunnel Wåhlstrand" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], - "numItemVolumesParsed": [ - 0 + "title": [ + "Rabbi : a tale of the waning year / Stanley Sultan." + ], + "creatorLiteral": [ + "Sultan, Stanley." ], "createdString": [ - "2017" + "1977" ], "idLccn": [ - "2017367481" - ], - "numElectronicResources": [ - 0 - ], - "seriesStatement": [ - "Magasin 3 Stockholm konsthalls utställningskatalog ; no. 45" - ], - "contributorLiteral": [ - "Klintenberg Gedda, Ellen, 1989-", - "Lindblad, Jennifer", - "Neuman, David." + " 77010052 " ], "dateStartYear": [ - 2017 - ], - "idOclc": [ - "ocn988900729", - "SCSB-8795832" + 1977 ], "identifierV2": [ { "type": "nypl:Bnumber", - "value": "99102451453506421" - }, - { - "type": "bf:Isbn", - "value": "C (book trade edition : cl.)" + "value": "70235" }, { "type": "bf:Isbn", - "value": "9789188031440" + "value": "(pbk.)" }, { - "type": "bf:Isbn", - "value": "9188031446" + "type": "bf:Lccn", + "value": " 77010052 " }, { "type": "nypl:Oclc", - "value": "ocn988900729" + "value": "3168797" }, { "type": "nypl:Oclc", - "value": "SCSB-8795832" - }, - { - "type": "bf:Lccn", - "value": "2017367481" - }, - { - "type": "bf:Identifier", - "value": "(NL-AmEBA)NTS250337" + "value": "ocm03168797" }, { "type": "bf:Identifier", - "value": "(NjP)10245145-princetondb" + "value": "(OCoLC)3168797" }, { "type": "bf:Identifier", - "value": "(OCoLC)ocn988900729" + "value": "(OCoLC)ocm03168797" }, { "type": "bf:Identifier", - "value": "(OCoLC)981545584 (OCoLC)981867608" + "value": "(CStRLIN)NYCG82-B13057" }, { "type": "bf:Identifier", - "value": "(NjP)Voyager10245145" + "value": "(NNC)70235" } ], - "updatedAt": 1715301569503, - "publicationStatement": [ - "Stockholm : Art and Theory, [2017]" + "idOclc": [ + "3168797", + "ocm03168797" ], - "idIsbn": [ - "C (book trade edition : cl.)", - "9789188031440", - "9188031446" + "holdings": [], + "updatedAt": 1639675654859, + "publicationStatement": [ + "West Whately, Mass. : American Novelists' Cooperative Publications, c1977." ], "identifier": [ - "urn:bnum:99102451453506421", - "urn:isbn:C (book trade edition : cl.)", - "urn:isbn:9789188031440", - "urn:isbn:9188031446", - "urn:oclc:ocn988900729", - "urn:oclc:SCSB-8795832", - "urn:lccn:2017367481", - "urn:identifier:(NL-AmEBA)NTS250337", - "urn:identifier:(NjP)10245145-princetondb", - "urn:identifier:(OCoLC)ocn988900729", - "urn:identifier:(OCoLC)981545584 (OCoLC)981867608", - "urn:identifier:(NjP)Voyager10245145" + "urn:bnum:70235", + "urn:isbn:(pbk.)", + "urn:lccn: 77010052 ", + "urn:oclc:3168797", + "urn:oclc:ocm03168797", + "urn:undefined:(OCoLC)3168797", + "urn:undefined:(OCoLC)ocm03168797", + "urn:undefined:(CStRLIN)NYCG82-B13057", + "urn:undefined:(NNC)70235" ], - "numCheckinCardItems": [ - 0 + "idIsbn": [ + "(pbk.)" ], "materialType": [ { @@ -15322,30 +15309,29 @@ } ], "dateString": [ - "2017" + "1977" ], "mediaType": [ { - "id": "mediatypes:undefined", + "id": "mediatypes:n", "label": "unmediated" } ], - "subjectLiteral": [ - "Wåhlstrand, Gunnel, 1974-", - "Artists -- Sweden -- Exhibitions.", - "Artists -- Sweden -- Biography.", - "Ink painting -- Sweden -- Exhibitions.", - "Painting, Swedish -- 21st century -- Exhibitions." - ], "titleDisplay": [ - "Gunnel Wåhlstrand / editors: Ellen Klintenberg Gedda, Jennifer Lindblad ; texts: David Neuman [and 3 others] ; translation: Karin Altenberg, Robin Robertson, Suzanne Cheadle Martin." + "Rabbi : a tale of the waning year / Stanley Sultan." ], - "uri": "pb99102451453506421", + "uri": "cb70235", "lccClassification": [ - "N7088.6 .A45 2009" + "PZ4.S9532 Rab PS3569.U3597" + ], + "numItems": [ + 1 + ], + "numAvailable": [ + 1 ], "placeOfPublication": [ - "Stockholm" + "West Whately, Mass. :" ], "issuance": [ { @@ -15354,17 +15340,12 @@ } ], "dimensions": [ - "37 cm." - ], - "idIsbn_clean": [ - "", - "9789188031440", - "9188031446" + "23 cm." ] }, "sort": [ - 279.4066, - "pb99102451453506421" + 277.8135, + "cb70235" ], "inner_hits": { "items": { @@ -15377,86 +15358,76 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "pb99102451453506421", + "_id": "cb70235", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ + "owner": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "orgs:0002", + "label": "Columbia University Libraries" } ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:CU54669421" ], + "physicalLocation": [ + "PS3569.U3597 R3" + ], + "shelfMark_sort": "aPS3569.U3597 R000003", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } ], - "idBarcode": [ - "32101101205050" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:N7088.6 .A45 2009q Oversize", - "urn:barcode:32101101205050" + "uri": "ci106279", + "shelfMark": [ + "PS3569.U3597 R3" ], "identifierV2": [ { - "value": "N7088.6 .A45 2009q Oversize", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PS3569.U3597 R3" }, { - "value": "32101101205050", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "CU54669421" } ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } + "idBarcode": [ + "CU54669421" ], "owner_packed": [ - "orgs:0003||Princeton University Library" - ], - "physicalLocation": [ - "N7088.6 .A45 2009q Oversize" - ], - "recapCustomerCode": [ - "PJ" + "orgs:0002||Columbia University Libraries" ], "requestable": [ true ], - "shelfMark": [ - "N7088.6 .A45 2009q Oversize" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } ], - "shelfMark_sort": "aN7088.6 .A45 2009q Oversize", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23627289630006421" + ] }, "sort": [ null diff --git a/test/fixtures/query-f0fd1d37f511390ccffcfcd64f192dde.json b/test/fixtures/query-f0fd1d37f511390ccffcfcd64f192dde.json index d662fc34..d8fd9542 100644 --- a/test/fixtures/query-f0fd1d37f511390ccffcfcd64f192dde.json +++ b/test/fixtures/query-f0fd1d37f511390ccffcfcd64f192dde.json @@ -1,5 +1,5 @@ { - "took": 20, + "took": 24, "timed_out": false, "_shards": { "total": 2, @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.120333, + "max_score": 14.890072, "hits": [ { "_index": "resources-2024-10-22", "_id": "b10833141", - "_score": 15.120333, + "_score": 14.890072, "_source": { "extent": [ "volumes : illustrations ;" @@ -167,7 +167,7 @@ "value": "(OCoLC)228666271 (OCoLC)315923316 (OCoLC)813435753 (OCoLC)972367546 (OCoLC)973902298 (OCoLC)1032835230 (OCoLC)1038943160 (OCoLC)1041661831 (OCoLC)1054975031 (OCoLC)1058338019 (OCoLC)1065410087 (OCoLC)1078551167 (OCoLC)1081045337 (OCoLC)1082980679 (OCoLC)1114402509 (OCoLC)1134878896 (OCoLC)1134879337 (OCoLC)1144737766 (OCoLC)1167086187 (OCoLC)1294152325 (OCoLC)1302429095 (OCoLC)1319602865 (OCoLC)1322139476 (OCoLC)1332666305" } ], - "popularity": 1039, + "popularity": 1042, "uniformTitle": [ "New Yorker (New York, N.Y. : 1925)" ], @@ -1405,7 +1405,7 @@ "shelfMark": [ "*DA+ (New Yorker)" ], - "status": "Expected" + "status": "Arrived" }, { "coverage": "Vol. 100 No. 37 (Nov. 11, 2024)", @@ -1414,7 +1414,7 @@ "shelfMark": [ "*DA+ (New Yorker)" ], - "status": "Expected" + "status": "Arrived" }, { "coverage": "Vol. 100 No. 38 (Nov. 18, 2024)", @@ -1423,7 +1423,7 @@ "shelfMark": [ "*DA+ (New Yorker)" ], - "status": "Expected" + "status": "Arrived" }, { "coverage": "Vol. 100 No. 39 (Nov. 25, 2024)", @@ -1482,7 +1482,7 @@ ], "holdingStatement": [ "[Bound vols.] 1(1925)-June, Sept.1951-68:9(1992), 68:11(1992)-69:4(1993), 69:6(1993)-72:25(1996), 72:27(1996)-75:25(1999), 75:27(1999)-76:45(2001), 77:1(2001)-77:27(2001), 77:29(2001)-81:15(2005), 81:18(2005)-83:13(2007), 83:17(2007)-85:22(2009), 85:24(2009)-86:11(2010), 86:13(2010)-88:12(2012), 88:14(2012)-88:20(2012), 88:39(2012)-90:38(2014), 91:5(2015), 91:9(2015), 91:14(2015)-92:36(2016), 92:38(2016)-97(2021)--", - "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26)" + "v. 99, no. 37 (2023-11-13); v. 99, no. 48 (2024-02-05); v. 100, no. 2 (2024-02-26); v. 100, no. 38 (2024-11-18)" ], "identifier": [ { @@ -1511,7 +1511,7 @@ "uri": "h1144777" } ], - "updatedAt": 1729702613931, + "updatedAt": 1731688335474, "publicationStatement": [ "New York : F-R Pub. Corp., 1925-", "[New York] : D. Carey", @@ -1589,567 +1589,232 @@ ] }, "inner_hits": { - "allItems": { + "items": { "hits": { "total": { - "value": 848, + "value": 41, "relation": "eq" }, - "max_score": 0, + "max_score": null, "hits": [ { "_index": "resources-2024-10-22", "_id": "b10833141", "_nested": { "field": "items", - "offset": 0 + "offset": 782 }, - "_score": 0, + "_score": null, "_source": { "accessMessage": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "accessMessage:1", + "label": "Use in library" } ], "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "accessMessage:1||Use in library" ], "dateRange": [ { - "gte": "2021", - "lte": "2021" + "gte": "2021-12-27", + "lte": "2021-12-27" } ], "enumerationChronology": [ - "v. 97 (May 10-July 26, 2021)" + "Vol. 97 No. 43 (Dec. 27, 2021)" ], "enumerationChronology_sort": [ - " 97-2021" + " 97-2021-12-27" ], "formatLiteral": [ - "Text" + "AUG. 23, 2021-CURRENT" ], "holdingLocation": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" } ], "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433136780354" - ], - "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", - "urn:barcode:33433136780354" + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", + "value": "*DA+ (New Yorker)", "type": "bf:ShelfMark" - }, - { - "value": "33433136780354", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" } ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "requestable": [ - true - ], "shelfMark": [ - "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)" + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (May 10-July 26, 2021)", + "shelfMark_sort": "a*DA+ (New Yorker)", "status": [ { - "id": "status:a", - "label": "Available" + "id": "status:i", + "label": "At bindery" } ], "status_packed": [ - "status:a||Available" + "status:i||At bindery" ], "type": [ - "bf:Item" + "nypl:CheckinCardItem" ], - "uri": "i40904678", + "uri": "i-h1144777-41", "volumeRange": [ { "gte": 97, "lte": 97 } + ], + "volumeRaw": [ + "Vol. 97 No. 43" ] - } + }, + "sort": [ + " 97-2021-12-27" + ] }, { "_index": "resources-2024-10-22", "_id": "b10833141", "_nested": { "field": "items", - "offset": 1 + "offset": 781 }, - "_score": 0, + "_score": null, "_source": { "accessMessage": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "accessMessage:1", + "label": "Use in library" } ], "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "accessMessage:1||Use in library" ], "dateRange": [ { - "gte": "2021", - "lte": "2021" + "gte": "2021-12-13", + "lte": "2021-12-13" } ], "enumerationChronology": [ - "v. 97 (Feb 15-May 3, 2021)" + "Vol. 97 No. 41 (Dec. 13, 2021)" ], "enumerationChronology_sort": [ - " 97-2021" + " 97-2021-12-13" ], "formatLiteral": [ - "Text" + "AUG. 23, 2021-CURRENT" ], "holdingLocation": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" } ], "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433136780347" - ], - "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", - "urn:barcode:33433136780347" + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", + "value": "*DA+ (New Yorker)", "type": "bf:ShelfMark" - }, - { - "value": "33433136780347", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" } ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "requestable": [ - true - ], "shelfMark": [ - "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)" + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Feb 15-May 3, 2021)", + "shelfMark_sort": "a*DA+ (New Yorker)", "status": [ { - "id": "status:a", - "label": "Available" + "id": "status:i", + "label": "At bindery" } ], "status_packed": [ - "status:a||Available" + "status:i||At bindery" ], "type": [ - "bf:Item" + "nypl:CheckinCardItem" ], - "uri": "i40904674", + "uri": "i-h1144777-42", "volumeRange": [ { "gte": 97, "lte": 97 } + ], + "volumeRaw": [ + "Vol. 97 No. 41" ] - } + }, + "sort": [ + " 97-2021-12-13" + ] }, { "_index": "resources-2024-10-22", "_id": "b10833141", "_nested": { "field": "items", - "offset": 2 + "offset": 780 }, - "_score": 0, + "_score": null, "_source": { "accessMessage": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "accessMessage:1", + "label": "Use in library" } ], "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "catalogItemType": [ - { - "id": "catalogItemType:3", - "label": "serial" - } - ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "accessMessage:1||Use in library" ], "dateRange": [ { - "gte": "2021", - "lte": "2021" + "gte": "2021-12-06", + "lte": "2021-12-06" } ], "enumerationChronology": [ - "v. 97 (Aug. 2-Oct 25, 2021)" + "Vol. 97 No. 40 (Dec. 6, 2021)" ], "enumerationChronology_sort": [ - " 97-2021" + " 97-2021-12-06" ], "formatLiteral": [ - "Text" + "AUG. 23, 2021-CURRENT" ], "holdingLocation": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "loc:makk3", + "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" } ], "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433136780362" - ], - "identifier": [ - "urn:shelfmark:*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", - "urn:barcode:33433136780362" + "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" ], "identifierV2": [ { - "value": "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", + "value": "*DA+ (New Yorker)", "type": "bf:ShelfMark" - }, - { - "value": "33433136780362", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" } ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "*DA+ (New Yorker)" - ], - "requestable": [ - true - ], "shelfMark": [ - "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)" + "*DA+ (New Yorker)" ], - "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Aug. 2-Oct 25, 2021)", + "shelfMark_sort": "a*DA+ (New Yorker)", "status": [ { - "id": "status:a", - "label": "Available" + "id": "status:i", + "label": "At bindery" } ], "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i40904679", - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ] - } - } - ] - } - }, - "items": { - "hits": { - "total": { - "value": 41, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-10-22", - "_id": "b10833141", - "_nested": { - "field": "items", - "offset": 782 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2021-12-27", - "lte": "2021-12-27" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 43 (Dec. 27, 2021)" - ], - "enumerationChronology_sort": [ - " 97-2021-12-27" - ], - "formatLiteral": [ - "AUG. 23, 2021-CURRENT" - ], - "holdingLocation": [ - { - "id": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } - ], - "holdingLocation_packed": [ - "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "shelfMark_sort": "a*DA+ (New Yorker)", - "status": [ - { - "id": "status:i", - "label": "At bindery" - } - ], - "status_packed": [ - "status:i||At bindery" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1144777-41", - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "volumeRaw": [ - "Vol. 97 No. 43" - ] - }, - "sort": [ - " 97-2021-12-27" - ] - }, - { - "_index": "resources-2024-10-22", - "_id": "b10833141", - "_nested": { - "field": "items", - "offset": 781 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2021-12-13", - "lte": "2021-12-13" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 41 (Dec. 13, 2021)" - ], - "enumerationChronology_sort": [ - " 97-2021-12-13" - ], - "formatLiteral": [ - "AUG. 23, 2021-CURRENT" - ], - "holdingLocation": [ - { - "id": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } - ], - "holdingLocation_packed": [ - "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "shelfMark_sort": "a*DA+ (New Yorker)", - "status": [ - { - "id": "status:i", - "label": "At bindery" - } - ], - "status_packed": [ - "status:i||At bindery" - ], - "type": [ - "nypl:CheckinCardItem" - ], - "uri": "i-h1144777-42", - "volumeRange": [ - { - "gte": 97, - "lte": 97 - } - ], - "volumeRaw": [ - "Vol. 97 No. 41" - ] - }, - "sort": [ - " 97-2021-12-13" - ] - }, - { - "_index": "resources-2024-10-22", - "_id": "b10833141", - "_nested": { - "field": "items", - "offset": 780 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "dateRange": [ - { - "gte": "2021-12-06", - "lte": "2021-12-06" - } - ], - "enumerationChronology": [ - "Vol. 97 No. 40 (Dec. 6, 2021)" - ], - "enumerationChronology_sort": [ - " 97-2021-12-06" - ], - "formatLiteral": [ - "AUG. 23, 2021-CURRENT" - ], - "holdingLocation": [ - { - "id": "loc:makk3", - "label": "Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - } - ], - "holdingLocation_packed": [ - "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108" - ], - "identifierV2": [ - { - "value": "*DA+ (New Yorker)", - "type": "bf:ShelfMark" - } - ], - "shelfMark": [ - "*DA+ (New Yorker)" - ], - "shelfMark_sort": "a*DA+ (New Yorker)", - "status": [ - { - "id": "status:i", - "label": "At bindery" - } - ], - "status_packed": [ - "status:i||At bindery" + "status:i||At bindery" ], "type": [ "nypl:CheckinCardItem" @@ -5173,21 +4838,356 @@ } ] } - } - } - } - ] - }, - "aggregations": { - "item_location": { - "doc_count": 848, - "_nested": { - "doc_count_error_upper_bound": 0, - "sum_other_doc_count": 0, - "buckets": [ - { - "key": "loc:mal82||Schwarzman Building - Main Reading Room 315", - "doc_count": 575 + }, + "allItems": { + "hits": { + "total": { + "value": 848, + "relation": "eq" + }, + "max_score": 0, + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2021", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 97 (May 10-July 26, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136780354" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", + "urn:barcode:33433136780354" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136780354", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 97 (May 10-July 26, 2021)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (May 10-July 26, 2021)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40904678", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2021", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 97 (Feb 15-May 3, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136780347" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", + "urn:barcode:33433136780347" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136780347", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 97 (Feb 15-May 3, 2021)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Feb 15-May 3, 2021)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40904674", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b10833141", + "_nested": { + "field": "items", + "offset": 2 + }, + "_score": 0, + "_source": { + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "catalogItemType_packed": [ + "catalogItemType:3||serial" + ], + "dateRange": [ + { + "gte": "2021", + "lte": "2021" + } + ], + "enumerationChronology": [ + "v. 97 (Aug. 2-Oct 25, 2021)" + ], + "enumerationChronology_sort": [ + " 97-2021" + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433136780362" + ], + "identifier": [ + "urn:shelfmark:*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", + "urn:barcode:33433136780362" + ], + "identifierV2": [ + { + "value": "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)", + "type": "bf:ShelfMark" + }, + { + "value": "33433136780362", + "type": "bf:Barcode" + } + ], + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } + ], + "owner_packed": [ + "orgs:1101||General Research Division" + ], + "physicalLocation": [ + "*DA+ (New Yorker)" + ], + "requestable": [ + true + ], + "shelfMark": [ + "*DA+ (New Yorker) v. 97 (Aug. 2-Oct 25, 2021)" + ], + "shelfMark_sort": "a*DA+ (New Yorker) v. 000097 (Aug. 2-Oct 25, 2021)", + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "i40904679", + "volumeRange": [ + { + "gte": 97, + "lte": 97 + } + ] + } + } + ] + } + } + } + } + ] + }, + "aggregations": { + "item_location": { + "doc_count": 848, + "_nested": { + "doc_count_error_upper_bound": 0, + "sum_other_doc_count": 0, + "buckets": [ + { + "key": "loc:mal82||Schwarzman Building - Main Reading Room 315", + "doc_count": 575 }, { "key": "loc:makk3||Schwarzman Building - Dewitt Wallace Reference Desk Room 108", @@ -5241,18 +5241,22 @@ }, { "key": "status:co||Loaned", - "doc_count": 11 + "doc_count": 12 }, { "key": "status:na||Not available", - "doc_count": 10 + "doc_count": 7 + }, + { + "key": "status:t||In transit", + "doc_count": 2 }, { "key": "status:m||Missing", "doc_count": 1 }, { - "key": "status:t||In transit", + "key": "status:oh||On Holdshelf", "doc_count": 1 } ] diff --git a/test/fixtures/query-f48e601750e63fb834e0b606b1a8d98a.json b/test/fixtures/query-f48e601750e63fb834e0b606b1a8d98a.json index 8927fa0c..f0d54be6 100644 --- a/test/fixtures/query-f48e601750e63fb834e0b606b1a8d98a.json +++ b/test/fixtures/query-f48e601750e63fb834e0b606b1a8d98a.json @@ -1,5 +1,5 @@ { - "took": 119, + "took": 111, "timed_out": false, "_shards": { "total": 2, @@ -17,7 +17,7 @@ { "_index": "resources-2024-10-22", "_id": "b20970375", - "_score": 4068.2793, + "_score": 3991.9192, "_source": { "extent": [ "119 pages : illustrations (color) ;" @@ -56,12 +56,15 @@ "createdYear": [ 2015 ], - "title": [ - "Toast" + "buildingLocationIds": [ + "ma" ], "type": [ "nypl:Item" ], + "title": [ + "Toast" + ], "shelfMark": [ "JFF 16-815" ], @@ -86,9 +89,6 @@ "dateStartYear": [ 2015 ], - "idOclc": [ - "915941587" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -123,19 +123,15 @@ "value": "(OCoLC)905521916" } ], + "idOclc": [ + "915941587" + ], "popularity": 4, "updatedAt": 1722434139301, "publicationStatement": [ "London : Phaidon Press Limited, 2015.", "©2015" ], - "genreForm": [ - "Cookbooks." - ], - "idIsbn": [ - "9780714869551", - "0714869554" - ], "identifier": [ "urn:shelfmark:JFF 16-815", "urn:bnum:20970375", @@ -146,6 +142,13 @@ "urn:identifier:(OCoLC)915941587", "urn:identifier:(OCoLC)905521916" ], + "genreForm": [ + "Cookbooks." + ], + "idIsbn": [ + "9780714869551", + "0714869554" + ], "numCheckinCardItems": [ 0 ], @@ -180,15 +183,15 @@ "placeOfPublication": [ "London" ], + "titleAlt": [ + "Toast : the cookbook" + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Toast : the cookbook" - ], "dimensions": [ "25 cm" ], @@ -198,9 +201,12 @@ ] }, "sort": [ - 4068.2793, + 3991.9192, "b20970375" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -219,85 +225,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFF 16-815", + "urn:barcode:33433118568447" + ], + "physicalLocation": [ + "JFF 16-815" + ], + "shelfMark_sort": "aJFF 16-000815", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433118568447" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFF 16-815", - "urn:barcode:33433118568447" + "shelfMark": [ + "JFF 16-815" ], + "uri": "i34162229", "identifierV2": [ { - "value": "JFF 16-815", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFF 16-815" }, { - "value": "33433118568447", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433118568447" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433118568447" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFF 16-815" - ], "requestable": [ true ], - "shelfMark": [ - "JFF 16-815" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFF 16-000815", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i34162229" + ] }, "sort": [ null @@ -311,7 +317,7 @@ { "_index": "resources-2024-10-22", "_id": "pb9928479343506421", - "_score": 3686.2773, + "_score": 3702.77, "_source": { "extent": [ "103 p. ;" @@ -344,6 +350,9 @@ "createdYear": [ 1999 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Toast" ], @@ -471,7 +480,7 @@ ] }, "sort": [ - 3686.2773, + 3702.77, "pb9928479343506421" ], "inner_hits": { @@ -492,79 +501,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0003", + "label": "Princeton University Library" } ], + "identifier": [ + "urn:shelfmark:PR6052.E176 T627 1999", + "urn:barcode:32101095377683" + ], + "physicalLocation": [ + "PR6052.E176 T627 1999" + ], + "shelfMark_sort": "aPR6052.E176 T627 001999", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } ], - "idBarcode": [ - "32101095377683" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:PR6052.E176 T627 1999", - "urn:barcode:32101095377683" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "PR6052.E176 T627 1999" ], + "uri": "pi23486469710006421", "identifierV2": [ { - "value": "PR6052.E176 T627 1999", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PR6052.E176 T627 1999" }, { - "value": "32101095377683", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "32101095377683" } ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } + "idBarcode": [ + "32101095377683" ], "owner_packed": [ "orgs:0003||Princeton University Library" ], - "physicalLocation": [ - "PR6052.E176 T627 1999" - ], - "recapCustomerCode": [ - "PA" - ], "requestable": [ true ], - "shelfMark": [ - "PR6052.E176 T627 1999" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "PA" ], - "shelfMark_sort": "aPR6052.E176 T627 001999", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23486469710006421" + ] }, "sort": [ null @@ -578,7 +587,7 @@ { "_index": "resources-2024-10-22", "_id": "b18806309", - "_score": 568.1914, + "_score": 567.1082, "_source": { "extent": [ "386 p. : map ;" @@ -620,12 +629,15 @@ "createdYear": [ 2010 ], - "title": [ - "Toast za przodków" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Toast za przodków" + ], "shelfMark": [ "ReCAP 11-4380" ], @@ -638,18 +650,15 @@ "creatorLiteral": [ "Górecki, Wojciech, 1970-" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Reportaż" ], + "numElectronicResources": [ + 0 + ], "dateStartYear": [ 2010 ], - "idOclc": [ - "671293997" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -676,6 +685,9 @@ "value": "(OCoLC)671293997" } ], + "idOclc": [ + "671293997" + ], "uniformTitle": [ "Seria Reportaż." ], @@ -684,10 +696,6 @@ "publicationStatement": [ "Wołowiec : Wydawn. Czarne, 2010." ], - "idIsbn": [ - "9788375361940 (pbk)", - "8375361941 (pbk)" - ], "identifier": [ "urn:shelfmark:ReCAP 11-4380", "urn:bnum:18806309", @@ -696,6 +704,10 @@ "urn:oclc:671293997", "urn:identifier:(OCoLC)671293997" ], + "idIsbn": [ + "9788375361940 (pbk)", + "8375361941 (pbk)" + ], "numCheckinCardItems": [ 0 ], @@ -746,7 +758,7 @@ ] }, "sort": [ - 568.1914, + 567.1082, "b18806309" ], "inner_hits": { @@ -767,88 +779,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 11-4380", + "urn:barcode:33433090460647" + ], + "physicalLocation": [ + "ReCAP 11-4380" + ], + "shelfMark_sort": "aReCAP 11-004380", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" - } + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433090460647" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 11-4380", - "urn:barcode:33433090460647" + "shelfMark": [ + "ReCAP 11-4380" ], + "uri": "i26121731", "identifierV2": [ { - "value": "ReCAP 11-4380", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 11-4380" }, { - "value": "33433090460647", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433090460647" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433090460647" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 11-4380" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 11-4380" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 11-004380", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i26121731" + ] }, "sort": [ null @@ -862,7 +874,7 @@ { "_index": "resources-2024-10-22", "_id": "hb990099650640203941", - "_score": 562.24115, + "_score": 563.44324, "_source": { "extent": [ "247 p. ;" @@ -895,12 +907,15 @@ "numItemsTotal": [ 1 ], - "dateEndString": [ - "2002" - ], "createdYear": [ 2006 ], + "buildingLocationIds": [ + "rc" + ], + "dateEndString": [ + "2002" + ], "type": [ "nypl:Item" ], @@ -1032,7 +1047,7 @@ ] }, "sort": [ - 562.24115, + 563.44324, "hb990099650640203941" ], "inner_hits": { @@ -1053,78 +1068,78 @@ }, "_score": null, "_source": { - "uri": "hi232106586300003941", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0004", "label": "Harvard Library" } ], - "owner_packed": [ - "orgs:0004||Harvard Library" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:32044077499465" + ], + "physicalLocation": [ + "PR6119.T79 T63 2006" ], + "shelfMark_sort": "aPR6119.T79 T63 002006", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "hi232106586300003941", "shelfMark": [ "PR6119.T79 T63 2006" ], "identifierV2": [ { - "value": "PR6119.T79 T63 2006", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PR6119.T79 T63 2006" }, { "type": "bf:Barcode", "value": "32044077499465" } ], - "physicalLocation": [ - "PR6119.T79 T63 2006" - ], - "recapCustomerCode": [ - "HW" - ], - "identifier": [ - "urn:barcode:32044077499465" - ], "idBarcode": [ "32044077499465" ], + "owner_packed": [ + "orgs:0004||Harvard Library" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "type": [ - "bf:Item" + "recapCustomerCode": [ + "HW" ], "formatLiteral": [ "Text" - ], - "shelfMark_sort": "aPR6119.T79 T63 002006" + ] }, "sort": [ null @@ -1138,7 +1153,7 @@ { "_index": "resources-2024-10-22", "_id": "pb9969551973506421", - "_score": 560.9158, + "_score": 562.11554, "_source": { "extent": [ "386 p. ;" @@ -1171,6 +1186,9 @@ "createdYear": [ 2010 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Toast za przodków" ], @@ -1301,7 +1319,7 @@ ] }, "sort": [ - 560.9158, + 562.11554, "pb9969551973506421" ], "inner_hits": { @@ -1322,79 +1340,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0003", + "label": "Princeton University Library" } ], + "identifier": [ + "urn:shelfmark:PG7223.I78 T627 2010", + "urn:barcode:32101072287822" + ], + "physicalLocation": [ + "PG7223.I78 T627 2010" + ], + "shelfMark_sort": "aPG7223.I78 T627 002010", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } ], - "idBarcode": [ - "32101072287822" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:PG7223.I78 T627 2010", - "urn:barcode:32101072287822" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "PG7223.I78 T627 2010" ], + "uri": "pi23652743930006421", "identifierV2": [ { - "value": "PG7223.I78 T627 2010", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PG7223.I78 T627 2010" }, { - "value": "32101072287822", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "32101072287822" } ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } + "idBarcode": [ + "32101072287822" ], "owner_packed": [ "orgs:0003||Princeton University Library" ], - "physicalLocation": [ - "PG7223.I78 T627 2010" - ], - "recapCustomerCode": [ - "PA" - ], "requestable": [ true ], - "shelfMark": [ - "PG7223.I78 T627 2010" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "PA" ], - "shelfMark_sort": "aPG7223.I78 T627 002010", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23652743930006421" + ] }, "sort": [ null @@ -1408,7 +1426,7 @@ { "_index": "resources-2024-10-22", "_id": "b15868157", - "_score": 552.8177, + "_score": 554.4441, "_source": { "extent": [ "64 p. : ill. ;" @@ -1440,6 +1458,9 @@ "createdYear": [ 2002 ], + "buildingLocationIds": [ + "sc" + ], "title": [ "Toast to life & vision" ], @@ -1576,9 +1597,12 @@ ] }, "sort": [ - 552.8177, + 554.4441, "b15868157" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -1597,85 +1621,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:61", - "label": "pamphlet volumes, bound with" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc D 13-57", + "urn:barcode:33433089426146" + ], + "physicalLocation": [ + "Sc D 13-57" + ], + "shelfMark_sort": "aSc D 13-000057", "catalogItemType_packed": [ "catalogItemType:61||pamphlet volumes, bound with" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433089426146" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc D 13-57", - "urn:barcode:33433089426146" + "shelfMark": [ + "Sc D 13-57" ], + "uri": "i29987107", "identifierV2": [ { - "value": "Sc D 13-57", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc D 13-57" }, { - "value": "33433089426146", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433089426146" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433089426146" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc D 13-57" - ], "requestable": [ true ], - "shelfMark": [ - "Sc D 13-57" + "catalogItemType": [ + { + "id": "catalogItemType:61", + "label": "pamphlet volumes, bound with" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc D 13-000057", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i29987107" + ] }, "sort": [ null @@ -1689,7 +1713,7 @@ { "_index": "resources-2024-10-22", "_id": "b22227752", - "_score": 545.588, + "_score": 546.37494, "_source": { "extent": [ "1 volume (unpaged) : colour illustrations ;" @@ -1879,7 +1903,7 @@ ] }, "sort": [ - 545.588, + 546.37494, "b22227752" ], "matched_queries": [ @@ -1995,7 +2019,7 @@ { "_index": "resources-2024-10-22", "_id": "cb1808514", - "_score": 540.224, + "_score": 539.6899, "_source": { "extent": [ "1 score (3 unnumbered pages, 12 pages) ;" @@ -2043,6 +2067,9 @@ "createdYear": [ 1984 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -2164,7 +2191,7 @@ ] }, "sort": [ - 540.224, + 539.6899, "cb1808514" ], "inner_hits": { @@ -2185,72 +2212,72 @@ }, "_score": null, "_source": { - "uri": "ci2278358", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:MR61509485" + ], + "physicalLocation": [ + "61 B458 M9" ], + "shelfMark_sort": "a61 B458 M000009", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "ci2278358", "shelfMark": [ "61 B458 M9" ], "identifierV2": [ { - "value": "61 B458 M9", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "61 B458 M9" }, { "type": "bf:Barcode", "value": "MR61509485" } ], - "physicalLocation": [ - "61 B458 M9" - ], - "recapCustomerCode": [ - "MR" - ], - "identifier": [ - "urn:barcode:MR61509485" - ], "idBarcode": [ "MR61509485" ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "shelfMark_sort": "a61 B458 M000009" + "recapCustomerCode": [ + "MR" + ] }, "sort": [ null @@ -2264,7 +2291,7 @@ { "_index": "resources-2024-10-22", "_id": "b12004445", - "_score": 524.9346, + "_score": 524.87006, "_source": { "extent": [ "124 p. ;" @@ -2290,6 +2317,9 @@ "createdYear": [ 1993 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Mein Lieblings-Toast : 300 heisse Tips für Toast-Fans" ], @@ -2409,9 +2439,12 @@ ] }, "sort": [ - 524.9346, + 524.87006, "b12004445" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -2430,85 +2463,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFD 94-21395", + "urn:barcode:33433041530118" + ], + "physicalLocation": [ + "JFD 94-21395" + ], + "shelfMark_sort": "aJFD 94-021395", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433041530118" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFD 94-21395", - "urn:barcode:33433041530118" + "shelfMark": [ + "JFD 94-21395" ], + "uri": "i13317173", "identifierV2": [ { - "value": "JFD 94-21395", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFD 94-21395" }, { - "value": "33433041530118", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433041530118" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433041530118" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFD 94-21395" - ], "requestable": [ true ], - "shelfMark": [ - "JFD 94-21395" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFD 94-021395", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13317173" + ] }, "sort": [ null @@ -2522,7 +2555,7 @@ { "_index": "resources-2024-10-22", "_id": "b10981311", - "_score": 517.82947, + "_score": 518.5518, "_source": { "extent": [ "1 miniature score (12 p.) ;" @@ -2577,6 +2610,9 @@ "dateEndString": [ "1980" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "A musical toast" ], @@ -2699,7 +2735,7 @@ ] }, "sort": [ - 517.82947, + 518.5518, "b10981311" ], "inner_hits": { @@ -2720,88 +2756,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:57", - "label": "printed music limited circ MaRLI" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], + "identifier": [ + "urn:shelfmark:JNF 87-27", + "urn:barcode:33433047232982" + ], + "physicalLocation": [ + "JNF 87-27" + ], + "shelfMark_sort": "aJNF 87-000027", "catalogItemType_packed": [ "catalogItemType:57||printed music limited circ MaRLI" ], - "formatLiteral": [ - "Notated music" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433047232982" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JNF 87-27", - "urn:barcode:33433047232982" + "shelfMark": [ + "JNF 87-27" ], + "uri": "i13956002", "identifierV2": [ { - "value": "JNF 87-27", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JNF 87-27" }, { - "value": "33433047232982", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433047232982" } ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" + ], + "idBarcode": [ + "33433047232982" ], "owner_packed": [ "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], - "physicalLocation": [ - "JNF 87-27" - ], - "recapCustomerCode": [ - "NP" - ], "requestable": [ true ], - "shelfMark": [ - "JNF 87-27" + "catalogItemType": [ + { + "id": "catalogItemType:57", + "label": "printed music limited circ MaRLI" + } + ], + "formatLiteral": [ + "Notated music" + ], + "holdingLocation": [ + { + "id": "loc:rcpm2", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NP" ], - "shelfMark_sort": "aJNF 87-000027", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13956002" + ] }, "sort": [ null @@ -2815,7 +2851,7 @@ { "_index": "resources-2024-10-22", "_id": "b11294632", - "_score": 514.90173, + "_score": 516.61816, "_source": { "extent": [ "xxi, 273 p. ;" @@ -2851,6 +2887,9 @@ "dateEndString": [ "1940" ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Angels on toast" ], @@ -2984,9 +3023,12 @@ ] }, "sort": [ - 514.90173, + 516.61816, "b11294632" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -3005,79 +3047,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } + "identifier": [ + "urn:shelfmark:JFD 90-6303", + "urn:barcode:33433040606604" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "JFD 90-6303" ], + "shelfMark_sort": "aJFD 90-006303", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal92", - "label": "Schwarzman Building M2 - General Research Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal92||Schwarzman Building M2 - General Research Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433040606604" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFD 90-6303", - "urn:barcode:33433040606604" + "shelfMark": [ + "JFD 90-6303" ], + "uri": "i13160245", "identifierV2": [ { - "value": "JFD 90-6303", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFD 90-6303" }, { - "value": "33433040606604", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433040606604" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mal92||Schwarzman Building M2 - General Research Room 315" ], - "physicalLocation": [ - "JFD 90-6303" + "idBarcode": [ + "33433040606604" ], "requestable": [ true ], - "shelfMark": [ - "JFD 90-6303" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal92", + "label": "Schwarzman Building M2 - General Research Room 315" + } ], - "shelfMark_sort": "aJFD 90-006303", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i13160245" + ] }, "sort": [ null @@ -3091,7 +3133,7 @@ { "_index": "resources-2024-10-22", "_id": "cb15861113", - "_score": 509.2913, + "_score": 510.4879, "_source": { "extent": [ "288 pages ;" @@ -3117,6 +3159,9 @@ "createdYear": [ 2022 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Sex on toast" ], @@ -3249,7 +3294,7 @@ ] }, "sort": [ - 509.2913, + 510.4879, "cb15861113" ], "inner_hits": { @@ -3270,79 +3315,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0002", + "label": "Columbia University Libraries" } ], + "identifier": [ + "urn:shelfmark:PR6113.I5865 S39 2022g", + "urn:barcode:CU27972887" + ], + "physicalLocation": [ + "PR6113.I5865 S39 2022g" + ], + "shelfMark_sort": "aPR6113.I5865 S39 2022g", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "idBarcode": [ - "CU27972887" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:PR6113.I5865 S39 2022g", - "urn:barcode:CU27972887" + "type": [ + "bf:Item" ], + "shelfMark": [ + "PR6113.I5865 S39 2022g" + ], + "uri": "ci10035633", "identifierV2": [ { - "value": "PR6113.I5865 S39 2022g", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PR6113.I5865 S39 2022g" }, { - "value": "CU27972887", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "CU27972887" } ], - "owner": [ - { - "id": "orgs:0002", - "label": "Columbia University Libraries" - } + "idBarcode": [ + "CU27972887" ], "owner_packed": [ "orgs:0002||Columbia University Libraries" ], - "physicalLocation": [ - "PR6113.I5865 S39 2022g" - ], - "recapCustomerCode": [ - "CU" - ], "requestable": [ true ], - "shelfMark": [ - "PR6113.I5865 S39 2022g" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "CU" ], - "shelfMark_sort": "aPR6113.I5865 S39 2022g", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "ci10035633" + ] }, "sort": [ null @@ -3356,7 +3401,7 @@ { "_index": "resources-2024-10-22", "_id": "b22904468", - "_score": 504.2571, + "_score": 505.05713, "_source": { "extent": [ "189 pages : color illustrations ;" @@ -3396,6 +3441,9 @@ "createdYear": [ 2022 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Bliss on toast : 75 simple recipes" ], @@ -3545,9 +3593,12 @@ ] }, "sort": [ - 504.2571, + 505.05713, "b22904468" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -3566,85 +3617,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFD 22-2706", + "urn:barcode:33433135837288" + ], + "physicalLocation": [ + "JFD 22-2706" + ], + "shelfMark_sort": "aJFD 22-002706", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433135837288" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:JFD 22-2706", - "urn:barcode:33433135837288" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JFD 22-2706" ], + "uri": "i39826201", "identifierV2": [ { - "value": "JFD 22-2706", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFD 22-2706" }, { - "value": "33433135837288", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433135837288" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433135837288" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFD 22-2706" - ], "requestable": [ true ], - "shelfMark": [ - "JFD 22-2706" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFD 22-002706", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i39826201" + ] }, "sort": [ null @@ -3658,7 +3709,7 @@ { "_index": "resources-2024-10-22", "_id": "hb990094818300203941", - "_score": 501.27667, + "_score": 500.78717, "_source": { "extent": [ "64 p. : ill. ;" @@ -3822,7 +3873,7 @@ ] }, "sort": [ - 501.27667, + 500.78717, "hb990094818300203941" ], "inner_hits": { @@ -3928,29 +3979,31 @@ }, { "_index": "resources-2024-10-22", - "_id": "b12227432", - "_score": 492.29807, + "_id": "b21766784", + "_score": 492.39038, "_source": { + "extent": [ + "75 pages ;" + ], "note": [ { "noteType": "Note", - "label": "Review of the New York City Ballet in Peter Martins' Sleeping beauty, New York State Theatre, April 24, 1991.", + "label": "Poems.", "type": "bf:Note" } ], - "partOf": [ - "Dance and dancers. London. June/July 1991, p. 33-36. ill." - ], "nyplSource": [ "sierra-nypl" ], - "subjectLiteral_exploded": [ - "Martins, Peter, 1946-", - "New York City Ballet" - ], "numItemDatesParsed": [ 0 ], + "publisherLiteral": [ + "Quattro Poetry" + ], + "description": [ + "\"This new poetry collection by Corrado Paina explores the induced meditations and considerations that illness imposes upon a body and mind.\"--" + ], "language": [ { "id": "lang:eng", @@ -3958,68 +4011,98 @@ } ], "numItemsTotal": [ - 0 + 1 ], "createdYear": [ - 1991 + 2018 + ], + "buildingLocationIds": [ + "ma" ], "title": [ - "A toast to Beauty." + "A toast to illness" ], "type": [ "nypl:Item" ], "shelfMark": [ - "*MGZA" + "JFD 19-3255" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1991" + "2018" ], "creatorLiteral": [ - "Barnes, Clive, 1927-2008." + "Paina, Corrado, 1954-" + ], + "idLccn": [ + "2018487509" ], "numElectronicResources": [ 0 ], "dateStartYear": [ - 1991 + 2018 ], "idOclc": [ - "NYPY916066942-B" + "1030339564" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "*MGZA" + "value": "JFD 19-3255" }, { "type": "nypl:Bnumber", - "value": "12227432" + "value": "21766784" + }, + { + "type": "bf:Isbn", + "value": "9781988254616" + }, + { + "type": "bf:Isbn", + "value": "1988254612" }, { "type": "nypl:Oclc", - "value": "NYPY916066942-B" + "value": "1030339564" + }, + { + "type": "bf:Lccn", + "value": "2018487509" }, { "type": "bf:Identifier", - "value": "(NN-PD)916066942" + "value": "(OCoLC)1030339564" }, { "type": "bf:Identifier", - "value": "(WaOLN)nyp2214263" + "value": "(OCoLC)1030484899" } ], - "popularity": 0, - "updatedAt": 1723129828477, + "updatedAt": 1711251518653, + "publicationStatement": [ + "Toronto, Canada : Quattro Poetry, 2018." + ], + "genreForm": [ + "Poetry." + ], + "idIsbn": [ + "9781988254616", + "1988254612" + ], "identifier": [ - "urn:shelfmark:*MGZA", - "urn:bnum:12227432", - "urn:oclc:NYPY916066942-B", - "urn:identifier:(NN-PD)916066942", - "urn:identifier:(WaOLN)nyp2214263" + "urn:shelfmark:JFD 19-3255", + "urn:bnum:21766784", + "urn:isbn:9781988254616", + "urn:isbn:1988254612", + "urn:oclc:1030339564", + "urn:lccn:2018487509", + "urn:identifier:(OCoLC)1030339564", + "urn:identifier:(OCoLC)1030484899" ], "numCheckinCardItems": [ 0 @@ -4037,7 +4120,7 @@ } ], "dateString": [ - "1991" + "2018" ], "mediaType": [ { @@ -4045,112 +4128,219 @@ "label": "unmediated" } ], - "subjectLiteral": [ - "Martins, Peter, 1946-", - "New York City Ballet." - ], "titleDisplay": [ - "A toast to Beauty." + "A toast to illness / Corrado Paina." + ], + "uri": "b21766784", + "lccClassification": [ + "PR9199.4.P34 T63 2018" + ], + "placeOfPublication": [ + "Toronto, Canada" ], - "uri": "b12227432", "issuance": [ { - "id": "urn:biblevel:b", - "label": "serial component part" + "id": "urn:biblevel:m", + "label": "monograph/item" } + ], + "dimensions": [ + "22 cm" + ], + "idIsbn_clean": [ + "9781988254616", + "1988254612" ] }, "sort": [ - 492.29807, - "b12227432" + 492.39038, + "b21766784" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { "hits": { "total": { - "value": 0, + "value": 1, "relation": "eq" }, "max_score": null, - "hits": [] - } - } - } - }, - { - "_index": "resources-2024-10-22", - "_id": "b20569949", - "_score": 492.093, - "_source": { - "extent": [ - "1 online resource." - ], - "note": [ - { - "noteType": "Note", - "label": "Title from HTML t.p. (viewed May 1, 2009).", - "type": "bf:Note" - }, - { - "noteType": "Access", - "label": "Access restricted to authorized users.", - "type": "bf:Note" - }, - { - "noteType": "System Details", - "label": "Mode of access: World Wide Web.", - "type": "bf:Note" - } - ], - "nyplSource": [ - "sierra-nypl" - ], - "numItemDatesParsed": [ - 0 - ], - "publisherLiteral": [ - "Alexander Street Press" - ], - "language": [ - { - "id": "lang:eng", - "label": "English" - } - ], - "numItemsTotal": [ - 0 - ], - "createdYear": [ - 2007 - ], - "title": [ - "Toast of New York (1937) shooting script" - ], - "type": [ - "nypl:Item" - ], - "numItemVolumesParsed": [ - 0 - ], - "createdString": [ - "2007" - ], - "creatorLiteral": [ - "Nichols, Dudley, 1895-1960." - ], - "numElectronicResources": [ - 1 - ], - "seriesStatement": [ - "American film scripts online" - ], - "contributorLiteral": [ - "Josephson, Matthew, 1899-1978.", - "Twist, John, 1898-1976.", - "Sayre, Joel, 1900-1979." - ], - "dateStartYear": [ - 2007 + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "b21766784", + "_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:JFD 19-3255", + "urn:barcode:33433129000943" + ], + "physicalLocation": [ + "JFD 19-3255" + ], + "shelfMark_sort": "aJFD 19-003255", + "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": [ + "JFD 19-3255" + ], + "uri": "i37241733", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFD 19-3255" + }, + { + "type": "bf:Barcode", + "value": "33433129000943" + } + ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433129000943" + ], + "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": "b20569949", + "_score": 491.2833, + "_source": { + "extent": [ + "1 online resource." + ], + "note": [ + { + "noteType": "Note", + "label": "Title from HTML t.p. (viewed May 1, 2009).", + "type": "bf:Note" + }, + { + "noteType": "Access", + "label": "Access restricted to authorized users.", + "type": "bf:Note" + }, + { + "noteType": "System Details", + "label": "Mode of access: World Wide Web.", + "type": "bf:Note" + } + ], + "nyplSource": [ + "sierra-nypl" + ], + "numItemDatesParsed": [ + 0 + ], + "publisherLiteral": [ + "Alexander Street Press" + ], + "language": [ + { + "id": "lang:eng", + "label": "English" + } + ], + "numItemsTotal": [ + 0 + ], + "createdYear": [ + 2007 + ], + "buildingLocationIds": [], + "title": [ + "Toast of New York (1937) shooting script" + ], + "type": [ + "nypl:Item" + ], + "numItemVolumesParsed": [ + 0 + ], + "createdString": [ + "2007" + ], + "creatorLiteral": [ + "Nichols, Dudley, 1895-1960." + ], + "numElectronicResources": [ + 1 + ], + "seriesStatement": [ + "American film scripts online" + ], + "contributorLiteral": [ + "Josephson, Matthew, 1899-1978.", + "Twist, John, 1898-1976.", + "Sayre, Joel, 1900-1979." + ], + "dateStartYear": [ + 2007 ], "idOclc": [ "ssj0001177068" @@ -4230,7 +4420,7 @@ ] }, "sort": [ - 492.093, + 491.2833, "b20569949" ], "inner_hits": { @@ -4248,234 +4438,107 @@ }, { "_index": "resources-2024-10-22", - "_id": "b22839633", - "_score": 491.0797, + "_id": "b12227432", + "_score": 491.26044, "_source": { - "extent": [ - "1 online resource (1 sound file)" - ], "note": [ { - "noteType": "Language", - "label": "Sung in French.", + "noteType": "Note", + "label": "Review of the New York City Ballet in Peter Martins' Sleeping beauty, New York State Theatre, April 24, 1991.", "type": "bf:Note" } ], + "partOf": [ + "Dance and dancers. London. June/July 1991, p. 33-36. ill." + ], "nyplSource": [ "sierra-nypl" ], "subjectLiteral_exploded": [ - "Operas", - "Operas -- Excerpts", - "Songs (High voice) with orchestra", - "Orchestral music" + "Martins, Peter, 1946-", + "New York City Ballet" ], "numItemDatesParsed": [ 0 ], - "publisherLiteral": [ - "ABC Classics" - ], "language": [ { - "id": "lang:fre", - "label": "French" + "id": "lang:eng", + "label": "English" } ], "numItemsTotal": [ 0 ], "createdYear": [ - 2018 + 1991 ], + "buildingLocationIds": [], "title": [ - "A toast to Melba" + "A toast to Beauty." ], "type": [ "nypl:Item" ], + "shelfMark": [ + "*MGZA" + ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "2018" + "1991" ], - "idLccn": [ - "AUAB01850190", - "AUAB01850191", - "AUAB01850192", - "AUAB01850193", - "AUAB01850194", - "AUAB01850195", - "AUAB01850196", - "AUAB01850197", - "AUAB01850198", - "AUAB01850199", - "AUAB01850200", - "AUAB01850201", - "AUAB01850202", - "AUAB01850203", - "AUAB01850204", - "AUAB01850205", - "AUAB01850206" + "creatorLiteral": [ + "Barnes, Clive, 1927-2008." ], "numElectronicResources": [ - 1 - ], - "contributorLiteral": [ - "Gore, Lorina", - "Letonja, Marko, 1961-", - "Gounod, Charles, 1818-1893.", - "Verdi, Giuseppe, 1813-1901.", - "Massenet, Jules, 1842-1912.", - "Bizet, Georges, 1838-1875.", - "Rimsky-Korsakov, Nikolay, 1844-1908.", - "Thomas, Ambroise, 1811-1896.", - "Duparc, Henri, 1848-1933.", - "Tasmanian Symphony Orchestra, instrumentalist" - ], - "addedAuthorTitle": [ - "Roméo et Juliette.", - "Rigoletto.", - "Faust.", - "Manon.", - "Mireille.", - "Pêcheurs de perles.", - "Sadko (Opera).", - "Mignon.", - "Chanson triste.", - "Don César de Bazan." + 0 ], "dateStartYear": [ - 2018 + 1991 ], "idOclc": [ - "1336891241" + "NYPY916066942-B" ], "identifierV2": [ { - "type": "nypl:Bnumber", - "value": "22839633" - }, - { - "type": "nypl:Oclc", - "value": "1336891241" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850190" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850191" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850192" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850193" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850194" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850195" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850196" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850197" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850198" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850199" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850200" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850201" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850202" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850203" - }, - { - "type": "bf:Lccn", - "value": "AUAB01850204" + "type": "bf:ShelfMark", + "value": "*MGZA" }, { - "type": "bf:Lccn", - "value": "AUAB01850205" + "type": "nypl:Bnumber", + "value": "12227432" }, { - "type": "bf:Lccn", - "value": "AUAB01850206" + "type": "nypl:Oclc", + "value": "NYPY916066942-B" }, { "type": "bf:Identifier", - "value": "028948163632 ABC Classics" + "value": "(NN-PD)916066942" }, { "type": "bf:Identifier", - "value": "(OCoLC)1336891241" + "value": "(WaOLN)nyp2214263" } ], "popularity": 0, - "updatedAt": 1729184884377, - "publicationStatement": [ - "[Australia] : ABC Classics, [2018]" - ], - "genreForm": [ - "Streaming audio." - ], + "updatedAt": 1723129828477, "identifier": [ - "urn:bnum:22839633", - "urn:oclc:1336891241", - "urn:lccn:AUAB01850190", - "urn:lccn:AUAB01850191", - "urn:lccn:AUAB01850192", - "urn:lccn:AUAB01850193", - "urn:lccn:AUAB01850194", - "urn:lccn:AUAB01850195", - "urn:lccn:AUAB01850196", - "urn:lccn:AUAB01850197", - "urn:lccn:AUAB01850198", - "urn:lccn:AUAB01850199", - "urn:lccn:AUAB01850200", - "urn:lccn:AUAB01850201", - "urn:lccn:AUAB01850202", - "urn:lccn:AUAB01850203", - "urn:lccn:AUAB01850204", - "urn:lccn:AUAB01850205", - "urn:lccn:AUAB01850206", - "urn:identifier:028948163632 ABC Classics", - "urn:identifier:(OCoLC)1336891241" + "urn:shelfmark:*MGZA", + "urn:bnum:12227432", + "urn:oclc:NYPY916066942-B", + "urn:identifier:(NN-PD)916066942", + "urn:identifier:(WaOLN)nyp2214263" ], "numCheckinCardItems": [ 0 ], "materialType": [ { - "id": "resourcetypes:aud", - "label": "Audio" + "id": "resourcetypes:txt", + "label": "Text" } ], "carrierType": [ @@ -4485,7 +4548,7 @@ } ], "dateString": [ - "2018" + "1991" ], "mediaType": [ { @@ -4494,36 +4557,23 @@ } ], "subjectLiteral": [ - "Operas -- Excerpts.", - "Songs (High voice) with orchestra.", - "Orchestral music." + "Martins, Peter, 1946-", + "New York City Ballet." ], "titleDisplay": [ - "A toast to Melba / Lorina Gore." - ], - "uri": "b22839633", - "electronicResources": [ - { - "label": "Access Naxos Music Library", - "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=028948163632" - } - ], - "placeOfPublication": [ - "[Australia]" + "A toast to Beauty." ], + "uri": "b12227432", "issuance": [ { - "id": "urn:biblevel:m", - "label": "monograph/item" + "id": "urn:biblevel:b", + "label": "serial component part" } - ], - "tableOfContents": [ - "Roméo et Juliette. Ah! Je veux vivre dans le reve / Gounod (3:38) -- Rigoletto. Caro nome / Verdi (5:07) -- Faust. Les nubiennes (2:46) ; Adagio (3:51) / Gounod -- Faust. O Dieu! Que de bijoux! / Gounod (4:53) -- Manon. Obeissons quand leur voix appelle / Massenet (3:07) -- Mireille. Heureux petit berger / Gounod (2:24) ; Faust. Danse antique (1:34) ; Variations de Cleopatre (1:41) / Gounod -- Les pêcheurs de perles. me voilà seule dans la nuit ; Comme autrefois dans la nuit sombre / Bizet (6:20) -- Sadko. Song of the Indian guest / Rimsky-Korsakov (3:47) -- Mignon. Oui, pour ce soir je suis reine des fees / Thomas (5:42) -- Faust. Les Troyens (2:39) ; Variations du Miroir (1:59) ; Danse de Phryne (2:53) / Gounod -- Chanson triste / Duparc (3:22) -- Don Cesar de Bazan. A Seville, belles senoras / Massenet (3:10)." ] }, "sort": [ - 491.0797, - "b22839633" + 491.26044, + "b12227432" ], "inner_hits": { "items": { @@ -4540,135 +4590,235 @@ }, { "_index": "resources-2024-10-22", - "_id": "b21766784", - "_score": 490.732, + "_id": "b22839633", + "_score": 490.04526, "_source": { "extent": [ - "75 pages ;" + "1 online resource (1 sound file)" ], "note": [ { - "noteType": "Note", - "label": "Poems.", + "noteType": "Language", + "label": "Sung in French.", "type": "bf:Note" } ], "nyplSource": [ "sierra-nypl" ], + "subjectLiteral_exploded": [ + "Operas", + "Operas -- Excerpts", + "Songs (High voice) with orchestra", + "Orchestral music" + ], "numItemDatesParsed": [ 0 ], "publisherLiteral": [ - "Quattro Poetry" - ], - "description": [ - "\"This new poetry collection by Corrado Paina explores the induced meditations and considerations that illness imposes upon a body and mind.\"--" + "ABC Classics" ], "language": [ { - "id": "lang:eng", - "label": "English" + "id": "lang:fre", + "label": "French" } ], "numItemsTotal": [ - 1 + 0 ], "createdYear": [ 2018 ], + "buildingLocationIds": [], "title": [ - "A toast to illness" + "A toast to Melba" ], "type": [ "nypl:Item" ], - "shelfMark": [ - "JFD 19-3255" - ], "numItemVolumesParsed": [ 0 ], "createdString": [ "2018" ], - "creatorLiteral": [ - "Paina, Corrado, 1954-" - ], "idLccn": [ - "2018487509" + "AUAB01850190", + "AUAB01850191", + "AUAB01850192", + "AUAB01850193", + "AUAB01850194", + "AUAB01850195", + "AUAB01850196", + "AUAB01850197", + "AUAB01850198", + "AUAB01850199", + "AUAB01850200", + "AUAB01850201", + "AUAB01850202", + "AUAB01850203", + "AUAB01850204", + "AUAB01850205", + "AUAB01850206" ], "numElectronicResources": [ - 0 + 1 + ], + "contributorLiteral": [ + "Gore, Lorina", + "Letonja, Marko, 1961-", + "Gounod, Charles, 1818-1893.", + "Verdi, Giuseppe, 1813-1901.", + "Massenet, Jules, 1842-1912.", + "Bizet, Georges, 1838-1875.", + "Rimsky-Korsakov, Nikolay, 1844-1908.", + "Thomas, Ambroise, 1811-1896.", + "Duparc, Henri, 1848-1933.", + "Tasmanian Symphony Orchestra, instrumentalist" + ], + "addedAuthorTitle": [ + "Roméo et Juliette.", + "Rigoletto.", + "Faust.", + "Manon.", + "Mireille.", + "Pêcheurs de perles.", + "Sadko (Opera).", + "Mignon.", + "Chanson triste.", + "Don César de Bazan." ], "dateStartYear": [ 2018 ], "idOclc": [ - "1030339564" + "1336891241" ], "identifierV2": [ { - "type": "bf:ShelfMark", - "value": "JFD 19-3255" + "type": "nypl:Bnumber", + "value": "22839633" }, { - "type": "nypl:Bnumber", - "value": "21766784" + "type": "nypl:Oclc", + "value": "1336891241" }, { - "type": "bf:Isbn", - "value": "9781988254616" + "type": "bf:Lccn", + "value": "AUAB01850190" }, { - "type": "bf:Isbn", - "value": "1988254612" + "type": "bf:Lccn", + "value": "AUAB01850191" }, { - "type": "nypl:Oclc", - "value": "1030339564" + "type": "bf:Lccn", + "value": "AUAB01850192" }, { "type": "bf:Lccn", - "value": "2018487509" + "value": "AUAB01850193" + }, + { + "type": "bf:Lccn", + "value": "AUAB01850194" + }, + { + "type": "bf:Lccn", + "value": "AUAB01850195" + }, + { + "type": "bf:Lccn", + "value": "AUAB01850196" + }, + { + "type": "bf:Lccn", + "value": "AUAB01850197" + }, + { + "type": "bf:Lccn", + "value": "AUAB01850198" + }, + { + "type": "bf:Lccn", + "value": "AUAB01850199" + }, + { + "type": "bf:Lccn", + "value": "AUAB01850200" + }, + { + "type": "bf:Lccn", + "value": "AUAB01850201" + }, + { + "type": "bf:Lccn", + "value": "AUAB01850202" + }, + { + "type": "bf:Lccn", + "value": "AUAB01850203" + }, + { + "type": "bf:Lccn", + "value": "AUAB01850204" + }, + { + "type": "bf:Lccn", + "value": "AUAB01850205" + }, + { + "type": "bf:Lccn", + "value": "AUAB01850206" }, { "type": "bf:Identifier", - "value": "(OCoLC)1030339564" + "value": "028948163632 ABC Classics" }, { "type": "bf:Identifier", - "value": "(OCoLC)1030484899" + "value": "(OCoLC)1336891241" } ], - "updatedAt": 1711251518653, + "popularity": 0, + "updatedAt": 1729184884377, "publicationStatement": [ - "Toronto, Canada : Quattro Poetry, 2018." + "[Australia] : ABC Classics, [2018]" ], "genreForm": [ - "Poetry." - ], - "idIsbn": [ - "9781988254616", - "1988254612" + "Streaming audio." ], "identifier": [ - "urn:shelfmark:JFD 19-3255", - "urn:bnum:21766784", - "urn:isbn:9781988254616", - "urn:isbn:1988254612", - "urn:oclc:1030339564", - "urn:lccn:2018487509", - "urn:identifier:(OCoLC)1030339564", - "urn:identifier:(OCoLC)1030484899" + "urn:bnum:22839633", + "urn:oclc:1336891241", + "urn:lccn:AUAB01850190", + "urn:lccn:AUAB01850191", + "urn:lccn:AUAB01850192", + "urn:lccn:AUAB01850193", + "urn:lccn:AUAB01850194", + "urn:lccn:AUAB01850195", + "urn:lccn:AUAB01850196", + "urn:lccn:AUAB01850197", + "urn:lccn:AUAB01850198", + "urn:lccn:AUAB01850199", + "urn:lccn:AUAB01850200", + "urn:lccn:AUAB01850201", + "urn:lccn:AUAB01850202", + "urn:lccn:AUAB01850203", + "urn:lccn:AUAB01850204", + "urn:lccn:AUAB01850205", + "urn:lccn:AUAB01850206", + "urn:identifier:028948163632 ABC Classics", + "urn:identifier:(OCoLC)1336891241" ], "numCheckinCardItems": [ 0 ], "materialType": [ { - "id": "resourcetypes:txt", - "label": "Text" + "id": "resourcetypes:aud", + "label": "Audio" } ], "carrierType": [ @@ -4686,137 +4836,47 @@ "label": "unmediated" } ], - "titleDisplay": [ - "A toast to illness / Corrado Paina." - ], - "uri": "b21766784", - "lccClassification": [ - "PR9199.4.P34 T63 2018" - ], - "placeOfPublication": [ - "Toronto, Canada" - ], - "issuance": [ - { - "id": "urn:biblevel:m", - "label": "monograph/item" - } - ], - "dimensions": [ - "22 cm" - ], - "idIsbn_clean": [ - "9781988254616", - "1988254612" - ] - }, - "sort": [ - 490.732, - "b21766784" - ], - "inner_hits": { - "items": { - "hits": { - "total": { - "value": 1, - "relation": "eq" - }, - "max_score": null, - "hits": [ - { - "_index": "resources-2024-10-22", - "_id": "b21766784", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" - ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" - } - ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" - ], - "idBarcode": [ - "33433129000943" - ], - "identifier": [ - "urn:shelfmark:JFD 19-3255", - "urn:barcode:33433129000943" - ], - "identifierV2": [ - { - "value": "JFD 19-3255", - "type": "bf:ShelfMark" - }, - { - "value": "33433129000943", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], - "owner_packed": [ - "orgs:1101||General Research Division" - ], - "physicalLocation": [ - "JFD 19-3255" - ], - "requestable": [ - true - ], - "shelfMark": [ - "JFD 19-3255" - ], - "shelfMark_sort": "aJFD 19-003255", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37241733" - }, - "sort": [ - null - ] - } - ] + "subjectLiteral": [ + "Operas -- Excerpts.", + "Songs (High voice) with orchestra.", + "Orchestral music." + ], + "titleDisplay": [ + "A toast to Melba / Lorina Gore." + ], + "uri": "b22839633", + "electronicResources": [ + { + "label": "Access Naxos Music Library", + "url": "https://nypl.naxosmusiclibrary.com/catalogue/item.asp?cid=028948163632" + } + ], + "placeOfPublication": [ + "[Australia]" + ], + "issuance": [ + { + "id": "urn:biblevel:m", + "label": "monograph/item" + } + ], + "tableOfContents": [ + "Roméo et Juliette. Ah! Je veux vivre dans le reve / Gounod (3:38) -- Rigoletto. Caro nome / Verdi (5:07) -- Faust. Les nubiennes (2:46) ; Adagio (3:51) / Gounod -- Faust. O Dieu! Que de bijoux! / Gounod (4:53) -- Manon. Obeissons quand leur voix appelle / Massenet (3:07) -- Mireille. Heureux petit berger / Gounod (2:24) ; Faust. Danse antique (1:34) ; Variations de Cleopatre (1:41) / Gounod -- Les pêcheurs de perles. me voilà seule dans la nuit ; Comme autrefois dans la nuit sombre / Bizet (6:20) -- Sadko. Song of the Indian guest / Rimsky-Korsakov (3:47) -- Mignon. Oui, pour ce soir je suis reine des fees / Thomas (5:42) -- Faust. Les Troyens (2:39) ; Variations du Miroir (1:59) ; Danse de Phryne (2:53) / Gounod -- Chanson triste / Duparc (3:22) -- Don Cesar de Bazan. A Seville, belles senoras / Massenet (3:10)." + ] + }, + "sort": [ + 490.04526, + "b22839633" + ], + "inner_hits": { + "items": { + "hits": { + "total": { + "value": 0, + "relation": "eq" + }, + "max_score": null, + "hits": [] } } } @@ -4824,7 +4884,7 @@ { "_index": "resources-2024-10-22", "_id": "b16579957", - "_score": 489.57452, + "_score": 489.54367, "_source": { "extent": [ "iv, 238 p. ;" @@ -4859,6 +4919,9 @@ "createdYear": [ 1991 ], + "buildingLocationIds": [ + "sc" + ], "title": [ "A toast to Nigeria" ], @@ -4969,9 +5032,12 @@ ] }, "sort": [ - 489.57452, + 489.54367, "b16579957" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -4990,85 +5056,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc D 07-1829", + "urn:barcode:33433074287149" + ], + "physicalLocation": [ + "Sc D 07-1829" + ], + "shelfMark_sort": "aSc D 07-001829", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433074287149" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc D 07-1829", - "urn:barcode:33433074287149" + "shelfMark": [ + "Sc D 07-1829" ], + "uri": "i17355861", "identifierV2": [ { - "value": "Sc D 07-1829", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc D 07-1829" }, { - "value": "33433074287149", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433074287149" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433074287149" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc D 07-1829" - ], "requestable": [ true ], - "shelfMark": [ - "Sc D 07-1829" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc D 07-001829", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i17355861" + ] }, "sort": [ null @@ -5082,7 +5148,7 @@ { "_index": "resources-2024-10-22", "_id": "pb9957146923506421", - "_score": 483.8183, + "_score": 484.9541, "_source": { "extent": [ "272 p. ;" @@ -5115,6 +5181,9 @@ "createdYear": [ 2008 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Mushy peas on toast" ], @@ -5252,7 +5321,7 @@ ] }, "sort": [ - 483.8183, + 484.9541, "pb9957146923506421" ], "inner_hits": { @@ -5273,79 +5342,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0003", + "label": "Princeton University Library" } ], + "identifier": [ + "urn:shelfmark:PR9369.4.C54 M87 2008", + "urn:barcode:32101069223301" + ], + "physicalLocation": [ + "PR9369.4.C54 M87 2008" + ], + "shelfMark_sort": "aPR9369.4.C54 M87 002008", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } ], - "idBarcode": [ - "32101069223301" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:PR9369.4.C54 M87 2008", - "urn:barcode:32101069223301" + "type": [ + "bf:Item" ], + "shelfMark": [ + "PR9369.4.C54 M87 2008" + ], + "uri": "pi23713898730006421", "identifierV2": [ { - "value": "PR9369.4.C54 M87 2008", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PR9369.4.C54 M87 2008" }, { - "value": "32101069223301", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "32101069223301" } ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } + "idBarcode": [ + "32101069223301" ], "owner_packed": [ "orgs:0003||Princeton University Library" ], - "physicalLocation": [ - "PR9369.4.C54 M87 2008" - ], - "recapCustomerCode": [ - "PA" - ], "requestable": [ true ], - "shelfMark": [ - "PR9369.4.C54 M87 2008" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "PA" ], - "shelfMark_sort": "aPR9369.4.C54 M87 002008", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23713898730006421" + ] }, "sort": [ null @@ -5358,26 +5427,31 @@ }, { "_index": "resources-2024-10-22", - "_id": "b18437590", - "_score": 466.70343, + "_id": "b22185434", + "_score": 467.96985, "_source": { "extent": [ - "xii, 156 p. ;" + "166 p. ;" ], "nyplSource": [ "sierra-nypl" ], "subjectLiteral_exploded": [ - "Ijesa (African people)", - "Ijesa (African people) -- Biography", - "Ilesa (Nigeria)", - "Ilesa (Nigeria) -- Description and travel" + "Rosenblatt, Roger", + "Rosenblatt, Roger -- Family", + "Grandparent and child", + "Bereavement", + "Parenting", + "Grandparents as parents", + "Daughters", + "Daughters -- Death", + "Grandparents" ], "numItemDatesParsed": [ 0 ], "publisherLiteral": [ - "Keynotes Publishers" + "Ecco" ], "language": [ { @@ -5389,90 +5463,79 @@ 1 ], "createdYear": [ - 2008 + 2010 + ], + "buildingLocationIds": [ + "ma" ], "title": [ - "A toast of Ijesa people" + "Making toast : a family story" ], "type": [ "nypl:Item" ], "shelfMark": [ - "Sc D 10-1128" + "JFD 10-2308" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "2008" + "2010" ], "creatorLiteral": [ - "Fatubarin, Ayo." - ], - "idLccn": [ - "2009382032" + "Rosenblatt, Roger." ], "numElectronicResources": [ 0 ], - "seriesStatement": [ - "Patriotic reflections on Ijesaland ; no. 2" - ], "dateStartYear": [ - 2008 + 2010 ], "idOclc": [ - "318127683" + "419859876" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "Sc D 10-1128" + "value": "JFD 10-2308" }, { "type": "nypl:Bnumber", - "value": "18437590" + "value": "22185434" }, { "type": "bf:Isbn", - "value": "978375842X" + "value": "006182593X (hbk.)" }, { "type": "bf:Isbn", - "value": "9789783758421" + "value": "9780061825934 (hbk.)" }, { "type": "nypl:Oclc", - "value": "318127683" - }, - { - "type": "bf:Lccn", - "value": "2009382032" + "value": "419859876" }, { "type": "bf:Identifier", - "value": "(OCoLC)318127683" + "value": "(OCoLC)419859876" } ], - "uniformTitle": [ - "Patriotic reflections on Ijesaland ; no. 2." - ], - "updatedAt": 1711108404308, + "updatedAt": 1711340157739, "publicationStatement": [ - "Ilesa : Keynotes Publishers, c2008." + "New York : Ecco, c2010." ], "idIsbn": [ - "978375842X", - "9789783758421" + "006182593X (hbk.)", + "9780061825934 (hbk.)" ], "identifier": [ - "urn:shelfmark:Sc D 10-1128", - "urn:bnum:18437590", - "urn:isbn:978375842X", - "urn:isbn:9789783758421", - "urn:oclc:318127683", - "urn:lccn:2009382032", - "urn:identifier:(OCoLC)318127683" + "urn:shelfmark:JFD 10-2308", + "urn:bnum:22185434", + "urn:isbn:006182593X (hbk.)", + "urn:isbn:9780061825934 (hbk.)", + "urn:oclc:419859876", + "urn:identifier:(OCoLC)419859876" ], "numCheckinCardItems": [ 0 @@ -5490,7 +5553,7 @@ } ], "dateString": [ - "2008" + "2010" ], "mediaType": [ { @@ -5499,18 +5562,20 @@ } ], "subjectLiteral": [ - "Ijesa (African people) -- Biography.", - "Ilesa (Nigeria) -- Description and travel." + "Rosenblatt, Roger -- Family.", + "Grandparent and child.", + "Bereavement.", + "Parenting.", + "Grandparents as parents.", + "Daughters -- Death.", + "Grandparents." ], "titleDisplay": [ - "A toast of Ijesa people / Ayo Fatubarin." - ], - "uri": "b18437590", - "lccClassification": [ - "DT515.45.I348 F384 2008" + "Making toast : a family story / Roger Rosenblatt." ], + "uri": "b22185434", "placeOfPublication": [ - "Ilesa" + "New York" ], "issuance": [ { @@ -5519,16 +5584,19 @@ } ], "dimensions": [ - "21 cm." + "22 cm." ], "idIsbn_clean": [ - "978375842X", - "9789783758421" + "006182593X", + "9780061825934" ] }, "sort": [ - 466.70343, - "b18437590" + 467.96985, + "b22185434" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { @@ -5541,92 +5609,92 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "b18437590", + "_id": "b22185434", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:JFD 10-2308", + "urn:barcode:33433087759761" + ], + "physicalLocation": [ + "JFD 10-2308" + ], + "shelfMark_sort": "aJFD 10-002308", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433089279883" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc D 10-1128", - "urn:barcode:33433089279883" + "shelfMark": [ + "JFD 10-2308" ], + "uri": "i37905601", "identifierV2": [ { - "value": "Sc D 10-1128", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JFD 10-2308" }, { - "value": "33433089279883", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433087759761" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" ], - "owner_packed": [ - "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + "idBarcode": [ + "33433087759761" ], - "physicalLocation": [ - "Sc D 10-1128" + "owner_packed": [ + "orgs:1101||General Research Division" ], "requestable": [ true ], - "shelfMark": [ - "Sc D 10-1128" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aSc D 10-001128", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i25227645" + ] }, "sort": [ null @@ -5639,31 +5707,26 @@ }, { "_index": "resources-2024-10-22", - "_id": "b22185434", - "_score": 466.369, + "_id": "b18437590", + "_score": 466.71155, "_source": { "extent": [ - "166 p. ;" + "xii, 156 p. ;" ], "nyplSource": [ "sierra-nypl" ], "subjectLiteral_exploded": [ - "Rosenblatt, Roger", - "Rosenblatt, Roger -- Family", - "Grandparent and child", - "Bereavement", - "Parenting", - "Grandparents as parents", - "Daughters", - "Daughters -- Death", - "Grandparents" + "Ijesa (African people)", + "Ijesa (African people) -- Biography", + "Ilesa (Nigeria)", + "Ilesa (Nigeria) -- Description and travel" ], "numItemDatesParsed": [ 0 ], "publisherLiteral": [ - "Ecco" + "Keynotes Publishers" ], "language": [ { @@ -5675,76 +5738,93 @@ 1 ], "createdYear": [ - 2010 + 2008 + ], + "buildingLocationIds": [ + "sc" ], "title": [ - "Making toast : a family story" + "A toast of Ijesa people" ], "type": [ "nypl:Item" ], "shelfMark": [ - "JFD 10-2308" + "Sc D 10-1128" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "2010" + "2008" ], "creatorLiteral": [ - "Rosenblatt, Roger." + "Fatubarin, Ayo." + ], + "idLccn": [ + "2009382032" ], "numElectronicResources": [ 0 ], + "seriesStatement": [ + "Patriotic reflections on Ijesaland ; no. 2" + ], "dateStartYear": [ - 2010 + 2008 ], "idOclc": [ - "419859876" + "318127683" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "JFD 10-2308" + "value": "Sc D 10-1128" }, { "type": "nypl:Bnumber", - "value": "22185434" + "value": "18437590" }, { "type": "bf:Isbn", - "value": "006182593X (hbk.)" + "value": "978375842X" }, { "type": "bf:Isbn", - "value": "9780061825934 (hbk.)" + "value": "9789783758421" }, { "type": "nypl:Oclc", - "value": "419859876" + "value": "318127683" + }, + { + "type": "bf:Lccn", + "value": "2009382032" }, { "type": "bf:Identifier", - "value": "(OCoLC)419859876" + "value": "(OCoLC)318127683" } ], - "updatedAt": 1711340157739, + "uniformTitle": [ + "Patriotic reflections on Ijesaland ; no. 2." + ], + "updatedAt": 1711108404308, "publicationStatement": [ - "New York : Ecco, c2010." + "Ilesa : Keynotes Publishers, c2008." ], "idIsbn": [ - "006182593X (hbk.)", - "9780061825934 (hbk.)" + "978375842X", + "9789783758421" ], "identifier": [ - "urn:shelfmark:JFD 10-2308", - "urn:bnum:22185434", - "urn:isbn:006182593X (hbk.)", - "urn:isbn:9780061825934 (hbk.)", - "urn:oclc:419859876", - "urn:identifier:(OCoLC)419859876" + "urn:shelfmark:Sc D 10-1128", + "urn:bnum:18437590", + "urn:isbn:978375842X", + "urn:isbn:9789783758421", + "urn:oclc:318127683", + "urn:lccn:2009382032", + "urn:identifier:(OCoLC)318127683" ], "numCheckinCardItems": [ 0 @@ -5762,7 +5842,7 @@ } ], "dateString": [ - "2010" + "2008" ], "mediaType": [ { @@ -5771,20 +5851,18 @@ } ], "subjectLiteral": [ - "Rosenblatt, Roger -- Family.", - "Grandparent and child.", - "Bereavement.", - "Parenting.", - "Grandparents as parents.", - "Daughters -- Death.", - "Grandparents." + "Ijesa (African people) -- Biography.", + "Ilesa (Nigeria) -- Description and travel." ], "titleDisplay": [ - "Making toast : a family story / Roger Rosenblatt." + "A toast of Ijesa people / Ayo Fatubarin." + ], + "uri": "b18437590", + "lccClassification": [ + "DT515.45.I348 F384 2008" ], - "uri": "b22185434", "placeOfPublication": [ - "New York" + "Ilesa" ], "issuance": [ { @@ -5793,16 +5871,19 @@ } ], "dimensions": [ - "22 cm." + "21 cm." ], "idIsbn_clean": [ - "006182593X", - "9780061825934" + "978375842X", + "9789783758421" ] }, "sort": [ - 466.369, - "b22185434" + 466.71155, + "b18437590" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { @@ -5815,92 +5896,92 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "b22185434", + "_id": "b18437590", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc D 10-1128", + "urn:barcode:33433089279883" + ], + "physicalLocation": [ + "Sc D 10-1128" + ], + "shelfMark_sort": "aSc D 10-001128", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433087759761" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:JFD 10-2308", - "urn:barcode:33433087759761" + "shelfMark": [ + "Sc D 10-1128" ], + "uri": "i25227645", "identifierV2": [ { - "value": "JFD 10-2308", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc D 10-1128" }, { - "value": "33433087759761", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433089279883" } ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" ], - "owner_packed": [ - "orgs:1101||General Research Division" + "idBarcode": [ + "33433089279883" ], - "physicalLocation": [ - "JFD 10-2308" + "owner_packed": [ + "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], "requestable": [ true ], - "shelfMark": [ - "JFD 10-2308" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aJFD 10-002308", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37905601" + ] }, "sort": [ null @@ -5914,7 +5995,7 @@ { "_index": "resources-2024-10-22", "_id": "b13111567", - "_score": 464.5654, + "_score": 465.16248, "_source": { "extent": [ "v." @@ -5943,6 +6024,9 @@ "dateEndString": [ "9999" ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Verse and toast. Series 1-" ], @@ -6061,7 +6145,7 @@ ] }, "sort": [ - 464.5654, + 465.16248, "b13111567" ], "inner_hits": { @@ -6082,91 +6166,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:32", - "label": "google project, book" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:NBI (Rowe, W. H. Verse and toast) ser. 2", + "urn:barcode:33433066644109" + ], + "physicalLocation": [ + "NBI (Rowe, W. H. Verse and toast)" + ], + "shelfMark_sort": "aNBI (Rowe, W. H. Verse and toast) ser. 000002", "catalogItemType_packed": [ "catalogItemType:32||google project, book" ], - "enumerationChronology": [ - "ser. 2" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "formatLiteral": [ - "Text" + "status_packed": [ + "status:a||Available" ], - "holdingLocation": [ + "type": [ + "bf:Item" + ], + "shelfMark": [ + "NBI (Rowe, W. H. Verse and toast) ser. 2" + ], + "uri": "i16815166", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "NBI (Rowe, W. H. Verse and toast) ser. 2" + }, + { + "type": "bf:Barcode", + "value": "33433066644109" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "ser. 2" + ], "idBarcode": [ "33433066644109" ], - "identifier": [ - "urn:shelfmark:NBI (Rowe, W. H. Verse and toast) ser. 2", - "urn:barcode:33433066644109" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "NBI (Rowe, W. H. Verse and toast) ser. 2", - "type": "bf:ShelfMark" - }, - { - "value": "33433066644109", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:32", + "label": "google project, book" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "NBI (Rowe, W. H. Verse and toast)" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "NBI (Rowe, W. H. Verse and toast) ser. 2" - ], - "shelfMark_sort": "aNBI (Rowe, W. H. Verse and toast) ser. 000002", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16815166" + ] }, "sort": [ null @@ -6181,91 +6265,91 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:32", - "label": "google project, book" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1", + "urn:barcode:33433066644091" + ], + "physicalLocation": [ + "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2" + ], + "shelfMark_sort": "aNBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 000001", "catalogItemType_packed": [ "catalogItemType:32||google project, book" ], - "enumerationChronology": [ - "ser. 1" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "formatLiteral": [ - "Text" + "status_packed": [ + "status:a||Available" ], - "holdingLocation": [ + "type": [ + "bf:Item" + ], + "shelfMark": [ + "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1" + ], + "uri": "i16257903", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1" + }, + { + "type": "bf:Barcode", + "value": "33433066644091" } ], "holdingLocation_packed": [ "loc:rc2ma||Offsite" ], + "enumerationChronology": [ + "ser. 1" + ], "idBarcode": [ "33433066644091" ], - "identifier": [ - "urn:shelfmark:NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1", - "urn:barcode:33433066644091" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1", - "type": "bf:ShelfMark" - }, - { - "value": "33433066644091", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:32", + "label": "google project, book" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "NBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 1" - ], - "shelfMark_sort": "aNBI (Rowe, W. H. Verse and toast) Library has: Series 1-2 ser. 000001", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16257903" + ] }, "sort": [ null @@ -6279,7 +6363,7 @@ { "_index": "resources-2024-10-22", "_id": "b17133475", - "_score": 464.5654, + "_score": 465.16248, "_source": { "extent": [ "1 v. (unpaged) : col. ill. ;" @@ -6314,6 +6398,9 @@ "createdYear": [ 1997 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Burnt toast on Davenport Street" ], @@ -6435,7 +6522,7 @@ ] }, "sort": [ - 464.5654, + 465.16248, "b17133475" ], "inner_hits": { @@ -6456,88 +6543,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:J PIC E", + "urn:barcode:33333113836635" + ], + "physicalLocation": [ + "J PIC E" + ], + "shelfMark_sort": "aJ PIC E", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33333113836635" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:J PIC E", - "urn:barcode:33333113836635" + "shelfMark": [ + "J PIC E" ], + "uri": "i18069850", "identifierV2": [ { - "value": "J PIC E", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "J PIC E" }, { - "value": "33333113836635", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33333113836635" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33333113836635" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "J PIC E" - ], - "recapCustomerCode": [ - "NH" - ], "requestable": [ true ], - "shelfMark": [ - "J PIC E" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NH" ], - "shelfMark_sort": "aJ PIC E", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i18069850" + ] }, "sort": [ null @@ -6551,7 +6638,7 @@ { "_index": "resources-2024-10-22", "_id": "cb13686426", - "_score": 449.47037, + "_score": 448.9937, "_source": { "extent": [ "volume : color illustrations ;" @@ -6590,12 +6677,15 @@ "numItemsTotal": [ 1 ], - "dateEndString": [ - "9999" - ], "createdYear": [ 2018 ], + "buildingLocationIds": [ + "rc" + ], + "dateEndString": [ + "9999" + ], "type": [ "nypl:Item" ], @@ -6749,7 +6839,7 @@ ] }, "sort": [ - 449.47037, + 448.9937, "cb13686426" ], "inner_hits": { @@ -6770,41 +6860,48 @@ }, "_score": null, "_source": { - "uri": "ci9545552", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:AR02401576" + ], + "physicalLocation": [ + "ND992.9 .B83 2018g" ], + "shelfMark_sort": "aND992.9 .B83 2018g v.000001", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "enumerationChronology_sort": [ + " 1-" + ], + "type": [ + "bf:Item" + ], + "uri": "ci9545552", "shelfMark": [ "ND992.9 .B83 2018g v.1" ], "identifierV2": [ { - "value": "ND992.9 .B83 2018g v.1", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ND992.9 .B83 2018g v.1" }, { "type": "bf:Barcode", @@ -6814,29 +6911,29 @@ "enumerationChronology": [ "v.1" ], - "physicalLocation": [ - "ND992.9 .B83 2018g" - ], - "recapCustomerCode": [ - "AR" - ], - "identifier": [ - "urn:barcode:AR02401576" - ], "idBarcode": [ "AR02401576" ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "recapCustomerCode": [ + "AR" ], "volumeRange": [ { @@ -6844,16 +6941,9 @@ "lte": 1 } ], - "enumerationChronology_sort": [ - " 1-" - ], - "type": [ - "bf:Item" - ], "formatLiteral": [ "Text" - ], - "shelfMark_sort": "aND992.9 .B83 2018g v.000001" + ] }, "sort": [ " 1-" @@ -6867,7 +6957,7 @@ { "_index": "resources-2024-10-22", "_id": "b22202337", - "_score": 445.34592, + "_score": 445.8949, "_source": { "extent": [ "xiii, 218 p. : col. ill. ;" @@ -7037,7 +7127,7 @@ ] }, "sort": [ - 445.34592, + 445.8949, "b22202337" ], "matched_queries": [ @@ -7153,7 +7243,7 @@ { "_index": "resources-2024-10-22", "_id": "b17794539", - "_score": 443.88086, + "_score": 444.4289, "_source": { "extent": [ "118 p. ;" @@ -7190,6 +7280,9 @@ "createdYear": [ 1999 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "If that breathes fire, we're toast!" ], @@ -7304,7 +7397,7 @@ ] }, "sort": [ - 443.88086, + 444.4289, "b17794539" ], "inner_hits": { @@ -7325,31 +7418,50 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:J FIC S", + "urn:barcode:33333120986738" + ], + "physicalLocation": [ + "J FIC S" + ], + "shelfMark_sort": "aJ FIC S", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "holdingLocation": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "J FIC S" + ], + "uri": "i18335641", + "identifierV2": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "type": "bf:ShelfMark", + "value": "J FIC S" + }, + { + "type": "bf:Barcode", + "value": "33333120986738" } ], "holdingLocation_packed": [ @@ -7358,55 +7470,36 @@ "idBarcode": [ "33333120986738" ], - "identifier": [ - "urn:shelfmark:J FIC S", - "urn:barcode:33333120986738" + "owner_packed": [ + "orgs:1000||Stephen A. Schwarzman Building" ], - "identifierV2": [ - { - "value": "J FIC S", - "type": "bf:ShelfMark" - }, - { - "value": "33333120986738", - "type": "bf:Barcode" - } + "requestable": [ + true ], - "owner": [ + "catalogItemType": [ { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" } ], - "owner_packed": [ - "orgs:1000||Stephen A. Schwarzman Building" + "formatLiteral": [ + "Text" ], - "physicalLocation": [ - "J FIC S" + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } ], "recapCustomerCode": [ "NA" ], - "requestable": [ - true - ], - "shelfMark": [ - "J FIC S" - ], - "shelfMark_sort": "aJ FIC S", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i18335641" + ] }, "sort": [ null @@ -7420,7 +7513,7 @@ { "_index": "resources-2024-10-22", "_id": "cb11446537", - "_score": 437.43222, + "_score": 438.45862, "_source": { "extent": [ "viii, 82 pages ;" @@ -7454,6 +7547,9 @@ "createdYear": [ 2014 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -7603,15 +7699,15 @@ "placeOfPublication": [ "New Delhi" ], + "titleAlt": [ + "Benda kạḷu ān ṭōsṭ." + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Benda kạḷu ān ṭōsṭ." - ], "idIsbn_clean": [ "9780198098607", "019809860X" @@ -7621,7 +7717,7 @@ ] }, "sort": [ - 437.43222, + 438.45862, "cb11446537" ], "inner_hits": { @@ -7642,78 +7738,78 @@ }, "_score": null, "_source": { - "uri": "ci8752018", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:CU24576484" + ], + "physicalLocation": [ + "PL4659.K33 B4613 2014g" ], + "shelfMark_sort": "aPL4659.K33 B4613 2014g", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "uri": "ci8752018", "shelfMark": [ "PL4659.K33 B4613 2014g" ], "identifierV2": [ { - "value": "PL4659.K33 B4613 2014g", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PL4659.K33 B4613 2014g" }, { "type": "bf:Barcode", "value": "CU24576484" } ], - "physicalLocation": [ - "PL4659.K33 B4613 2014g" - ], - "recapCustomerCode": [ - "CU" - ], - "identifier": [ - "urn:barcode:CU24576484" - ], "idBarcode": [ "CU24576484" ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "type": [ - "bf:Item" + "recapCustomerCode": [ + "CU" ], "formatLiteral": [ "Text" - ], - "shelfMark_sort": "aPL4659.K33 B4613 2014g" + ] }, "sort": [ null @@ -7727,7 +7823,7 @@ { "_index": "resources-2024-10-22", "_id": "hb990092192200203941", - "_score": 433.29114, + "_score": 434.19, "_source": { "extent": [ "247 p. ;" @@ -7768,6 +7864,9 @@ "createdYear": [ 2003 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Toast : the story of a boy's hunger / Nigel Slater." ], @@ -7897,7 +7996,7 @@ ] }, "sort": [ - 433.29114, + 434.19, "hb990092192200203941" ], "inner_hits": { @@ -7918,79 +8017,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0004", + "label": "Harvard Library" } ], + "identifier": [ + "urn:shelfmark:TX649.S5 A3 2003", + "urn:barcode:HXSKRU" + ], + "physicalLocation": [ + "TX649.S5 A3 2003" + ], + "shelfMark_sort": "aTX649.S5 A3 002003", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } ], - "idBarcode": [ - "HXSKRU" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:TX649.S5 A3 2003", - "urn:barcode:HXSKRU" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "TX649.S5 A3 2003" ], + "uri": "hi232073168660003941", "identifierV2": [ { - "value": "TX649.S5 A3 2003", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "TX649.S5 A3 2003" }, { - "value": "HXSKRU", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "HXSKRU" } ], - "owner": [ - { - "id": "orgs:0004", - "label": "Harvard Library" - } + "idBarcode": [ + "HXSKRU" ], "owner_packed": [ "orgs:0004||Harvard Library" ], - "physicalLocation": [ - "TX649.S5 A3 2003" - ], - "recapCustomerCode": [ - "HW" - ], "requestable": [ true ], - "shelfMark": [ - "TX649.S5 A3 2003" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "HW" ], - "shelfMark_sort": "aTX649.S5 A3 002003", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "hi232073168660003941" + ] }, "sort": [ null @@ -8004,7 +8103,7 @@ { "_index": "resources-2024-10-22", "_id": "pb9911624953506421", - "_score": 429.24518, + "_score": 428.9179, "_source": { "extent": [ "1 score (9 p.) ;" @@ -8053,12 +8152,15 @@ "createdYear": [ 1994 ], - "title": [ - "A wedding toast : for soprano and string quartet" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "A wedding toast : for soprano and string quartet" + ], "numItemVolumesParsed": [ 0 ], @@ -8077,10 +8179,6 @@ "dateStartYear": [ 1994 ], - "idOclc": [ - "ocn666197888", - "SCSB-2121535" - ], "identifierV2": [ { "type": "nypl:Bnumber", @@ -8119,6 +8217,10 @@ "value": "(NjP)Voyager1162495" } ], + "idOclc": [ + "ocn666197888", + "SCSB-2121535" + ], "uniformTitle": [ "Wedding toast; arr." ], @@ -8127,10 +8229,6 @@ "publicationStatement": [ "Victoria, British Columbia : AdLar Publications, c1994." ], - "genreForm": [ - "Scores.", - "Songs." - ], "identifier": [ "urn:bnum:9911624953506421", "urn:oclc:ocn666197888", @@ -8142,6 +8240,10 @@ "urn:identifier:(OCoLC)37469199", "urn:identifier:(NjP)Voyager1162495" ], + "genreForm": [ + "Scores.", + "Songs." + ], "numCheckinCardItems": [ 0 ], @@ -8180,21 +8282,21 @@ "placeOfPublication": [ "Victoria, British Columbia" ], + "titleAlt": [ + "Wedding toast;" + ], "issuance": [ { "id": "urn:biblevel:m", "label": "monograph/item" } ], - "titleAlt": [ - "Wedding toast;" - ], "dimensions": [ "28 cm." ] }, "sort": [ - 429.24518, + 428.9179, "pb9911624953506421" ], "inner_hits": { @@ -8215,79 +8317,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0003", + "label": "Princeton University Library" } ], + "identifier": [ + "urn:shelfmark:M1613.3.A32 W4 1994q Oversize", + "urn:barcode:32101069496063" + ], + "physicalLocation": [ + "M1613.3.A32 W4 1994q Oversize" + ], + "shelfMark_sort": "aM1613.3.A32 W4 1994q Oversize", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Notated music" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } ], - "idBarcode": [ - "32101069496063" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:M1613.3.A32 W4 1994q Oversize", - "urn:barcode:32101069496063" + "type": [ + "bf:Item" ], + "shelfMark": [ + "M1613.3.A32 W4 1994q Oversize" + ], + "uri": "pi23608241160006421", "identifierV2": [ { - "value": "M1613.3.A32 W4 1994q Oversize", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "M1613.3.A32 W4 1994q Oversize" }, { - "value": "32101069496063", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "32101069496063" } ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } + "idBarcode": [ + "32101069496063" ], "owner_packed": [ "orgs:0003||Princeton University Library" ], - "physicalLocation": [ - "M1613.3.A32 W4 1994q Oversize" - ], - "recapCustomerCode": [ - "PA" - ], "requestable": [ true ], - "shelfMark": [ - "M1613.3.A32 W4 1994q Oversize" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Notated music" + ], + "recapCustomerCode": [ + "PA" ], - "shelfMark_sort": "aM1613.3.A32 W4 1994q Oversize", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23608241160006421" + ] }, "sort": [ null @@ -8300,26 +8402,21 @@ }, { "_index": "resources-2024-10-22", - "_id": "b18036289", - "_score": 424.65125, + "_id": "b19838551", + "_score": 425.8426, "_source": { "extent": [ - "1 score (14 p.) + 2 parts : port. ;" + "112 p. ;" ], "note": [ { "noteType": "Note", - "label": "Biographical notes, p. [4] of cover.", - "type": "bf:Note" - }, - { - "noteType": "Note", - "label": "Duration: ca. 8:30.", + "label": "Kraftgriots.", "type": "bf:Note" }, { "noteType": "Note", - "label": "At end: September 29, 2003.", + "label": "\"First published 2006\"--T.p. verso.", "type": "bf:Note" } ], @@ -8327,108 +8424,128 @@ "sierra-nypl" ], "subjectLiteral_exploded": [ - "Trios (Piano, flutes (2))", - "Trios (Piano, flutes (2)) -- Scores and parts" + "Short stories, Nigerian (English)", + "Nigerians", + "Nigerians -- Conduct of life", + "Nigerians -- Conduct of life -- Fiction", + "Nigeria", + "Nigeria -- Social conditions", + "Nigeria -- Social conditions -- Fiction" ], "numItemDatesParsed": [ 0 ], "publisherLiteral": [ - "T. Presser" + "Kraft Books" ], "language": [ { - "id": "lang:zxx", - "label": "No linguistic content" + "id": "lang:eng", + "label": "English" } ], "numItemsTotal": [ 1 ], "createdYear": [ - 2005 + 2006 ], - "title": [ - "French toast : for two flutes and piano" + "buildingLocationIds": [ + "sc" ], "type": [ "nypl:Item" ], + "title": [ + "A toast in the cemetery : short stories" + ], "shelfMark": [ - "JNG 09-190" + "Sc D 13-1045 no. 1" ], "numItemVolumesParsed": [ - 0 + 1 ], "createdString": [ - "2005" + "2006" ], "creatorLiteral": [ - "Schocker, Gary, 1959-" + "Gimba, Abubakar." ], "idLccn": [ - "2005562075", - "680160018024" + "2008435857" + ], + "seriesStatement": [ + "Short stories" ], "numElectronicResources": [ 0 ], "dateStartYear": [ - 2005 - ], - "idOclc": [ - "62276021" + 2006 ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "JNG 09-190" + "value": "Sc D 13-1045 no. 1" }, { "type": "nypl:Bnumber", - "value": "18036289" + "value": "19838551" }, { - "type": "nypl:Oclc", - "value": "62276021" + "type": "bf:Isbn", + "value": "9780391738" }, { - "type": "bf:Lccn", - "value": "2005562075" + "type": "bf:Isbn", + "value": "9789780391737" }, { - "type": "bf:Lccn", - "value": "680160018024" + "type": "nypl:Oclc", + "value": "277051218" }, { - "type": "bf:Identifier", - "value": "114-41247 T. Presser" + "type": "bf:Lccn", + "value": "2008435857" }, { "type": "bf:Identifier", - "value": "(OCoLC)62276021" + "value": "(OCoLC)277051218" } ], - "updatedAt": 1711020217035, + "idOclc": [ + "277051218" + ], + "uniformTitle": [ + "Short stories (Ibadan, Nigeria)" + ], + "updatedAt": 1711109565523, "publicationStatement": [ - "King of Prussia, PA : T. Presser, c2005." + "Ibadan, Oyo State, Nigeria : Kraft Books, 2006." ], "identifier": [ - "urn:shelfmark:JNG 09-190", - "urn:bnum:18036289", - "urn:oclc:62276021", - "urn:lccn:2005562075", - "urn:lccn:680160018024", - "urn:identifier:114-41247 T. Presser", - "urn:identifier:(OCoLC)62276021" + "urn:shelfmark:Sc D 13-1045 no. 1", + "urn:bnum:19838551", + "urn:isbn:9780391738", + "urn:isbn:9789780391737", + "urn:oclc:277051218", + "urn:lccn:2008435857", + "urn:identifier:(OCoLC)277051218" + ], + "genreForm": [ + "Nigerian fiction (English)" + ], + "idIsbn": [ + "9780391738", + "9789780391737" ], "numCheckinCardItems": [ 0 ], "materialType": [ { - "id": "resourcetypes:not", - "label": "Notated music" + "id": "resourcetypes:txt", + "label": "Text" } ], "carrierType": [ @@ -8438,7 +8555,7 @@ } ], "dateString": [ - "2005" + "2006" ], "mediaType": [ { @@ -8447,17 +8564,19 @@ } ], "subjectLiteral": [ - "Trios (Piano, flutes (2)) -- Scores and parts." + "Short stories, Nigerian (English)", + "Nigerians -- Conduct of life -- Fiction.", + "Nigeria -- Social conditions -- Fiction." ], "titleDisplay": [ - "French toast : for two flutes and piano / Gary Schocker." + "A toast in the cemetery : short stories / Abubakar Gimba." ], - "uri": "b18036289", + "uri": "b19838551", "lccClassification": [ - "M317.S35 F74 2005" + "PR9387.9.G55 T63 2006" ], "placeOfPublication": [ - "King of Prussia, PA" + "Ibadan, Oyo State, Nigeria" ], "issuance": [ { @@ -8465,16 +8584,20 @@ "label": "monograph/item" } ], - "tableOfContents": [ - "Deux moutons -- Les bouffons -- L'amour perdu -- Le printemps -- Le ballet russe." - ], "dimensions": [ - "31 cm." + "22 cm." + ], + "idIsbn_clean": [ + "9780391738", + "9789780391737" ] }, "sort": [ - 424.65125, - "b18036289" + 425.8426, + "b19838551" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { @@ -8487,98 +8610,107 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "b18036289", + "_id": "b19838551", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:57", - "label": "printed music limited circ MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], - "catalogItemType_packed": [ - "catalogItemType:57||printed music limited circ MaRLI" + "identifier": [ + "urn:shelfmark:Sc D 13-1045 no. 1-4", + "urn:barcode:33433073344230" ], - "formatLiteral": [ - "Notated music" + "physicalLocation": [ + "Sc D 13-1045" ], - "holdingLocation": [ + "shelfMark_sort": "aSc D 13-1045 no. 000001-4", + "catalogItemType_packed": [ + "catalogItemType:61||pamphlet volumes, bound with" + ], + "accessMessage": [ { - "id": "loc:rcpm2", - "label": "Offsite" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:rcpm2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433083720965" + "enumerationChronology_sort": [ + " 1-" ], - "identifier": [ - "urn:shelfmark:JNG 09-190", - "urn:barcode:33433083720965" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "Sc D 13-1045 no. 1-4" ], + "uri": "i30498572", "identifierV2": [ { - "value": "JNG 09-190", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc D 13-1045 no. 1-4" }, { - "value": "33433083720965", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1002", - "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "type": "bf:Barcode", + "value": "33433073344230" } ], - "owner_packed": [ - "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" ], - "physicalLocation": [ - "JNG 09-190" + "enumerationChronology": [ + "no. 1-4" ], - "recapCustomerCode": [ - "NP" + "idBarcode": [ + "33433073344230" + ], + "owner_packed": [ + "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], "requestable": [ true ], - "shelfMark": [ - "JNG 09-190" + "catalogItemType": [ + { + "id": "catalogItemType:61", + "label": "pamphlet volumes, bound with" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aJNG 09-000190", "status": [ { "id": "status:a", "label": "Available" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i23188106" + "volumeRange": [ + { + "gte": 1, + "lte": 4 + } + ] }, "sort": [ - null + " 1-" ] } ] @@ -8588,21 +8720,26 @@ }, { "_index": "resources-2024-10-22", - "_id": "b19838551", - "_score": 424.34073, + "_id": "b18036289", + "_score": 423.73004, "_source": { "extent": [ - "112 p. ;" + "1 score (14 p.) + 2 parts : port. ;" ], "note": [ { "noteType": "Note", - "label": "Kraftgriots.", + "label": "Biographical notes, p. [4] of cover.", "type": "bf:Note" }, { "noteType": "Note", - "label": "\"First published 2006\"--T.p. verso.", + "label": "Duration: ca. 8:30.", + "type": "bf:Note" + }, + { + "noteType": "Note", + "label": "At end: September 29, 2003.", "type": "bf:Note" } ], @@ -8610,125 +8747,111 @@ "sierra-nypl" ], "subjectLiteral_exploded": [ - "Short stories, Nigerian (English)", - "Nigerians", - "Nigerians -- Conduct of life", - "Nigerians -- Conduct of life -- Fiction", - "Nigeria", - "Nigeria -- Social conditions", - "Nigeria -- Social conditions -- Fiction" + "Trios (Piano, flutes (2))", + "Trios (Piano, flutes (2)) -- Scores and parts" ], "numItemDatesParsed": [ 0 ], "publisherLiteral": [ - "Kraft Books" + "T. Presser" ], "language": [ { - "id": "lang:eng", - "label": "English" + "id": "lang:zxx", + "label": "No linguistic content" } ], "numItemsTotal": [ 1 ], "createdYear": [ - 2006 + 2005 + ], + "buildingLocationIds": [ + "rc" ], "title": [ - "A toast in the cemetery : short stories" + "French toast : for two flutes and piano" ], "type": [ "nypl:Item" ], "shelfMark": [ - "Sc D 13-1045 no. 1" + "JNG 09-190" ], "numItemVolumesParsed": [ - 1 + 0 ], "createdString": [ - "2006" + "2005" ], "creatorLiteral": [ - "Gimba, Abubakar." + "Schocker, Gary, 1959-" ], "idLccn": [ - "2008435857" + "2005562075", + "680160018024" ], "numElectronicResources": [ 0 ], - "seriesStatement": [ - "Short stories" - ], "dateStartYear": [ - 2006 + 2005 ], "idOclc": [ - "277051218" + "62276021" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "Sc D 13-1045 no. 1" + "value": "JNG 09-190" }, { "type": "nypl:Bnumber", - "value": "19838551" + "value": "18036289" }, { - "type": "bf:Isbn", - "value": "9780391738" + "type": "nypl:Oclc", + "value": "62276021" }, { - "type": "bf:Isbn", - "value": "9789780391737" + "type": "bf:Lccn", + "value": "2005562075" }, { - "type": "nypl:Oclc", - "value": "277051218" + "type": "bf:Lccn", + "value": "680160018024" }, { - "type": "bf:Lccn", - "value": "2008435857" + "type": "bf:Identifier", + "value": "114-41247 T. Presser" }, { "type": "bf:Identifier", - "value": "(OCoLC)277051218" + "value": "(OCoLC)62276021" } ], - "uniformTitle": [ - "Short stories (Ibadan, Nigeria)" - ], - "updatedAt": 1711109565523, + "updatedAt": 1711020217035, "publicationStatement": [ - "Ibadan, Oyo State, Nigeria : Kraft Books, 2006." - ], - "genreForm": [ - "Nigerian fiction (English)" - ], - "idIsbn": [ - "9780391738", - "9789780391737" + "King of Prussia, PA : T. Presser, c2005." ], "identifier": [ - "urn:shelfmark:Sc D 13-1045 no. 1", - "urn:bnum:19838551", - "urn:isbn:9780391738", - "urn:isbn:9789780391737", - "urn:oclc:277051218", - "urn:lccn:2008435857", - "urn:identifier:(OCoLC)277051218" + "urn:shelfmark:JNG 09-190", + "urn:bnum:18036289", + "urn:oclc:62276021", + "urn:lccn:2005562075", + "urn:lccn:680160018024", + "urn:identifier:114-41247 T. Presser", + "urn:identifier:(OCoLC)62276021" ], "numCheckinCardItems": [ 0 ], "materialType": [ { - "id": "resourcetypes:txt", - "label": "Text" + "id": "resourcetypes:not", + "label": "Notated music" } ], "carrierType": [ @@ -8738,7 +8861,7 @@ } ], "dateString": [ - "2006" + "2005" ], "mediaType": [ { @@ -8747,19 +8870,17 @@ } ], "subjectLiteral": [ - "Short stories, Nigerian (English)", - "Nigerians -- Conduct of life -- Fiction.", - "Nigeria -- Social conditions -- Fiction." + "Trios (Piano, flutes (2)) -- Scores and parts." ], "titleDisplay": [ - "A toast in the cemetery : short stories / Abubakar Gimba." + "French toast : for two flutes and piano / Gary Schocker." ], - "uri": "b19838551", + "uri": "b18036289", "lccClassification": [ - "PR9387.9.G55 T63 2006" + "M317.S35 F74 2005" ], "placeOfPublication": [ - "Ibadan, Oyo State, Nigeria" + "King of Prussia, PA" ], "issuance": [ { @@ -8767,17 +8888,16 @@ "label": "monograph/item" } ], - "dimensions": [ - "22 cm." + "tableOfContents": [ + "Deux moutons -- Les bouffons -- L'amour perdu -- Le printemps -- Le ballet russe." ], - "idIsbn_clean": [ - "9780391738", - "9789780391737" + "dimensions": [ + "31 cm." ] }, "sort": [ - 424.34073, - "b19838551" + 423.73004, + "b18036289" ], "inner_hits": { "items": { @@ -8790,107 +8910,98 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "b19838551", + "_id": "b18036289", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ - "accessMessage:1||Use in library" + "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:61", - "label": "pamphlet volumes, bound with" + "id": "orgs:1002", + "label": "New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" } ], - "catalogItemType_packed": [ - "catalogItemType:61||pamphlet volumes, bound with" - ], - "enumerationChronology": [ - "no. 1-4" + "identifier": [ + "urn:shelfmark:JNG 09-190", + "urn:barcode:33433083720965" ], - "enumerationChronology_sort": [ - " 1-" + "physicalLocation": [ + "JNG 09-190" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aJNG 09-000190", + "catalogItemType_packed": [ + "catalogItemType:57||printed music limited circ MaRLI" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433073344230" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc D 13-1045 no. 1-4", - "urn:barcode:33433073344230" + "shelfMark": [ + "JNG 09-190" ], + "uri": "i23188106", "identifierV2": [ { - "value": "Sc D 13-1045 no. 1-4", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "JNG 09-190" }, { - "value": "33433073344230", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433083720965" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:rcpm2||Offsite" ], - "owner_packed": [ - "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + "idBarcode": [ + "33433083720965" ], - "physicalLocation": [ - "Sc D 13-1045" + "owner_packed": [ + "orgs:1002||New York Public Library for the Performing Arts, Dorothy and Lewis B. Cullman Center" ], "requestable": [ true ], - "shelfMark": [ - "Sc D 13-1045 no. 1-4" + "catalogItemType": [ + { + "id": "catalogItemType:57", + "label": "printed music limited circ MaRLI" + } + ], + "formatLiteral": [ + "Notated music" ], - "shelfMark_sort": "aSc D 13-1045 no. 000001-4", - "status": [ + "holdingLocation": [ { - "id": "status:a", - "label": "Available" + "id": "loc:rcpm2", + "label": "Offsite" } ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" + "recapCustomerCode": [ + "NP" ], - "volumeRange": [ + "status": [ { - "gte": 1, - "lte": 4 + "id": "status:a", + "label": "Available" } - ], - "uri": "i30498572" + ] }, "sort": [ - " 1-" + null ] } ] @@ -8901,7 +9012,7 @@ { "_index": "resources-2024-10-22", "_id": "b16478384", - "_score": 422.11917, + "_score": 423.61603, "_source": { "extent": [ "xi, 353 p. ;" @@ -8938,6 +9049,9 @@ "createdYear": [ 2006 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "Trains and buttered toast : selected radio talks" ], @@ -9067,9 +9181,12 @@ ] }, "sort": [ - 422.11917, + 423.61603, "b16478384" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -9179,18 +9296,13 @@ }, { "_index": "resources-2024-10-22", - "_id": "hb990094315110203941", - "_score": 418.69928, + "_id": "hb990074688990203941", + "_score": 419.37372, "_source": { "extent": [ - "271 p. ;" + "359 p. : ill. ;" ], "note": [ - { - "noteType": "Note", - "label": "\"A Phyllis Bruce book\".", - "type": "bf:Note" - }, { "noteType": "Processing Action", "label": "committed to retain", @@ -9200,14 +9312,8 @@ "nyplSource": [ "recap-hl" ], - "subjectLiteral_exploded": [ - "Short stories, Canadian" - ], "publisherLiteral": [ - "HarperCollins" - ], - "description": [ - "A collection of stories representing the author's extensive writing career." + "Harper Collins," ], "language": [ { @@ -9216,73 +9322,60 @@ } ], "createdYear": [ - 2004 + 1995 + ], + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], "title": [ - "Poached egg on toast : stories / Frances Itani." + "Burnt toast on Sundays / Roland K. Hill." ], "creatorLiteral": [ - "Itani, Frances, 1942-" + "Hill, Roland." ], "createdString": [ - "2004" + "1995" + ], + "idLccn": [ + "^^^96981253^" ], "dateStartYear": [ - 2004 + 1995 ], "identifierV2": [ { "type": "nypl:Bnumber", - "value": "990094315110203941" - }, - { - "type": "bf:Isbn", - "value": "0002005840 :" + "value": "990074688990203941" }, { "type": "bf:Isbn", - "value": "9780002005845" - }, - { - "type": "nypl:Oclc", - "value": "55596486" + "value": "1779040105" }, { - "type": "bf:Identifier", - "value": "(OCoLC)55596486" + "type": "bf:Lccn", + "value": "^^^96981253^" }, { "type": "bf:Identifier", - "value": "(OCoLC)1060700968" + "value": "(OCoLC)35948776" } ], - "idOclc": [ - "55596486" - ], "holdings": [], - "updatedAt": 1650234471796, + "updatedAt": 1633051606151, "publicationStatement": [ - "Toronto : HarperCollins, c2004." + "Harare, Zimbabwe : Harper Collins, 1995." ], "identifier": [ - "urn:bnum:990094315110203941", - "urn:isbn:0002005840 :", - "urn:isbn:9780002005845", - "urn:oclc:55596486", - "urn:undefined:(OCoLC)55596486", - "urn:undefined:(OCoLC)1060700968" + "urn:bnum:990074688990203941", + "urn:isbn:1779040105", + "urn:lccn:^^^96981253^", + "urn:undefined:(OCoLC)35948776" ], "idIsbn": [ - "0002005840 :", - "9780002005845" - ], - "genreForm": [ - "short stories.", - "Short stories", - "Nouvelles." + "1779040105" ], "materialType": [ { @@ -9297,7 +9390,7 @@ } ], "dateString": [ - "2004" + "1995" ], "mediaType": [ { @@ -9305,15 +9398,12 @@ "label": "unmediated" } ], - "subjectLiteral": [ - "Short stories, Canadian" - ], "titleDisplay": [ - "Poached egg on toast : stories / Frances Itani." + "Burnt toast on Sundays / Roland K. Hill." ], - "uri": "hb990094315110203941", + "uri": "hb990074688990203941", "lccClassification": [ - "PR9199.3.I83 P63 2004" + "MLCS 96/01149 (P)" ], "numItems": [ 1 @@ -9322,7 +9412,7 @@ 1 ], "placeOfPublication": [ - "Toronto" + "Harare, Zimbabwe :" ], "issuance": [ { @@ -9330,16 +9420,13 @@ "label": "monograph/item" } ], - "tableOfContents": [ - "Clayton -- An August wind -- Megan -- Marx & Co. -- Pack ice -- P'tit village -- Truth or lies -- Separation -- An evening in the café -- Scenes from a pension -- Messages -- Accident -- Touches -- Foolery -- Earthman pointing -- The eyes have it -- Man without face -- Sarajevo -- In the name of love -- The thickness of one sheet of paper -- What we are capable of -- Poached egg on toast." - ], "dimensions": [ - "23 cm." + "18 cm." ] }, "sort": [ - 418.69928, - "hb990094315110203941" + 419.37372, + "hb990074688990203941" ], "inner_hits": { "items": { @@ -9352,79 +9439,76 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "hb990094315110203941", + "_id": "hb990074688990203941", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "uri": "hi232083339710003941", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0004", "label": "Harvard Library" } ], - "owner_packed": [ - "orgs:0004||Harvard Library" + "accessMessage_packed": [ + "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } + "identifier": [ + "urn:barcode:HNGRR7" + ], + "physicalLocation": [ + "MLCS 96/01149 (P)" ], + "shelfMark_sort": "aMLCS 96/01149 (P)", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "hi232023010330003941", "shelfMark": [ - "PR9199.3.I83 P63 2004" + "MLCS 96/01149 (P)" ], "identifierV2": [ { - "value": "PR9199.3.I83 P63 2004", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "MLCS 96/01149 (P)" }, { "type": "bf:Barcode", - "value": "32044105914865" + "value": "HNGRR7" } ], - "physicalLocation": [ - "PR9199.3.I83 P63 2004" - ], - "recapCustomerCode": [ - "HW" - ], - "identifier": [ - "urn:barcode:32044105914865" - ], "idBarcode": [ - "32044105914865" + "HNGRR7" + ], + "owner_packed": [ + "orgs:0004||Harvard Library" ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "shelfMark_sort": "aPR9199.3.I83 P63 002004" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] }, "sort": [ null @@ -9437,12 +9521,9 @@ }, { "_index": "resources-2024-10-22", - "_id": "hb990117890200203941", - "_score": 418.69928, + "_id": "hb990088521070203941", + "_score": 419.37372, "_source": { - "extent": [ - "62 p. ;" - ], "note": [ { "noteType": "Processing Action", @@ -9454,22 +9535,15 @@ "recap-hl" ], "subjectLiteral_exploded": [ - "Chaplin, Charlie, 1889-1977", - "Chaplin, Charlie, 1889-1977 -- Drama", - "Holmes, Sherlock (Fictitious character)", - "Holmes, Sherlock (Fictitious character) -- Drama", - "Holmes, Sherlock", - "Holmes, Sherlock -- Drama", - "London (England)", - "London (England) -- Drama", - "Watson, John H. (Fictitious character)", - "Watson, John H. (Fictitious character) -- Drama" + "Schiller, Jeannette, 1911-", + "Teachers", + "Teachers -- Saskatchewan", + "Teachers -- Saskatchewan -- Biography", + "Teachers -- British Columbia", + "Teachers -- British Columbia -- Biography" ], "publisherLiteral": [ - "Samuel French," - ], - "description": [ - "\"The Edgar Prize-winning author Kaminsky tells the tale of one of literature's most famous detectives: Sherlock Holmes. In a witty, imaginative story filled with twists and unexpected surprises, Detective Holmes unravels a murder only to find himself the unwilling target of the killer-at-large. Along with the aid of his loyal and inquisitive companion, Dr. Watson, Sherlock Holmes uses his masterful power of deduction to make a nebulous situation seem \"simply elementary.\" The Final Toast is an exciting new take on the classic characters of fiction we know and love, and its ending will please even the most savvy mystery connoisseurs\"--Publisher's website." + "Heirloom Books" ], "language": [ { @@ -9478,58 +9552,60 @@ } ], "createdYear": [ - 2008 + 2001 + ], + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], "title": [ - "The final toast / by Stuart M. Kaminsky." + "A toast to bygone days / Jeannette Schiller." ], "creatorLiteral": [ - "Kaminsky, Stuart M." + "Schiller, Jeannette, 1911-" ], "createdString": [ - "2008" + "2001" ], "dateStartYear": [ - 2008 + 2001 ], "identifierV2": [ { "type": "nypl:Bnumber", - "value": "990117890200203941" + "value": "990088521070203941" }, { "type": "bf:Isbn", - "value": "9780573663772" + "value": "0968979203 :" }, { - "type": "bf:Isbn", - "value": "0573663777" + "type": "nypl:Oclc", + "value": "48230114" }, { "type": "bf:Identifier", - "value": "(OCoLC)259742094" + "value": "(OCoLC)48230114" } ], + "idOclc": [ + "48230114" + ], "holdings": [], - "updatedAt": 1636498198661, + "updatedAt": 1656308261785, "publicationStatement": [ - "New York, NY : Samuel French, c2008." + "Sidney, B.C. : Heirloom Books, 2001." ], "identifier": [ - "urn:bnum:990117890200203941", - "urn:isbn:9780573663772", - "urn:isbn:0573663777", - "urn:undefined:(OCoLC)259742094" + "urn:bnum:990088521070203941", + "urn:isbn:0968979203 :", + "urn:oclc:48230114", + "urn:undefined:(OCoLC)48230114" ], "idIsbn": [ - "9780573663772", - "0573663777" - ], - "genreForm": [ - "Drama" + "0968979203 " ], "materialType": [ { @@ -9544,7 +9620,7 @@ } ], "dateString": [ - "2008" + "2001" ], "mediaType": [ { @@ -9553,27 +9629,25 @@ } ], "subjectLiteral": [ - "Chaplin, Charlie, 1889-1977 -- Drama.", - "Holmes, Sherlock (Fictitious character) -- Drama.", - "Holmes, Sherlock -- Drama.", - "London (England) -- Drama.", - "Watson, John H. (Fictitious character) -- Drama." + "Schiller, Jeannette, 1911-", + "Teachers -- Saskatchewan -- Biography.", + "Teachers -- British Columbia -- Biography." ], "titleDisplay": [ - "The final toast / by Stuart M. Kaminsky." + "A toast to bygone days / Jeannette Schiller." ], - "uri": "hb990117890200203941", + "uri": "hb990088521070203941", "lccClassification": [ - "PS3561.A43 F497 2008" + "LA2325.S34 A3 2001" ], "numItems": [ - 0 + 1 ], "numAvailable": [ - 0 + 1 ], "placeOfPublication": [ - "New York, NY :" + "Sidney, B.C." ], "issuance": [ { @@ -9581,36 +9655,122 @@ "label": "monograph/item" } ], - "dimensions": [ - "21 cm." + "idIsbn_clean": [ + "0968979203" ] }, "sort": [ - 418.69928, - "hb990117890200203941" + 419.37372, + "hb990088521070203941" ], "inner_hits": { "items": { "hits": { "total": { - "value": 0, + "value": 1, "relation": "eq" }, "max_score": null, - "hits": [] + "hits": [ + { + "_index": "resources-2024-10-22", + "_id": "hb990088521070203941", + "_nested": { + "field": "items", + "offset": 0 + }, + "_score": null, + "_source": { + "owner": [ + { + "id": "orgs:0004", + "label": "Harvard Library" + } + ], + "accessMessage_packed": [ + "accessMessage:2||Request in advance" + ], + "identifier": [ + "urn:barcode:HXL53Z" + ], + "physicalLocation": [ + "LA2325.S34 A3 2001" + ], + "shelfMark_sort": "aLA2325.S34 A3 002001", + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" + } + ], + "status_packed": [ + "status:a||Available" + ], + "uri": "hi232074350580003941", + "shelfMark": [ + "LA2325.S34 A3 2001" + ], + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "LA2325.S34 A3 2001" + }, + { + "type": "bf:Barcode", + "value": "HXL53Z" + } + ], + "idBarcode": [ + "HXL53Z" + ], + "owner_packed": [ + "orgs:0004||Harvard Library" + ], + "requestable": [ + true + ], + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "status": [ + { + "id": "status:a", + "label": "Available" + } + ], + "recapCustomerCode": [ + "HW" + ] + }, + "sort": [ + null + ] + } + ] } } } }, { "_index": "resources-2024-10-22", - "_id": "hb990074688990203941", - "_score": 418.39246, + "_id": "hb990094315110203941", + "_score": 418.19083, "_source": { "extent": [ - "359 p. : ill. ;" + "271 p. ;" ], "note": [ + { + "noteType": "Note", + "label": "\"A Phyllis Bruce book\".", + "type": "bf:Note" + }, { "noteType": "Processing Action", "label": "committed to retain", @@ -9620,8 +9780,14 @@ "nyplSource": [ "recap-hl" ], + "subjectLiteral_exploded": [ + "Short stories, Canadian" + ], "publisherLiteral": [ - "Harper Collins," + "HarperCollins" + ], + "description": [ + "A collection of stories representing the author's extensive writing career." ], "language": [ { @@ -9630,57 +9796,76 @@ } ], "createdYear": [ - 1995 + 2004 + ], + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], "title": [ - "Burnt toast on Sundays / Roland K. Hill." + "Poached egg on toast : stories / Frances Itani." ], "creatorLiteral": [ - "Hill, Roland." + "Itani, Frances, 1942-" ], "createdString": [ - "1995" - ], - "idLccn": [ - "^^^96981253^" + "2004" ], "dateStartYear": [ - 1995 + 2004 ], "identifierV2": [ { "type": "nypl:Bnumber", - "value": "990074688990203941" + "value": "990094315110203941" }, { "type": "bf:Isbn", - "value": "1779040105" + "value": "0002005840 :" }, { - "type": "bf:Lccn", - "value": "^^^96981253^" + "type": "bf:Isbn", + "value": "9780002005845" + }, + { + "type": "nypl:Oclc", + "value": "55596486" }, { "type": "bf:Identifier", - "value": "(OCoLC)35948776" + "value": "(OCoLC)55596486" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)1060700968" } ], + "idOclc": [ + "55596486" + ], "holdings": [], - "updatedAt": 1633051606151, + "updatedAt": 1650234471796, "publicationStatement": [ - "Harare, Zimbabwe : Harper Collins, 1995." + "Toronto : HarperCollins, c2004." ], "identifier": [ - "urn:bnum:990074688990203941", - "urn:isbn:1779040105", - "urn:lccn:^^^96981253^", - "urn:undefined:(OCoLC)35948776" + "urn:bnum:990094315110203941", + "urn:isbn:0002005840 :", + "urn:isbn:9780002005845", + "urn:oclc:55596486", + "urn:undefined:(OCoLC)55596486", + "urn:undefined:(OCoLC)1060700968" ], "idIsbn": [ - "1779040105" + "0002005840 :", + "9780002005845" + ], + "genreForm": [ + "short stories.", + "Short stories", + "Nouvelles." ], "materialType": [ { @@ -9695,7 +9880,7 @@ } ], "dateString": [ - "1995" + "2004" ], "mediaType": [ { @@ -9703,12 +9888,15 @@ "label": "unmediated" } ], + "subjectLiteral": [ + "Short stories, Canadian" + ], "titleDisplay": [ - "Burnt toast on Sundays / Roland K. Hill." + "Poached egg on toast : stories / Frances Itani." ], - "uri": "hb990074688990203941", + "uri": "hb990094315110203941", "lccClassification": [ - "MLCS 96/01149 (P)" + "PR9199.3.I83 P63 2004" ], "numItems": [ 1 @@ -9717,7 +9905,7 @@ 1 ], "placeOfPublication": [ - "Harare, Zimbabwe :" + "Toronto" ], "issuance": [ { @@ -9725,13 +9913,16 @@ "label": "monograph/item" } ], + "tableOfContents": [ + "Clayton -- An August wind -- Megan -- Marx & Co. -- Pack ice -- P'tit village -- Truth or lies -- Separation -- An evening in the café -- Scenes from a pension -- Messages -- Accident -- Touches -- Foolery -- Earthman pointing -- The eyes have it -- Man without face -- Sarajevo -- In the name of love -- The thickness of one sheet of paper -- What we are capable of -- Poached egg on toast." + ], "dimensions": [ - "18 cm." + "23 cm." ] }, "sort": [ - 418.39246, - "hb990074688990203941" + 418.19083, + "hb990094315110203941" ], "inner_hits": { "items": { @@ -9744,76 +9935,79 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "hb990074688990203941", + "_id": "hb990094315110203941", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "uri": "hi232023010330003941", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0004", "label": "Harvard Library" } ], - "owner_packed": [ - "orgs:0004||Harvard Library" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" + "identifier": [ + "urn:barcode:32044105914865" + ], + "physicalLocation": [ + "PR9199.3.I83 P63 2004" + ], + "shelfMark_sort": "aPR9199.3.I83 P63 002004", + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "accessMessage": [ + { + "id": "accessMessage:2", + "label": "Request in advance" } ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" + "status_packed": [ + "status:a||Available" ], + "uri": "hi232083339710003941", "shelfMark": [ - "MLCS 96/01149 (P)" + "PR9199.3.I83 P63 2004" ], "identifierV2": [ { - "value": "MLCS 96/01149 (P)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PR9199.3.I83 P63 2004" }, { "type": "bf:Barcode", - "value": "HNGRR7" + "value": "32044105914865" } ], - "physicalLocation": [ - "MLCS 96/01149 (P)" - ], - "identifier": [ - "urn:barcode:HNGRR7" - ], "idBarcode": [ - "HNGRR7" + "32044105914865" + ], + "owner_packed": [ + "orgs:0004||Harvard Library" ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:1", - "label": "Use in library" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "shelfMark_sort": "aMLCS 96/01149 (P)" + "recapCustomerCode": [ + "HW" + ] }, "sort": [ null @@ -9826,9 +10020,12 @@ }, { "_index": "resources-2024-10-22", - "_id": "hb990088521070203941", - "_score": 418.39246, + "_id": "hb990117890200203941", + "_score": 418.19083, "_source": { + "extent": [ + "62 p. ;" + ], "note": [ { "noteType": "Processing Action", @@ -9840,15 +10037,22 @@ "recap-hl" ], "subjectLiteral_exploded": [ - "Schiller, Jeannette, 1911-", - "Teachers", - "Teachers -- Saskatchewan", - "Teachers -- Saskatchewan -- Biography", - "Teachers -- British Columbia", - "Teachers -- British Columbia -- Biography" + "Chaplin, Charlie, 1889-1977", + "Chaplin, Charlie, 1889-1977 -- Drama", + "Holmes, Sherlock (Fictitious character)", + "Holmes, Sherlock (Fictitious character) -- Drama", + "Holmes, Sherlock", + "Holmes, Sherlock -- Drama", + "London (England)", + "London (England) -- Drama", + "Watson, John H. (Fictitious character)", + "Watson, John H. (Fictitious character) -- Drama" ], "publisherLiteral": [ - "Heirloom Books" + "Samuel French," + ], + "description": [ + "\"The Edgar Prize-winning author Kaminsky tells the tale of one of literature's most famous detectives: Sherlock Holmes. In a witty, imaginative story filled with twists and unexpected surprises, Detective Holmes unravels a murder only to find himself the unwilling target of the killer-at-large. Along with the aid of his loyal and inquisitive companion, Dr. Watson, Sherlock Holmes uses his masterful power of deduction to make a nebulous situation seem \"simply elementary.\" The Final Toast is an exciting new take on the classic characters of fiction we know and love, and its ending will please even the most savvy mystery connoisseurs\"--Publisher's website." ], "language": [ { @@ -9857,7 +10061,7 @@ } ], "createdYear": [ - 2001 + 2008 ], "buildingLocationIds": [ "rc" @@ -9866,51 +10070,52 @@ "nypl:Item" ], "title": [ - "A toast to bygone days / Jeannette Schiller." + "The final toast / by Stuart M. Kaminsky." ], "creatorLiteral": [ - "Schiller, Jeannette, 1911-" + "Kaminsky, Stuart M." ], "createdString": [ - "2001" + "2008" ], "dateStartYear": [ - 2001 + 2008 ], "identifierV2": [ { "type": "nypl:Bnumber", - "value": "990088521070203941" + "value": "990117890200203941" }, { "type": "bf:Isbn", - "value": "0968979203 :" + "value": "9780573663772" }, { - "type": "nypl:Oclc", - "value": "48230114" + "type": "bf:Isbn", + "value": "0573663777" }, { "type": "bf:Identifier", - "value": "(OCoLC)48230114" + "value": "(OCoLC)259742094" } ], - "idOclc": [ - "48230114" - ], "holdings": [], - "updatedAt": 1656308261785, + "updatedAt": 1636498198661, "publicationStatement": [ - "Sidney, B.C. : Heirloom Books, 2001." + "New York, NY : Samuel French, c2008." ], "identifier": [ - "urn:bnum:990088521070203941", - "urn:isbn:0968979203 :", - "urn:oclc:48230114", - "urn:undefined:(OCoLC)48230114" + "urn:bnum:990117890200203941", + "urn:isbn:9780573663772", + "urn:isbn:0573663777", + "urn:undefined:(OCoLC)259742094" ], "idIsbn": [ - "0968979203 " + "9780573663772", + "0573663777" + ], + "genreForm": [ + "Drama" ], "materialType": [ { @@ -9925,7 +10130,7 @@ } ], "dateString": [ - "2001" + "2008" ], "mediaType": [ { @@ -9934,25 +10139,27 @@ } ], "subjectLiteral": [ - "Schiller, Jeannette, 1911-", - "Teachers -- Saskatchewan -- Biography.", - "Teachers -- British Columbia -- Biography." + "Chaplin, Charlie, 1889-1977 -- Drama.", + "Holmes, Sherlock (Fictitious character) -- Drama.", + "Holmes, Sherlock -- Drama.", + "London (England) -- Drama.", + "Watson, John H. (Fictitious character) -- Drama." ], "titleDisplay": [ - "A toast to bygone days / Jeannette Schiller." + "The final toast / by Stuart M. Kaminsky." ], - "uri": "hb990088521070203941", + "uri": "hb990117890200203941", "lccClassification": [ - "LA2325.S34 A3 2001" + "PS3561.A43 F497 2008" ], "numItems": [ - 1 + 0 ], "numAvailable": [ - 1 + 0 ], "placeOfPublication": [ - "Sidney, B.C." + "New York, NY :" ], "issuance": [ { @@ -9960,104 +10167,23 @@ "label": "monograph/item" } ], - "idIsbn_clean": [ - "0968979203" + "dimensions": [ + "21 cm." ] }, "sort": [ - 418.39246, - "hb990088521070203941" + 418.19083, + "hb990117890200203941" ], "inner_hits": { "items": { "hits": { "total": { - "value": 1, + "value": 0, "relation": "eq" }, "max_score": null, - "hits": [ - { - "_index": "resources-2024-10-22", - "_id": "hb990088521070203941", - "_nested": { - "field": "items", - "offset": 0 - }, - "_score": null, - "_source": { - "owner": [ - { - "id": "orgs:0004", - "label": "Harvard Library" - } - ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" - ], - "identifier": [ - "urn:barcode:HXL53Z" - ], - "physicalLocation": [ - "LA2325.S34 A3 2001" - ], - "shelfMark_sort": "aLA2325.S34 A3 002001", - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" - ], - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], - "status_packed": [ - "status:a||Available" - ], - "uri": "hi232074350580003941", - "shelfMark": [ - "LA2325.S34 A3 2001" - ], - "identifierV2": [ - { - "type": "bf:ShelfMark", - "value": "LA2325.S34 A3 2001" - }, - { - "type": "bf:Barcode", - "value": "HXL53Z" - } - ], - "idBarcode": [ - "HXL53Z" - ], - "owner_packed": [ - "orgs:0004||Harvard Library" - ], - "requestable": [ - true - ], - "catalogItemType": [ - { - "id": "catalogItemType:1", - "label": "non-circ" - } - ], - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "recapCustomerCode": [ - "HW" - ] - }, - "sort": [ - null - ] - } - ] + "hits": [] } } } @@ -10065,7 +10191,7 @@ { "_index": "resources-2024-10-22", "_id": "cb5358913", - "_score": 417.73392, + "_score": 417.22772, "_source": { "extent": [ "80 pages ;" @@ -10091,6 +10217,9 @@ "createdYear": [ 2005 ], + "buildingLocationIds": [ + "rc" + ], "type": [ "nypl:Item" ], @@ -10214,7 +10343,7 @@ ] }, "sort": [ - 417.73392, + 417.22772, "cb5358913" ], "inner_hits": { @@ -10235,78 +10364,78 @@ }, "_score": null, "_source": { - "uri": "ci5619937", - "status": [ - { - "id": "status:a", - "label": "Available" - } - ], - "status_packed": [ - "status:a||Available" - ], "owner": [ { "id": "orgs:0002", "label": "Columbia University Libraries" } ], - "owner_packed": [ - "orgs:0002||Columbia University Libraries" + "accessMessage_packed": [ + "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "identifier": [ + "urn:barcode:CU71435093" + ], + "physicalLocation": [ + "PR6056.R262 T63 2005g" + ], + "shelfMark_sort": "aPR6056.R262 T63 2005g", + "catalogItemType_packed": [ + "catalogItemType:1||non-circ" + ], + "accessMessage": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "catalogItemType_packed": [ - "catalogItemType:1||non-circ" + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" ], + "uri": "ci5619937", "shelfMark": [ "PR6056.R262 T63 2005g" ], "identifierV2": [ { - "value": "PR6056.R262 T63 2005g", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PR6056.R262 T63 2005g" }, { "type": "bf:Barcode", "value": "CU71435093" } ], - "physicalLocation": [ - "PR6056.R262 T63 2005g" - ], - "recapCustomerCode": [ - "CU" - ], - "identifier": [ - "urn:barcode:CU71435093" - ], "idBarcode": [ "CU71435093" ], + "owner_packed": [ + "orgs:0002||Columbia University Libraries" + ], "requestable": [ true ], - "accessMessage": [ + "catalogItemType": [ { - "id": "accessMessage:2", - "label": "Request in advance" + "id": "catalogItemType:1", + "label": "non-circ" } ], - "accessMessage_packed": [ - "accessMessage:2||Request in advance" + "status": [ + { + "id": "status:a", + "label": "Available" + } ], - "type": [ - "bf:Item" + "recapCustomerCode": [ + "CU" ], "formatLiteral": [ "Text" - ], - "shelfMark_sort": "aPR6056.R262 T63 2005g" + ] }, "sort": [ null @@ -10320,7 +10449,7 @@ { "_index": "resources-2024-10-22", "_id": "pb9921391513506421", - "_score": 417.73392, + "_score": 417.22772, "_source": { "extent": [ "ix, 226 pages : illustrations, portraits ;" @@ -10352,6 +10481,9 @@ "createdYear": [ 1997 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Creative spirits : a toast to literary drinkers" ], @@ -10498,7 +10630,7 @@ ] }, "sort": [ - 417.73392, + 417.22772, "pb9921391513506421" ], "inner_hits": { @@ -10519,79 +10651,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0003", + "label": "Princeton University Library" } ], + "identifier": [ + "urn:shelfmark:PN56.D8 B6 1997", + "urn:barcode:32101085641676" + ], + "physicalLocation": [ + "PN56.D8 B6 1997" + ], + "shelfMark_sort": "aPN56.D8 B6 001997", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } ], - "idBarcode": [ - "32101085641676" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:PN56.D8 B6 1997", - "urn:barcode:32101085641676" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "PN56.D8 B6 1997" ], + "uri": "pi23519521580006421", "identifierV2": [ { - "value": "PN56.D8 B6 1997", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PN56.D8 B6 1997" }, { - "value": "32101085641676", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "32101085641676" } ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } + "idBarcode": [ + "32101085641676" ], "owner_packed": [ "orgs:0003||Princeton University Library" ], - "physicalLocation": [ - "PN56.D8 B6 1997" - ], - "recapCustomerCode": [ - "PA" - ], "requestable": [ true ], - "shelfMark": [ - "PN56.D8 B6 1997" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "PA" ], - "shelfMark_sort": "aPN56.D8 B6 001997", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23519521580006421" + ] }, "sort": [ null @@ -10605,7 +10737,7 @@ { "_index": "resources-2024-10-22", "_id": "b13701585", - "_score": 409.13235, + "_score": 409.3145, "_source": { "extent": [ "200 p. : ill., map ;" @@ -10651,12 +10783,15 @@ "createdYear": [ 1998 ], - "title": [ - "Toast of the town : the life and times of Sunnie Wilson" + "buildingLocationIds": [ + "sc" ], "type": [ "nypl:Item" ], + "title": [ + "Toast of the town : the life and times of Sunnie Wilson" + ], "shelfMark": [ "Sc E 98-916" ], @@ -10672,21 +10807,18 @@ "idLccn": [ "97025475" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Great Lakes books" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Cohassey, John, 1961-" ], "dateStartYear": [ 1998 ], - "idOclc": [ - "37260938" - ], "identifierV2": [ { "type": "bf:ShelfMark", @@ -10713,13 +10845,13 @@ "value": "(WaOLN)nyp3669560" } ], + "idOclc": [ + "37260938" + ], "updatedAt": 1711418976733, "publicationStatement": [ "Detroit : Wayne State University Press, c1998." ], - "idIsbn": [ - "0814326951 (alk. paper)" - ], "identifier": [ "urn:shelfmark:Sc E 98-916", "urn:bnum:13701585", @@ -10728,6 +10860,9 @@ "urn:lccn:97025475", "urn:identifier:(WaOLN)nyp3669560" ], + "idIsbn": [ + "0814326951 (alk. paper)" + ], "numCheckinCardItems": [ 0 ], @@ -10783,9 +10918,12 @@ ] }, "sort": [ - 409.13235, + 409.3145, "b13701585" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -10804,85 +10942,85 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" } ], + "identifier": [ + "urn:shelfmark:Sc E 98-916", + "urn:barcode:33433059013072" + ], + "physicalLocation": [ + "Sc E 98-916" + ], + "shelfMark_sort": "aSc E 98-000916", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433059013072" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:Sc E 98-916", - "urn:barcode:33433059013072" + "shelfMark": [ + "Sc E 98-916" ], + "uri": "i14417587", "identifierV2": [ { - "value": "Sc E 98-916", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "Sc E 98-916" }, { - "value": "33433059013072", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433059013072" } ], - "owner": [ - { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" - } + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433059013072" ], "owner_packed": [ "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" ], - "physicalLocation": [ - "Sc E 98-916" - ], "requestable": [ true ], - "shelfMark": [ - "Sc E 98-916" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" + } ], - "shelfMark_sort": "aSc E 98-000916", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i14417587" + ] }, "sort": [ null @@ -10896,7 +11034,7 @@ { "_index": "resources-2024-10-22", "_id": "b18012067", - "_score": 406.0879, + "_score": 407.54688, "_source": { "extent": [ "97 p. : ill. (chiefly col.) ;" @@ -10922,6 +11060,10 @@ "createdYear": [ 2009 ], + "buildingLocationIds": [ + "sc", + "ma" + ], "title": [ "A toast in the house of friends : poems" ], @@ -11048,9 +11190,12 @@ ] }, "sort": [ - 406.0879, + 407.54688, "b18012067" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -11248,33 +11393,46 @@ } ] } - } - } - }, - { - "_index": "resources-2024-10-22", - "_id": "b13555237", - "_score": 405.9829, - "_source": { - "extent": [ - "257 p. ;" + } + } + }, + { + "_index": "resources-2024-10-22", + "_id": "b21091000", + "_score": 407.14117, + "_source": { + "extent": [ + "vii, 216 pages : color illustrations ;" + ], + "note": [ + { + "noteType": "Note", + "label": "\"Being: a revolutionary drinking guide to brewing and batching, mixing and serving, imbibing and jibing, fighting and freedom in the ruins of the ancient civilization known as America.\"", + "type": "bf:Note" + }, + { + "noteType": "Bibliography", + "label": "Includes bibliographical references (pages 203-204) and index.", + "type": "bf:Note" + } ], "nyplSource": [ "sierra-nypl" ], "subjectLiteral_exploded": [ - "African Americans", - "African Americans -- New York (State)", - "African Americans -- New York (State) -- New York", - "African Americans -- New York (State) -- New York -- Fiction", - "Harlem (New York, N.Y.)", - "Harlem (New York, N.Y.) -- Fiction" + "Alcoholic beverages", + "Alcoholic beverages -- United States", + "Alcoholic beverages -- United States -- History", + "Drinking of alcoholic beverages", + "Drinking of alcoholic beverages -- United States", + "Drinking of alcoholic beverages -- United States -- History", + "Cocktails" ], "numItemDatesParsed": [ 0 ], "publisherLiteral": [ - "Doubleday" + "Abrams Image" ], "language": [ { @@ -11283,81 +11441,95 @@ } ], "numItemsTotal": [ - 2 + 1 ], "createdYear": [ - 1998 + 2016 + ], + "buildingLocationIds": [ + "ma" ], "title": [ - "A toast before dying : a Mali Anderson Mystery" + "Colonial spirits : a toast to our drunken history" ], "type": [ "nypl:Item" ], "shelfMark": [ - "JFE 98-5504" + "JFD 16-5390" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "1998" + "2016" ], "creatorLiteral": [ - "Edwards, Grace F. (Grace Frederica)" + "Grasse, Steven" ], "idLccn": [ - "97047429" + "2015955674" ], "numElectronicResources": [ 0 ], "dateStartYear": [ - 1998 + 2016 ], "idOclc": [ - "38081631" + "938991316" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "JFE 98-5504" + "value": "JFD 16-5390" }, { "type": "nypl:Bnumber", - "value": "13555237" + "value": "21091000" }, { "type": "bf:Isbn", - "value": "0385485247" + "value": "9781419722301" + }, + { + "type": "bf:Isbn", + "value": "1419722301" }, { "type": "nypl:Oclc", - "value": "38081631" + "value": "938991316" }, { "type": "bf:Lccn", - "value": "97047429" + "value": "2015955674" }, { "type": "bf:Identifier", - "value": "(WaOLN)nyp3530217" + "value": "(OCoLC)938991316" + }, + { + "type": "bf:Identifier", + "value": "(OCoLC)943677509" } ], - "updatedAt": 1711384147469, + "updatedAt": 1711243086460, "publicationStatement": [ - "New York : Doubleday, 1998." + "New York : Abrams Image, 2016." ], "idIsbn": [ - "0385485247" + "9781419722301", + "1419722301" ], "identifier": [ - "urn:shelfmark:JFE 98-5504", - "urn:bnum:13555237", - "urn:isbn:0385485247", - "urn:oclc:38081631", - "urn:lccn:97047429", - "urn:identifier:(WaOLN)nyp3530217" + "urn:shelfmark:JFD 16-5390", + "urn:bnum:21091000", + "urn:isbn:9781419722301", + "urn:isbn:1419722301", + "urn:oclc:938991316", + "urn:lccn:2015955674", + "urn:identifier:(OCoLC)938991316", + "urn:identifier:(OCoLC)943677509" ], "numCheckinCardItems": [ 0 @@ -11375,7 +11547,7 @@ } ], "dateString": [ - "1998" + "2016" ], "mediaType": [ { @@ -11384,15 +11556,16 @@ } ], "subjectLiteral": [ - "African Americans -- New York (State) -- New York -- Fiction.", - "Harlem (New York, N.Y.) -- Fiction." + "Alcoholic beverages -- United States -- History.", + "Drinking of alcoholic beverages -- United States -- History.", + "Cocktails." ], "titleDisplay": [ - "A toast before dying : a Mali Anderson Mystery / Grace F. Edwards." + "Colonial spirits : a toast to our drunken history / by Steven Grasse." ], - "uri": "b13555237", + "uri": "b21091000", "lccClassification": [ - "PS3555.D99 T63 1998" + "HV5292 .G67 2016" ], "placeOfPublication": [ "New York" @@ -11404,104 +11577,62 @@ } ], "dimensions": [ - "25 cm." + "21 cm" ], "idIsbn_clean": [ - "0385485247" + "9781419722301", + "1419722301" ] }, "sort": [ - 405.9829, - "b13555237" + 407.14117, + "b21091000" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { "hits": { "total": { - "value": 2, + "value": 1, "relation": "eq" }, "max_score": null, "hits": [ { "_index": "resources-2024-10-22", - "_id": "b13555237", + "_id": "b21091000", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ - { - "id": "loc:scff2", - "label": "Schomburg Center - Research & Reference" - } - ], - "holdingLocation_packed": [ - "loc:scff2||Schomburg Center - Research & Reference" - ], - "idBarcode": [ - "33433059013205" - ], - "identifier": [ - "urn:shelfmark:Sc E 98-933", - "urn:barcode:33433059013205" - ], - "identifierV2": [ - { - "value": "Sc E 98-933", - "type": "bf:ShelfMark" - }, - { - "value": "33433059013205", - "type": "bf:Barcode" - } - ], "owner": [ { - "id": "orgs:1114", - "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + "id": "orgs:1101", + "label": "General Research Division" } ], - "owner_packed": [ - "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + "identifier": [ + "urn:shelfmark:JFD 16-5390", + "urn:barcode:33433120132745" ], "physicalLocation": [ - "Sc E 98-933" - ], - "requestable": [ - true + "JFD 16-5390" ], - "shelfMark": [ - "Sc E 98-933" + "shelfMark_sort": "aJFD 16-005390", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" ], - "shelfMark_sort": "aSc E 98-000933", - "status": [ + "accessMessage": [ { - "id": "status:a", - "label": "Available" + "id": "accessMessage:1", + "label": "Use in library" } ], "status_packed": [ @@ -11510,100 +11641,53 @@ "type": [ "bf:Item" ], - "uri": "i10699418" - }, - "sort": [ - null - ] - }, - { - "_index": "resources-2024-10-22", - "_id": "b13555237", - "_nested": { - "field": "items", - "offset": 1 - }, - "_score": null, - "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "shelfMark": [ + "JFD 16-5390" ], - "catalogItemType": [ + "uri": "i34513730", + "identifierV2": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" - } - ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "type": "bf:ShelfMark", + "value": "JFD 16-5390" + }, { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "type": "bf:Barcode", + "value": "33433120132745" } ], "holdingLocation_packed": [ "loc:mal82||Schwarzman Building - Main Reading Room 315" ], "idBarcode": [ - "33433069269284" - ], - "identifier": [ - "urn:shelfmark:JFE 98-5504", - "urn:barcode:33433069269284" - ], - "identifierV2": [ - { - "value": "JFE 98-5504", - "type": "bf:ShelfMark" - }, - { - "value": "33433069269284", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } + "33433120132745" ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFE 98-5504" - ], "requestable": [ true ], - "shelfMark": [ - "JFE 98-5504" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFE 98-005504", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i10699417" + ] }, "sort": [ null @@ -11616,41 +11700,28 @@ }, { "_index": "resources-2024-10-22", - "_id": "b21091000", - "_score": 405.6831, + "_id": "b13555237", + "_score": 406.09213, "_source": { "extent": [ - "vii, 216 pages : color illustrations ;" - ], - "note": [ - { - "noteType": "Note", - "label": "\"Being: a revolutionary drinking guide to brewing and batching, mixing and serving, imbibing and jibing, fighting and freedom in the ruins of the ancient civilization known as America.\"", - "type": "bf:Note" - }, - { - "noteType": "Bibliography", - "label": "Includes bibliographical references (pages 203-204) and index.", - "type": "bf:Note" - } + "257 p. ;" ], "nyplSource": [ "sierra-nypl" ], "subjectLiteral_exploded": [ - "Alcoholic beverages", - "Alcoholic beverages -- United States", - "Alcoholic beverages -- United States -- History", - "Drinking of alcoholic beverages", - "Drinking of alcoholic beverages -- United States", - "Drinking of alcoholic beverages -- United States -- History", - "Cocktails" + "African Americans", + "African Americans -- New York (State)", + "African Americans -- New York (State) -- New York", + "African Americans -- New York (State) -- New York -- Fiction", + "Harlem (New York, N.Y.)", + "Harlem (New York, N.Y.) -- Fiction" ], "numItemDatesParsed": [ 0 ], "publisherLiteral": [ - "Abrams Image" + "Doubleday" ], "language": [ { @@ -11659,92 +11730,85 @@ } ], "numItemsTotal": [ - 1 + 2 ], "createdYear": [ - 2016 + 1998 + ], + "buildingLocationIds": [ + "sc", + "ma" ], "title": [ - "Colonial spirits : a toast to our drunken history" + "A toast before dying : a Mali Anderson Mystery" ], "type": [ "nypl:Item" ], "shelfMark": [ - "JFD 16-5390" + "JFE 98-5504" ], "numItemVolumesParsed": [ 0 ], "createdString": [ - "2016" + "1998" ], "creatorLiteral": [ - "Grasse, Steven" + "Edwards, Grace F. (Grace Frederica)" ], "idLccn": [ - "2015955674" + "97047429" ], "numElectronicResources": [ 0 ], "dateStartYear": [ - 2016 + 1998 ], "idOclc": [ - "938991316" + "38081631" ], "identifierV2": [ { "type": "bf:ShelfMark", - "value": "JFD 16-5390" + "value": "JFE 98-5504" }, { "type": "nypl:Bnumber", - "value": "21091000" - }, - { - "type": "bf:Isbn", - "value": "9781419722301" + "value": "13555237" }, { "type": "bf:Isbn", - "value": "1419722301" + "value": "0385485247" }, { "type": "nypl:Oclc", - "value": "938991316" + "value": "38081631" }, { "type": "bf:Lccn", - "value": "2015955674" - }, - { - "type": "bf:Identifier", - "value": "(OCoLC)938991316" + "value": "97047429" }, { "type": "bf:Identifier", - "value": "(OCoLC)943677509" + "value": "(WaOLN)nyp3530217" } ], - "updatedAt": 1711243086460, + "updatedAt": 1711384147469, "publicationStatement": [ - "New York : Abrams Image, 2016." + "New York : Doubleday, 1998." ], "idIsbn": [ - "9781419722301", - "1419722301" + "0385485247" ], "identifier": [ - "urn:shelfmark:JFD 16-5390", - "urn:bnum:21091000", - "urn:isbn:9781419722301", - "urn:isbn:1419722301", - "urn:oclc:938991316", - "urn:lccn:2015955674", - "urn:identifier:(OCoLC)938991316", - "urn:identifier:(OCoLC)943677509" + "urn:shelfmark:JFE 98-5504", + "urn:bnum:13555237", + "urn:isbn:0385485247", + "urn:oclc:38081631", + "urn:lccn:97047429", + "urn:identifier:(WaOLN)nyp3530217" ], "numCheckinCardItems": [ 0 @@ -11762,7 +11826,7 @@ } ], "dateString": [ - "2016" + "1998" ], "mediaType": [ { @@ -11771,16 +11835,15 @@ } ], "subjectLiteral": [ - "Alcoholic beverages -- United States -- History.", - "Drinking of alcoholic beverages -- United States -- History.", - "Cocktails." + "African Americans -- New York (State) -- New York -- Fiction.", + "Harlem (New York, N.Y.) -- Fiction." ], "titleDisplay": [ - "Colonial spirits : a toast to our drunken history / by Steven Grasse." + "A toast before dying : a Mali Anderson Mystery / Grace F. Edwards." ], - "uri": "b21091000", + "uri": "b13555237", "lccClassification": [ - "HV5292 .G67 2016" + "PS3555.D99 T63 1998" ], "placeOfPublication": [ "New York" @@ -11792,43 +11855,94 @@ } ], "dimensions": [ - "21 cm" + "25 cm." ], "idIsbn_clean": [ - "9781419722301", - "1419722301" + "0385485247" ] }, "sort": [ - 405.6831, - "b21091000" + 406.09213, + "b13555237" + ], + "matched_queries": [ + "on-site" ], "inner_hits": { "items": { "hits": { "total": { - "value": 1, + "value": 2, "relation": "eq" }, "max_score": null, "hits": [ { "_index": "resources-2024-10-22", - "_id": "b21091000", + "_id": "b13555237", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" + ], + "owner": [ + { + "id": "orgs:1114", + "label": "Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + } + ], + "identifier": [ + "urn:shelfmark:Sc E 98-933", + "urn:barcode:33433059013205" + ], + "physicalLocation": [ + "Sc E 98-933" + ], + "shelfMark_sort": "aSc E 98-000933", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], "accessMessage": [ { "id": "accessMessage:1", "label": "Use in library" } ], - "accessMessage_packed": [ - "accessMessage:1||Use in library" + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "Sc E 98-933" + ], + "uri": "i10699418", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "Sc E 98-933" + }, + { + "type": "bf:Barcode", + "value": "33433059013205" + } + ], + "holdingLocation_packed": [ + "loc:scff2||Schomburg Center - Research & Reference" + ], + "idBarcode": [ + "33433059013205" + ], + "owner_packed": [ + "orgs:1114||Schomburg Center for Research in Black Culture, Jean Blackwell Hutson Research and Reference Division" + ], + "requestable": [ + true ], "catalogItemType": [ { @@ -11836,70 +11950,114 @@ "label": "book, limited circ, MaRLI" } ], - "catalogItemType_packed": [ - "catalogItemType:55||book, limited circ, MaRLI" - ], "formatLiteral": [ "Text" ], "holdingLocation": [ { - "id": "loc:mal82", - "label": "Schwarzman Building - Main Reading Room 315" + "id": "loc:scff2", + "label": "Schomburg Center - Research & Reference" } ], - "holdingLocation_packed": [ - "loc:mal82||Schwarzman Building - Main Reading Room 315" + "status": [ + { + "id": "status:a", + "label": "Available" + } + ] + }, + "sort": [ + null + ] + }, + { + "_index": "resources-2024-10-22", + "_id": "b13555237", + "_nested": { + "field": "items", + "offset": 1 + }, + "_score": null, + "_source": { + "accessMessage_packed": [ + "accessMessage:1||Use in library" ], - "idBarcode": [ - "33433120132745" + "owner": [ + { + "id": "orgs:1101", + "label": "General Research Division" + } ], "identifier": [ - "urn:shelfmark:JFD 16-5390", - "urn:barcode:33433120132745" + "urn:shelfmark:JFE 98-5504", + "urn:barcode:33433069269284" ], - "identifierV2": [ - { - "value": "JFD 16-5390", - "type": "bf:ShelfMark" - }, + "physicalLocation": [ + "JFE 98-5504" + ], + "shelfMark_sort": "aJFE 98-005504", + "catalogItemType_packed": [ + "catalogItemType:55||book, limited circ, MaRLI" + ], + "accessMessage": [ { - "value": "33433120132745", - "type": "bf:Barcode" + "id": "accessMessage:1", + "label": "Use in library" } ], - "owner": [ + "status_packed": [ + "status:a||Available" + ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "JFE 98-5504" + ], + "uri": "i10699417", + "identifierV2": [ + { + "type": "bf:ShelfMark", + "value": "JFE 98-5504" + }, { - "id": "orgs:1101", - "label": "General Research Division" + "type": "bf:Barcode", + "value": "33433069269284" } ], + "holdingLocation_packed": [ + "loc:mal82||Schwarzman Building - Main Reading Room 315" + ], + "idBarcode": [ + "33433069269284" + ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "JFD 16-5390" - ], "requestable": [ true ], - "shelfMark": [ - "JFD 16-5390" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mal82", + "label": "Schwarzman Building - Main Reading Room 315" + } ], - "shelfMark_sort": "aJFD 16-005390", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i34513730" + ] }, "sort": [ null @@ -11913,7 +12071,7 @@ { "_index": "resources-2024-10-22", "_id": "b23014874", - "_score": 403.32635, + "_score": 403.70267, "_source": { "extent": [ "134 pages : color illustrations ;" @@ -11951,6 +12109,9 @@ "createdYear": [ 2021 ], + "buildingLocationIds": [ + "rc" + ], "title": [ "Ricordi di una stanza che scompare = Mälestused kaduvast toast" ], @@ -12074,7 +12235,7 @@ ] }, "sort": [ - 403.32635, + 403.70267, "b23014874" ], "inner_hits": { @@ -12095,88 +12256,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:55", - "label": "book, limited circ, MaRLI" + "id": "orgs:1000", + "label": "Stephen A. Schwarzman Building" } ], + "identifier": [ + "urn:shelfmark:ReCAP 23-5430", + "urn:barcode:33433136240300" + ], + "physicalLocation": [ + "ReCAP 23-5430" + ], + "shelfMark_sort": "aReCAP 23-005430", "catalogItemType_packed": [ "catalogItemType:55||book, limited circ, MaRLI" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rc2ma", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rc2ma||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433136240300" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:ReCAP 23-5430", - "urn:barcode:33433136240300" + "shelfMark": [ + "ReCAP 23-5430" ], + "uri": "i40335927", "identifierV2": [ { - "value": "ReCAP 23-5430", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "ReCAP 23-5430" }, { - "value": "33433136240300", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433136240300" } ], - "owner": [ - { - "id": "orgs:1000", - "label": "Stephen A. Schwarzman Building" - } + "holdingLocation_packed": [ + "loc:rc2ma||Offsite" + ], + "idBarcode": [ + "33433136240300" ], "owner_packed": [ "orgs:1000||Stephen A. Schwarzman Building" ], - "physicalLocation": [ - "ReCAP 23-5430" - ], - "recapCustomerCode": [ - "NA" - ], "requestable": [ true ], - "shelfMark": [ - "ReCAP 23-5430" + "catalogItemType": [ + { + "id": "catalogItemType:55", + "label": "book, limited circ, MaRLI" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rc2ma", + "label": "Offsite" + } + ], + "recapCustomerCode": [ + "NA" ], - "shelfMark_sort": "aReCAP 23-005430", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i40335927" + ] }, "sort": [ null @@ -12190,7 +12351,7 @@ { "_index": "resources-2024-10-22", "_id": "cb2127025", - "_score": 402.21503, + "_score": 401.8122, "_source": { "extent": [ "200 pages : illustrations, map ;" @@ -12389,7 +12550,7 @@ ] }, "sort": [ - 402.21503, + 401.8122, "cb2127025" ], "inner_hits": { @@ -12489,7 +12650,7 @@ { "_index": "resources-2024-10-22", "_id": "pb9917945683506421", - "_score": 402.21503, + "_score": 401.8122, "_source": { "extent": [ "200 p. : ill., map ;" @@ -12535,12 +12696,15 @@ "createdYear": [ 1998 ], - "title": [ - "Toast of the town : the life and times of Sunnie Wilson" + "buildingLocationIds": [ + "rc" ], "type": [ "nypl:Item" ], + "title": [ + "Toast of the town : the life and times of Sunnie Wilson" + ], "numItemVolumesParsed": [ 0 ], @@ -12553,22 +12717,18 @@ "idLccn": [ "97025475" ], - "numElectronicResources": [ - 0 - ], "seriesStatement": [ "Great Lakes books" ], + "numElectronicResources": [ + 0 + ], "contributorLiteral": [ "Cohassey, John, 1961-" ], "dateStartYear": [ 1998 ], - "idOclc": [ - "ocm37260938", - "SCSB-363077" - ], "identifierV2": [ { "type": "nypl:Bnumber", @@ -12607,14 +12767,15 @@ "value": "(NjP)Voyager1794568" } ], + "idOclc": [ + "ocm37260938", + "SCSB-363077" + ], "popularity": 0, "updatedAt": 1722603731856, "publicationStatement": [ "Detroit : Wayne State University Press, c1998." ], - "idIsbn": [ - "0814326951 (alk. paper)" - ], "identifier": [ "urn:bnum:9917945683506421", "urn:isbn:0814326951 (alk. paper)", @@ -12626,6 +12787,9 @@ "urn:identifier:(OCoLC)ocm37260938", "urn:identifier:(NjP)Voyager1794568" ], + "idIsbn": [ + "0814326951 (alk. paper)" + ], "numCheckinCardItems": [ 0 ], @@ -12681,7 +12845,7 @@ ] }, "sort": [ - 402.21503, + 401.8122, "pb9917945683506421" ], "inner_hits": { @@ -12702,79 +12866,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0003", + "label": "Princeton University Library" } ], + "identifier": [ + "urn:shelfmark:TX910.5.W58 A3 1998", + "urn:barcode:32101041878081" + ], + "physicalLocation": [ + "TX910.5.W58 A3 1998" + ], + "shelfMark_sort": "aTX910.5.W58 A3 001998", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } ], - "idBarcode": [ - "32101041878081" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:TX910.5.W58 A3 1998", - "urn:barcode:32101041878081" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "TX910.5.W58 A3 1998" ], + "uri": "pi23624126520006421", "identifierV2": [ { - "value": "TX910.5.W58 A3 1998", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "TX910.5.W58 A3 1998" }, { - "value": "32101041878081", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "32101041878081" } ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } + "idBarcode": [ + "32101041878081" ], "owner_packed": [ "orgs:0003||Princeton University Library" ], - "physicalLocation": [ - "TX910.5.W58 A3 1998" - ], - "recapCustomerCode": [ - "PA" - ], "requestable": [ true ], - "shelfMark": [ - "TX910.5.W58 A3 1998" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "PA" ], - "shelfMark_sort": "aTX910.5.W58 A3 001998", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23624126520006421" + ] }, "sort": [ null @@ -12787,47 +12951,47 @@ }, { "_index": "resources-2024-10-22", - "_id": "pb9918050393506421", - "_score": 399.06558, + "_id": "pb99107169653506421", + "_score": 399.32507, "_source": { - "extent": [ - "257 p. ;" - ], - "nyplSource": [ - "recap-pul" - ], - "subjectLiteral_exploded": [ - "African Americans", - "African Americans -- New York (State)", - "African Americans -- New York (State) -- New York", - "African Americans -- New York (State) -- New York -- Fiction", - "Women detectives", - "Women detectives -- New York (State)", - "Women detectives -- New York (State) -- New York", - "Women detectives -- New York (State) -- New York -- Fiction", - "Harlem (New York, N.Y.)", - "Harlem (New York, N.Y.) -- Fiction" + "extent": [ + "321 pages : illustrations ;" + ], + "nyplSource": [ + "recap-pul" + ], + "subjectLiteral_exploded": [ + "Lee-Schmidt, Young-Nam, 1952-", + "Koreans", + "Koreans -- Germany", + "Koreans -- Germany -- Biography", + "Ethnic relations", + "Germany", + "Germany -- Ethnic relations" ], "numItemDatesParsed": [ 0 ], "publisherLiteral": [ - "Doubleday" + "Deutsche Literaturgesellschaft" ], "language": [ { - "id": "lang:eng", - "label": "English" + "id": "lang:ger", + "label": "German" } ], "numItemsTotal": [ 1 ], "createdYear": [ - 1998 + 2018 + ], + "buildingLocationIds": [ + "rc" ], "title": [ - "A toast before dying : a Mali Anderson mystery" + "Yongi, oder, Die Kunst, einen Toast zu essen" ], "type": [ "nypl:Item" @@ -12836,83 +13000,77 @@ 0 ], "createdString": [ - "1998" + "2018" ], "creatorLiteral": [ - "Edwards, Grace F. (Grace Frederica)" - ], - "idLccn": [ - "97047429" + "Lee-Schmidt, Young-Nam, 1952-" ], "numElectronicResources": [ 0 ], "dateStartYear": [ - 1998 + 2018 ], "idOclc": [ - "ocm38081631", - "SCSB-367175" + "on1040035278", + "SCSB-14040180" ], "identifierV2": [ { "type": "nypl:Bnumber", - "value": "9918050393506421" + "value": "99107169653506421" }, { "type": "bf:Isbn", - "value": "0385485247" + "value": "9783038311713" }, { - "type": "nypl:Oclc", - "value": "ocm38081631" + "type": "bf:Isbn", + "value": "3038311715" }, { "type": "nypl:Oclc", - "value": "SCSB-367175" - }, - { - "type": "bf:Lccn", - "value": "97047429" + "value": "on1040035278" }, { - "type": "bf:Identifier", - "value": "(CStRLIN)NJPG98-B47759" + "type": "nypl:Oclc", + "value": "SCSB-14040180" }, { "type": "bf:Identifier", - "value": "(NjP)1805039-princetondb" + "value": "(NjP)10716965-princetondb" }, { "type": "bf:Identifier", - "value": "(OCoLC)ocm38081631" + "value": "(OCoLC)on1040035278" }, { "type": "bf:Identifier", - "value": "(NjP)Voyager1805039" + "value": "(NjP)Voyager10716965" } ], "popularity": 0, - "updatedAt": 1723262152646, + "updatedAt": 1721955819266, "publicationStatement": [ - "New York : Doubleday, c1998." + "[Berlin] : Deutsche Literaturgesellschaft, [2018]" ], "genreForm": [ - "Fiction." + "Biographies.", + "Autobiographies." ], "idIsbn": [ - "0385485247" + "9783038311713", + "3038311715" ], "identifier": [ - "urn:bnum:9918050393506421", - "urn:isbn:0385485247", - "urn:oclc:ocm38081631", - "urn:oclc:SCSB-367175", - "urn:lccn:97047429", - "urn:identifier:(CStRLIN)NJPG98-B47759", - "urn:identifier:(NjP)1805039-princetondb", - "urn:identifier:(OCoLC)ocm38081631", - "urn:identifier:(NjP)Voyager1805039" + "urn:bnum:99107169653506421", + "urn:isbn:9783038311713", + "urn:isbn:3038311715", + "urn:oclc:on1040035278", + "urn:oclc:SCSB-14040180", + "urn:identifier:(NjP)10716965-princetondb", + "urn:identifier:(OCoLC)on1040035278", + "urn:identifier:(NjP)Voyager10716965" ], "numCheckinCardItems": [ 0 @@ -12930,7 +13088,7 @@ } ], "dateString": [ - "1998" + "2018" ], "mediaType": [ { @@ -12939,19 +13097,19 @@ } ], "subjectLiteral": [ - "African Americans -- New York (State) -- New York -- Fiction.", - "Women detectives -- New York (State) -- New York -- Fiction.", - "Harlem (New York, N.Y.) -- Fiction." + "Lee-Schmidt, Young-Nam, 1952-", + "Koreans -- Germany -- Biography.", + "Ethnic relations.", + "Koreans.", + "Germany -- Ethnic relations.", + "Germany." ], "titleDisplay": [ - "A toast before dying : a Mali Anderson mystery / Grace F. Edwards." - ], - "uri": "pb9918050393506421", - "lccClassification": [ - "PS3555.D99 T63 1998" + "Yongi, oder, Die Kunst, einen Toast zu essen / Young-Nam Lee-Schmidt." ], + "uri": "pb99107169653506421", "placeOfPublication": [ - "New York" + "[Berlin]" ], "issuance": [ { @@ -12960,15 +13118,16 @@ } ], "dimensions": [ - "25 cm." + "20 cm" ], "idIsbn_clean": [ - "0385485247" + "9783038311713", + "3038311715" ] }, "sort": [ - 399.06558, - "pb9918050393506421" + 399.32507, + "pb99107169653506421" ], "inner_hits": { "items": { @@ -12981,86 +13140,86 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "pb9918050393506421", + "_id": "pb99107169653506421", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0003", + "label": "Princeton University Library" } ], + "identifier": [ + "urn:shelfmark:X04003578", + "urn:barcode:32101106490491" + ], + "physicalLocation": [ + "X04003578" + ], + "shelfMark_sort": "aX04003578", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } ], - "idBarcode": [ - "32101057505552" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:PS3555.D99 T63 1998", - "urn:barcode:32101057505552" + "type": [ + "bf:Item" ], + "shelfMark": [ + "X04003578" + ], + "uri": "pi23655912680006421", "identifierV2": [ { - "value": "PS3555.D99 T63 1998", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "X04003578" }, { - "value": "32101057505552", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "32101106490491" } ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } + "idBarcode": [ + "32101106490491" ], "owner_packed": [ "orgs:0003||Princeton University Library" ], - "physicalLocation": [ - "PS3555.D99 T63 1998" - ], - "recapCustomerCode": [ - "PA" - ], "requestable": [ true ], - "shelfMark": [ - "PS3555.D99 T63 1998" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "PA" ], - "shelfMark_sort": "aPS3555.D99 T63 001998", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23752163320006421" + ] }, "sort": [ null @@ -13073,44 +13232,50 @@ }, { "_index": "resources-2024-10-22", - "_id": "pb99107169653506421", - "_score": 398.39047, + "_id": "pb9918050393506421", + "_score": 398.5898, "_source": { "extent": [ - "321 pages : illustrations ;" + "257 p. ;" ], "nyplSource": [ "recap-pul" ], "subjectLiteral_exploded": [ - "Lee-Schmidt, Young-Nam, 1952-", - "Koreans", - "Koreans -- Germany", - "Koreans -- Germany -- Biography", - "Ethnic relations", - "Germany", - "Germany -- Ethnic relations" + "African Americans", + "African Americans -- New York (State)", + "African Americans -- New York (State) -- New York", + "African Americans -- New York (State) -- New York -- Fiction", + "Women detectives", + "Women detectives -- New York (State)", + "Women detectives -- New York (State) -- New York", + "Women detectives -- New York (State) -- New York -- Fiction", + "Harlem (New York, N.Y.)", + "Harlem (New York, N.Y.) -- Fiction" ], "numItemDatesParsed": [ 0 ], "publisherLiteral": [ - "Deutsche Literaturgesellschaft" + "Doubleday" ], "language": [ { - "id": "lang:ger", - "label": "German" + "id": "lang:eng", + "label": "English" } ], "numItemsTotal": [ 1 ], "createdYear": [ - 2018 + 1998 + ], + "buildingLocationIds": [ + "rc" ], "title": [ - "Yongi, oder, Die Kunst, einen Toast zu essen" + "A toast before dying : a Mali Anderson mystery" ], "type": [ "nypl:Item" @@ -13119,77 +13284,83 @@ 0 ], "createdString": [ - "2018" + "1998" ], "creatorLiteral": [ - "Lee-Schmidt, Young-Nam, 1952-" + "Edwards, Grace F. (Grace Frederica)" + ], + "idLccn": [ + "97047429" ], "numElectronicResources": [ 0 ], "dateStartYear": [ - 2018 + 1998 ], "idOclc": [ - "on1040035278", - "SCSB-14040180" + "ocm38081631", + "SCSB-367175" ], "identifierV2": [ { "type": "nypl:Bnumber", - "value": "99107169653506421" + "value": "9918050393506421" }, { "type": "bf:Isbn", - "value": "9783038311713" + "value": "0385485247" }, { - "type": "bf:Isbn", - "value": "3038311715" + "type": "nypl:Oclc", + "value": "ocm38081631" + }, + { + "type": "nypl:Oclc", + "value": "SCSB-367175" }, { - "type": "nypl:Oclc", - "value": "on1040035278" + "type": "bf:Lccn", + "value": "97047429" }, { - "type": "nypl:Oclc", - "value": "SCSB-14040180" + "type": "bf:Identifier", + "value": "(CStRLIN)NJPG98-B47759" }, { "type": "bf:Identifier", - "value": "(NjP)10716965-princetondb" + "value": "(NjP)1805039-princetondb" }, { "type": "bf:Identifier", - "value": "(OCoLC)on1040035278" + "value": "(OCoLC)ocm38081631" }, { "type": "bf:Identifier", - "value": "(NjP)Voyager10716965" + "value": "(NjP)Voyager1805039" } ], "popularity": 0, - "updatedAt": 1721955819266, + "updatedAt": 1723262152646, "publicationStatement": [ - "[Berlin] : Deutsche Literaturgesellschaft, [2018]" + "New York : Doubleday, c1998." ], "genreForm": [ - "Biographies.", - "Autobiographies." + "Fiction." ], "idIsbn": [ - "9783038311713", - "3038311715" + "0385485247" ], "identifier": [ - "urn:bnum:99107169653506421", - "urn:isbn:9783038311713", - "urn:isbn:3038311715", - "urn:oclc:on1040035278", - "urn:oclc:SCSB-14040180", - "urn:identifier:(NjP)10716965-princetondb", - "urn:identifier:(OCoLC)on1040035278", - "urn:identifier:(NjP)Voyager10716965" + "urn:bnum:9918050393506421", + "urn:isbn:0385485247", + "urn:oclc:ocm38081631", + "urn:oclc:SCSB-367175", + "urn:lccn:97047429", + "urn:identifier:(CStRLIN)NJPG98-B47759", + "urn:identifier:(NjP)1805039-princetondb", + "urn:identifier:(OCoLC)ocm38081631", + "urn:identifier:(NjP)Voyager1805039" ], "numCheckinCardItems": [ 0 @@ -13207,7 +13378,7 @@ } ], "dateString": [ - "2018" + "1998" ], "mediaType": [ { @@ -13216,19 +13387,19 @@ } ], "subjectLiteral": [ - "Lee-Schmidt, Young-Nam, 1952-", - "Koreans -- Germany -- Biography.", - "Ethnic relations.", - "Koreans.", - "Germany -- Ethnic relations.", - "Germany." + "African Americans -- New York (State) -- New York -- Fiction.", + "Women detectives -- New York (State) -- New York -- Fiction.", + "Harlem (New York, N.Y.) -- Fiction." ], "titleDisplay": [ - "Yongi, oder, Die Kunst, einen Toast zu essen / Young-Nam Lee-Schmidt." + "A toast before dying : a Mali Anderson mystery / Grace F. Edwards." + ], + "uri": "pb9918050393506421", + "lccClassification": [ + "PS3555.D99 T63 1998" ], - "uri": "pb99107169653506421", "placeOfPublication": [ - "[Berlin]" + "New York" ], "issuance": [ { @@ -13237,16 +13408,15 @@ } ], "dimensions": [ - "20 cm" + "25 cm." ], "idIsbn_clean": [ - "9783038311713", - "3038311715" + "0385485247" ] }, "sort": [ - 398.39047, - "pb99107169653506421" + 398.5898, + "pb9918050393506421" ], "inner_hits": { "items": { @@ -13259,86 +13429,86 @@ "hits": [ { "_index": "resources-2024-10-22", - "_id": "pb99107169653506421", + "_id": "pb9918050393506421", "_nested": { "field": "items", "offset": 0 }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:1", - "label": "non-circ" + "id": "orgs:0003", + "label": "Princeton University Library" } ], + "identifier": [ + "urn:shelfmark:PS3555.D99 T63 1998", + "urn:barcode:32101057505552" + ], + "physicalLocation": [ + "PS3555.D99 T63 1998" + ], + "shelfMark_sort": "aPS3555.D99 T63 001998", "catalogItemType_packed": [ "catalogItemType:1||non-circ" ], - "formatLiteral": [ - "Text" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } ], - "idBarcode": [ - "32101106490491" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:X04003578", - "urn:barcode:32101106490491" + "type": [ + "bf:Item" + ], + "shelfMark": [ + "PS3555.D99 T63 1998" ], + "uri": "pi23752163320006421", "identifierV2": [ { - "value": "X04003578", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "PS3555.D99 T63 1998" }, { - "value": "32101106490491", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "32101057505552" } ], - "owner": [ - { - "id": "orgs:0003", - "label": "Princeton University Library" - } + "idBarcode": [ + "32101057505552" ], "owner_packed": [ "orgs:0003||Princeton University Library" ], - "physicalLocation": [ - "X04003578" - ], - "recapCustomerCode": [ - "PA" - ], "requestable": [ true ], - "shelfMark": [ - "X04003578" + "catalogItemType": [ + { + "id": "catalogItemType:1", + "label": "non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "recapCustomerCode": [ + "PA" ], - "shelfMark_sort": "aX04003578", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "pi23655912680006421" + ] }, "sort": [ null @@ -13352,7 +13522,7 @@ { "_index": "resources-2024-10-22", "_id": "b10861042", - "_score": 390.77145, + "_score": 391.19202, "_source": { "extent": [ "24 p. : ill., ports. ;" @@ -13398,24 +13568,24 @@ "numItemsTotal": [ 2 ], - "createdYear": [ - 1984 - ], "buildingLocationIds": [ "ma" ], + "createdYear": [ + 1984 + ], "title": [ "A toast to freedom New York celebrates Evacuation Day." ], "type": [ "nypl:Item" ], - "shelfMark": [ - "*ZI-437 no. 20" - ], "numItemVolumesParsed": [ 2 ], + "shelfMark": [ + "*ZI-437 no. 20" + ], "createdString": [ "1984" ], @@ -13450,8 +13620,8 @@ "value": "(WaOLN)nyp0868084" } ], - "popularity": 2, - "updatedAt": 1729525029643, + "popularity": 3, + "updatedAt": 1729950071074, "publicationStatement": [ "New York : Fraunces Tavern Museum, 1984." ], @@ -13507,7 +13677,7 @@ ] }, "sort": [ - 390.77145, + 391.19202, "b10861042" ], "matched_queries": [ @@ -13597,7 +13767,7 @@ "*ZI-437" ], "requestable": [ - false + true ], "shelfMark": [ "*ZI-437 r. 2" @@ -13605,23 +13775,23 @@ "shelfMark_sort": "a*ZI-437 r. 000002", "status": [ { - "id": "status:oh", - "label": "On Holdshelf" + "id": "status:a", + "label": "Available" } ], "status_packed": [ - "status:oh||On Holdshelf" + "status:a||Available" ], "type": [ "bf:Item" ], + "uri": "i31168756", "volumeRange": [ { "gte": 2, "lte": 2 } - ], - "uri": "i31168756" + ] }, "sort": [ " 2-" @@ -13720,13 +13890,13 @@ "type": [ "bf:Item" ], + "uri": "i24076491", "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i24076491" + ] }, "sort": [ " 1-" @@ -13740,7 +13910,7 @@ { "_index": "resources-2024-10-22", "_id": "b18106748", - "_score": 390.49448, + "_score": 390.6275, "_source": { "extent": [ "24 p. : ill. ;" @@ -13795,6 +13965,9 @@ "createdYear": [ 1984 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "A Toast to freedom : New York celebrates Evacuation Day." ], @@ -13901,9 +14074,12 @@ ] }, "sort": [ - 390.49448, + 390.6275, "b18106748" ], + "matched_queries": [ + "on-site" + ], "inner_hits": { "items": { "hits": { @@ -13922,79 +14098,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ - { - "id": "catalogItemType:2", - "label": "book non-circ" - } + "identifier": [ + "urn:shelfmark:NYGB N.Y. L M314.43 F73", + "urn:barcode:33433086370503" + ], + "m2CustomerCode": [ + "XA" + ], + "physicalLocation": [ + "NYGB N.Y. L M314.43 F73" ], + "shelfMark_sort": "aNYGB N.Y. L M314.43 F000073", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:mag92", - "label": "Schwarzman Building M2 - Milstein Division Room 121" + "id": "accessMessage:1", + "label": "Use in library" } ], - "holdingLocation_packed": [ - "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "33433086370503" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:NYGB N.Y. L M314.43 F73", - "urn:barcode:33433086370503" + "shelfMark": [ + "NYGB N.Y. L M314.43 F73" ], + "uri": "i24199542", "identifierV2": [ { - "value": "NYGB N.Y. L M314.43 F73", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "NYGB N.Y. L M314.43 F73" }, { - "value": "33433086370503", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "33433086370503" } ], - "m2CustomerCode": [ - "XA" + "holdingLocation_packed": [ + "loc:mag92||Schwarzman Building M2 - Milstein Division Room 121" ], - "physicalLocation": [ - "NYGB N.Y. L M314.43 F73" + "idBarcode": [ + "33433086370503" ], "requestable": [ true ], - "shelfMark": [ - "NYGB N.Y. L M314.43 F73" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mag92", + "label": "Schwarzman Building M2 - Milstein Division Room 121" + } ], - "shelfMark_sort": "aNYGB N.Y. L M314.43 F000073", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i24199542" + ] }, "sort": [ null diff --git a/test/fixtures/query-f9731419fa73fca9bfc8d8503f7eed89.json b/test/fixtures/query-f9731419fa73fca9bfc8d8503f7eed89.json index 7181ec95..5c357d35 100644 --- a/test/fixtures/query-f9731419fa73fca9bfc8d8503f7eed89.json +++ b/test/fixtures/query-f9731419fa73fca9bfc8d8503f7eed89.json @@ -1,5 +1,5 @@ { - "took": 6, + "took": 9, "timed_out": false, "_shards": { "total": 2, @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.631941, + "max_score": 15.712654, "hits": [ { "_index": "resources-2024-10-22", "_id": "b14332438", - "_score": 15.631941, + "_score": 15.712654, "_source": { "extent": [ "4 v." @@ -54,6 +54,9 @@ "createdYear": [ 1800 ], + "buildingLocationIds": [ + "ma" + ], "title": [ "The history of America ..." ], @@ -195,79 +198,79 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:4", - "label": "Restricted use" - } - ], "accessMessage_packed": [ "accessMessage:4||Restricted use" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1108", + "label": "Rare Book Division" } ], + "identifier": [ + "urn:shelfmark:*KF 1800 (Robertson, W. History of America)" + ], + "physicalLocation": [ + "*KF 1800 (Robertson, W. History of America)" + ], + "shelfMark_sort": "a*KF 1800 (Robertson, W. History of America)", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "formatLiteral": [ - "Text" - ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:marr2", - "label": "Schwarzman Building - Rare Book Collection Room 328" + "id": "accessMessage:4", + "label": "Restricted use" } ], - "holdingLocation_packed": [ - "loc:marr2||Schwarzman Building - Rare Book Collection Room 328" + "status_packed": [ + "status:a||Available" ], - "identifier": [ - "urn:shelfmark:*KF 1800 (Robertson, W. History of America)" + "aeonUrl": [ + "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Robertson%2C+William%2C+1721-1793.&CallNumber=*KF+1800+%28Robertson%2C+W.+History+of+America%29&Date=1800&Form=30&Genre=book+non-circ&ItemEdition=The+ninth+edition&ItemInfo1=Restricted+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db14332438&ItemISxN=i169831863&ItemPlace=London&ItemPublisher=A.+Strahan%2C+1800.&Location=Schwarzman+Rare+Book+Division&ReferenceNumber=b14332438x&Site=SASRB&Title=The+history+of+America+...&Transaction.CustomFields.Custom651=New+England+History+Colonial+period%2C+ca.+1600-1775." ], + "type": [ + "bf:Item" + ], + "shelfMark": [ + "*KF 1800 (Robertson, W. History of America)" + ], + "uri": "i16983186", "identifierV2": [ { - "value": "*KF 1800 (Robertson, W. History of America)", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "*KF 1800 (Robertson, W. History of America)" } ], - "owner": [ - { - "id": "orgs:1108", - "label": "Rare Book Division" - } + "holdingLocation_packed": [ + "loc:marr2||Schwarzman Building - Rare Book Collection Room 328" ], "owner_packed": [ "orgs:1108||Rare Book Division" ], - "physicalLocation": [ - "*KF 1800 (Robertson, W. History of America)" - ], "requestable": [ false ], - "shelfMark": [ - "*KF 1800 (Robertson, W. History of America)" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:marr2", + "label": "Schwarzman Building - Rare Book Collection Room 328" + } ], - "shelfMark_sort": "a*KF 1800 (Robertson, W. History of America)", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i16983186", - "aeonUrl": [ - "https://specialcollections.nypl.org/aeon/Aeon.dll?Action=10&Author=Robertson%2C+William%2C+1721-1793.&CallNumber=*KF+1800+%28Robertson%2C+W.+History+of+America%29&Date=1800&Form=30&Genre=book+non-circ&ItemEdition=The+ninth+edition&ItemInfo1=Restricted+use&ItemInfo3=https%3A%2F%2Fcatalog.nypl.org%2Frecord%3Db14332438&ItemISxN=i169831863&ItemPlace=London&ItemPublisher=A.+Strahan%2C+1800.&Location=Schwarzman+Rare+Book+Division&ReferenceNumber=b14332438x&Site=SASRB&Title=The+history+of+America+...&Transaction.CustomFields.Custom651=New+England+History+Colonial+period%2C+ca.+1600-1775." ] }, "sort": [ diff --git a/test/fixtures/query-f99eed9516b2010a23376a1c2e692196.json b/test/fixtures/query-f99eed9516b2010a23376a1c2e692196.json index eafc0079..ce04c4db 100644 --- a/test/fixtures/query-f99eed9516b2010a23376a1c2e692196.json +++ b/test/fixtures/query-f99eed9516b2010a23376a1c2e692196.json @@ -12,12 +12,12 @@ "value": 1, "relation": "eq" }, - "max_score": 15.120329, + "max_score": 15.226543, "hits": [ { "_index": "resources-2024-10-22", "_id": "b18932917", - "_score": 15.120329, + "_score": 15.226543, "_source": { "extent": [ "52 linear ft., 127 boxes" @@ -213,11 +213,11 @@ "value": "(OCoLC)715462601" } ], - "popularity": 949, + "popularity": 950, "dateEndYear": [ 1970 ], - "updatedAt": 1729786681798, + "updatedAt": 1731077764757, "identifier": [ "urn:shelfmark:Sc MG 162", "urn:bnum:18932917", @@ -8163,12 +8163,12 @@ "shelfMark_sort": "aSc MG 162 box 000042", "status": [ { - "id": "status:t", - "label": "In transit" + "id": "status:a", + "label": "Available" } ], "status_packed": [ - "status:t||In transit" + "status:a||Available" ], "type": [ "bf:Item" @@ -9395,11 +9395,11 @@ "buckets": [ { "key": "status:a||Available", - "doc_count": 120 + "doc_count": 121 }, { "key": "status:t||In transit", - "doc_count": 7 + "doc_count": 6 }, { "key": "status:co||Loaned", diff --git a/test/fixtures/query-fc51968906bb8570e190853920a1ff27.json b/test/fixtures/query-fc51968906bb8570e190853920a1ff27.json index 917506e1..151077ff 100644 --- a/test/fixtures/query-fc51968906bb8570e190853920a1ff27.json +++ b/test/fixtures/query-fc51968906bb8570e190853920a1ff27.json @@ -1,5 +1,5 @@ { - "took": 52, + "took": 60, "timed_out": false, "_shards": { "total": 2, @@ -17,7 +17,7 @@ { "_index": "resources-2024-10-22", "_id": "b22144813", - "_score": 93.78694, + "_score": 94.42421, "_source": { "extent": [ "1234, [1] pages, x leaves : illustrations ;", @@ -46,6 +46,10 @@ "createdYear": [ 201 ], + "buildingLocationIds": [ + "ma", + "rc" + ], "parallelTitle": [ "‏כותר שאינו באותיות לטינית = зглавие руссий." ], @@ -739,7 +743,7 @@ ] }, "sort": [ - 93.78694, + 94.42421, "b22144813" ], "inner_hits": { @@ -760,97 +764,97 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:1", - "label": "Use in library" - } - ], "accessMessage_packed": [ "accessMessage:1||Use in library" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:2", - "label": "book non-circ" + "id": "orgs:1101", + "label": "General Research Division" } ], + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", + "urn:barcode:3333333333" + ], + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" + ], + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "catalogItemType_packed": [ "catalogItemType:2||book non-circ" ], - "enumerationChronology": [ - "v.1" + "accessMessage": [ + { + "id": "accessMessage:1", + "label": "Use in library" + } + ], + "status_packed": [ + "status:k||Check with staff" ], "enumerationChronology_sort": [ " 1-" ], - "formatLiteral": [ - "Text" + "type": [ + "bf:Item" ], - "holdingLocation": [ + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + ], + "uri": "i37857771", + "identifierV2": [ { - "id": "loc:mall1", - "label": "Schwarzman Building - Main Reading Room 315 - Reference" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + }, + { + "type": "bf:Barcode", + "value": "3333333333" } ], "holdingLocation_packed": [ "loc:mall1||Schwarzman Building - Main Reading Room 315 - Reference" ], + "enumerationChronology": [ + "v.1" + ], "idBarcode": [ "3333333333" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "urn:barcode:3333333333" - ], - "identifierV2": [ - { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1", - "type": "bf:ShelfMark" - }, - { - "value": "3333333333", - "type": "bf:Barcode" - } - ], - "owner": [ - { - "id": "orgs:1101", - "label": "General Research Division" - } - ], "owner_packed": [ "orgs:1101||General Research Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ false ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.1" + "catalogItemType": [ + { + "id": "catalogItemType:2", + "label": "book non-circ" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:mall1", + "label": "Schwarzman Building - Main Reading Room 315 - Reference" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER v.000001", "status": [ { "id": "status:k", "label": "Check with staff" } ], - "status_packed": [ - "status:k||Check with staff" - ], - "type": [ - "bf:Item" - ], "volumeRange": [ { "gte": 1, "lte": 1 } - ], - "uri": "i37857771" + ] }, "sort": [ " 1-" @@ -865,88 +869,88 @@ }, "_score": null, "_source": { - "accessMessage": [ - { - "id": "accessMessage:2", - "label": "Request in advance" - } - ], "accessMessage_packed": [ "accessMessage:2||Request in advance" ], - "catalogItemType": [ + "owner": [ { - "id": "catalogItemType:3", - "label": "serial" + "id": "orgs:1103", + "label": "Dorot Jewish Division" } ], - "catalogItemType_packed": [ - "catalogItemType:3||serial" + "identifier": [ + "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "urn:barcode:44455533322211" ], - "enumerationChronology": [ - "nothing" + "physicalLocation": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" ], - "formatLiteral": [ - "Text" + "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", + "catalogItemType_packed": [ + "catalogItemType:3||serial" ], - "holdingLocation": [ + "accessMessage": [ { - "id": "loc:rcmf2", - "label": "Offsite" + "id": "accessMessage:2", + "label": "Request in advance" } ], - "holdingLocation_packed": [ - "loc:rcmf2||Offsite" + "status_packed": [ + "status:a||Available" ], - "idBarcode": [ - "44455533322211" + "type": [ + "bf:Item" ], - "identifier": [ - "urn:shelfmark:J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "urn:barcode:44455533322211" + "shelfMark": [ + "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" ], + "uri": "i37857772", "identifierV2": [ { - "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", - "type": "bf:ShelfMark" + "type": "bf:ShelfMark", + "value": "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" }, { - "value": "44455533322211", - "type": "bf:Barcode" + "type": "bf:Barcode", + "value": "44455533322211" } ], - "owner": [ - { - "id": "orgs:1103", - "label": "Dorot Jewish Division" - } + "holdingLocation_packed": [ + "loc:rcmf2||Offsite" + ], + "enumerationChronology": [ + "nothing" + ], + "idBarcode": [ + "44455533322211" ], "owner_packed": [ "orgs:1103||Dorot Jewish Division" ], - "physicalLocation": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER" - ], "requestable": [ true ], - "shelfMark": [ - "J-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing" + "catalogItemType": [ + { + "id": "catalogItemType:3", + "label": "serial" + } + ], + "formatLiteral": [ + "Text" + ], + "holdingLocation": [ + { + "id": "loc:rcmf2", + "label": "Offsite" + } ], - "shelfMark_sort": "aJ-LANG FORMAT Branch -- 091 (C-Tag Branch call) Biographee CUTTER nothing", "status": [ { "id": "status:a", "label": "Available" } - ], - "status_packed": [ - "status:a||Available" - ], - "type": [ - "bf:Item" - ], - "uri": "i37857772" + ] }, "sort": [ null diff --git a/test/fixtures/scsb-by-barcode-946d9f4d4b24bdd7fd2eac8d9112a35c.json b/test/fixtures/scsb-by-barcode-1a584abde690d60c86bf309f9f1f111e.json similarity index 98% rename from test/fixtures/scsb-by-barcode-946d9f4d4b24bdd7fd2eac8d9112a35c.json rename to test/fixtures/scsb-by-barcode-1a584abde690d60c86bf309f9f1f111e.json index 415be5b9..554c7abd 100644 --- a/test/fixtures/scsb-by-barcode-946d9f4d4b24bdd7fd2eac8d9112a35c.json +++ b/test/fixtures/scsb-by-barcode-1a584abde690d60c86bf309f9f1f111e.json @@ -313,10 +313,5 @@ "itemBarcode": "CU54669421", "itemAvailabilityStatus": "Available", "errorMessage": null - }, - { - "itemBarcode": "32101101205050", - "itemAvailabilityStatus": "Available", - "errorMessage": null } ] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-cb1c07d0e10542f30956baf7621c4248.json b/test/fixtures/scsb-by-barcode-6c4db674184b0916a2df190c582f9b96.json similarity index 99% rename from test/fixtures/scsb-by-barcode-cb1c07d0e10542f30956baf7621c4248.json rename to test/fixtures/scsb-by-barcode-6c4db674184b0916a2df190c582f9b96.json index 6a9aa1b6..c154f683 100644 --- a/test/fixtures/scsb-by-barcode-cb1c07d0e10542f30956baf7621c4248.json +++ b/test/fixtures/scsb-by-barcode-6c4db674184b0916a2df190c582f9b96.json @@ -6,7 +6,7 @@ }, { "itemBarcode": "32101095377683", - "itemAvailabilityStatus": "Available", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { @@ -85,12 +85,12 @@ "errorMessage": null }, { - "itemBarcode": "33433089279883", + "itemBarcode": "33433087759761", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433087759761", + "itemBarcode": "33433089279883", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -140,13 +140,13 @@ "errorMessage": null }, { - "itemBarcode": "33433083720965", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433073344230", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433073344230", - "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "itemBarcode": "33433083720965", + "itemAvailabilityStatus": "Available", "errorMessage": null }, { @@ -155,17 +155,17 @@ "errorMessage": null }, { - "itemBarcode": "32044105914865", + "itemBarcode": "HNGRR7", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "HNGRR7", + "itemBarcode": "HXL53Z", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "HXL53Z", + "itemBarcode": "32044105914865", "itemAvailabilityStatus": "Available", "errorMessage": null }, @@ -195,17 +195,17 @@ "errorMessage": null }, { - "itemBarcode": "33433059013205", + "itemBarcode": "33433120132745", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433069269284", + "itemBarcode": "33433059013205", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433120132745", + "itemBarcode": "33433069269284", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -225,12 +225,12 @@ "errorMessage": null }, { - "itemBarcode": "32101057505552", + "itemBarcode": "32101106490491", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "32101106490491", + "itemBarcode": "32101057505552", "itemAvailabilityStatus": "Available", "errorMessage": null }, diff --git a/test/fixtures/scsb-by-barcode-b2327b939746d291b8840e099b490d73.json b/test/fixtures/scsb-by-barcode-73ff4f4b8c540107611f1a795550a264.json similarity index 98% rename from test/fixtures/scsb-by-barcode-b2327b939746d291b8840e099b490d73.json rename to test/fixtures/scsb-by-barcode-73ff4f4b8c540107611f1a795550a264.json index 20f9caab..4aaf39c7 100644 --- a/test/fixtures/scsb-by-barcode-b2327b939746d291b8840e099b490d73.json +++ b/test/fixtures/scsb-by-barcode-73ff4f4b8c540107611f1a795550a264.json @@ -313,10 +313,5 @@ "itemBarcode": "CU54669421", "itemAvailabilityStatus": "Available", "errorMessage": null - }, - { - "itemBarcode": "32101101205050", - "itemAvailabilityStatus": "Available", - "errorMessage": null } ] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-e7832599985a8c1b61df0eca52790cef.json b/test/fixtures/scsb-by-barcode-868497f8b4d647a19fab8080dde41ac1.json similarity index 98% rename from test/fixtures/scsb-by-barcode-e7832599985a8c1b61df0eca52790cef.json rename to test/fixtures/scsb-by-barcode-868497f8b4d647a19fab8080dde41ac1.json index 7a4e30e1..320f3a2a 100644 --- a/test/fixtures/scsb-by-barcode-e7832599985a8c1b61df0eca52790cef.json +++ b/test/fixtures/scsb-by-barcode-868497f8b4d647a19fab8080dde41ac1.json @@ -313,10 +313,5 @@ "itemBarcode": "32101101205050", "itemAvailabilityStatus": "Available", "errorMessage": null - }, - { - "itemBarcode": "32101105449811", - "itemAvailabilityStatus": "Available", - "errorMessage": null } ] \ No newline at end of file diff --git a/test/fixtures/scsb-by-barcode-c6766f3202b4a0a0146d24ec3e66cd58.json b/test/fixtures/scsb-by-barcode-a325582943385bede741246925b1ebda.json similarity index 92% rename from test/fixtures/scsb-by-barcode-c6766f3202b4a0a0146d24ec3e66cd58.json rename to test/fixtures/scsb-by-barcode-a325582943385bede741246925b1ebda.json index a9041509..0be39a17 100644 --- a/test/fixtures/scsb-by-barcode-c6766f3202b4a0a0146d24ec3e66cd58.json +++ b/test/fixtures/scsb-by-barcode-a325582943385bede741246925b1ebda.json @@ -21,12 +21,12 @@ }, { "itemBarcode": "32101095377683", - "itemAvailabilityStatus": "Available", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { "itemBarcode": "HNAASE", - "itemAvailabilityStatus": "Available", + "itemAvailabilityStatus": "Not Available", "errorMessage": null }, { @@ -65,12 +65,12 @@ "errorMessage": null }, { - "itemBarcode": "33433040618625", + "itemBarcode": "33433035294234", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433035294234", + "itemBarcode": "33433040618625", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, @@ -109,18 +109,13 @@ "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, - { - "itemBarcode": "33433112057363", - "itemAvailabilityStatus": "Available", - "errorMessage": null - }, { "itemBarcode": "33433047232982", "itemAvailabilityStatus": "Available", "errorMessage": null }, { - "itemBarcode": "33333059683314", + "itemBarcode": "33433112057363", "itemAvailabilityStatus": "Available", "errorMessage": null }, @@ -134,6 +129,11 @@ "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, + { + "itemBarcode": "33333059683314", + "itemAvailabilityStatus": "Available", + "errorMessage": null + }, { "itemBarcode": "CU27972887", "itemAvailabilityStatus": "Available", @@ -165,18 +165,28 @@ "errorMessage": null }, { - "itemBarcode": "33433021459502", - "itemAvailabilityStatus": "Available", + "itemBarcode": "33433038923789", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433038923789", + "itemBarcode": "33433114070448", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null }, { - "itemBarcode": "33433114070448", + "itemBarcode": "33433129000943", "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", "errorMessage": null + }, + { + "itemBarcode": "33433035395361", + "itemAvailabilityStatus": "Item Barcode doesn't exist in SCSB database.", + "errorMessage": null + }, + { + "itemBarcode": "33433021459502", + "itemAvailabilityStatus": "Available", + "errorMessage": null } ] \ No newline at end of file diff --git a/test/resources.test.js b/test/resources.test.js index d794480c..91a92d61 100644 --- a/test/resources.test.js +++ b/test/resources.test.js @@ -94,21 +94,18 @@ describe('Resources query', function () { it('accepts advanced search parameters', function () { const params = resourcesPrivMethods.parseSearchParams({ contributor: 'Poe', title: 'Raven', subject: 'ravens' }) const body = resourcesPrivMethods.buildElasticQuery(params) - expect(body).to.be.a('object') - expect(body.bool).to.be.a('object') - expect(body.bool.must).to.be.a('array') - expect(body.bool.must[0].multi_match).to.be.a('object') - expect(body.bool.must[0].multi_match.fields).to.be.a('array') - expect(body.bool.must[0].multi_match.fields[0]).to.equal('title^5') - expect(body.bool.must[0].multi_match.query).to.equal('Raven') - expect(body.bool.must[1].multi_match).to.be.a('object') - expect(body.bool.must[1].multi_match.fields).to.be.a('array') - expect(body.bool.must[1].multi_match.fields[0]).to.equal('subjectLiteral^2') - expect(body.bool.must[1].multi_match.query).to.equal('ravens') - expect(body.bool.must[2].multi_match).to.be.a('object') - expect(body.bool.must[2].multi_match.fields).to.be.a('array') - expect(body.bool.must[2].multi_match.fields[0]).to.equal('creatorLiteral^4') - expect(body.bool.must[2].multi_match.query).to.equal('Poe') + + expect(body).to.nested.include({ + // Expect a title match on Raven: + 'bool.must[0].bool.must[0].multi_match.fields[0]': 'title^5', + 'bool.must[0].bool.must[0].multi_match.query': 'Raven', + // Expect a subject match on 'ravens' + 'bool.must[1].bool.must[0].multi_match.fields[0]': 'subjectLiteral^2', + 'bool.must[1].bool.must[0].multi_match.query': 'ravens', + // Expect a creator match on Poe: + 'bool.must[2].bool.must[0].multi_match.fields[0]': 'creatorLiteral^4', + 'bool.must[2].bool.must[0].multi_match.query': 'Poe' + }) }) })